Commit 9f9fd44a42170977ed32eaaa0f9361d696aa8f38

Authored by Pablo Marco del Pont
1 parent 85c3717e22
Exists in master

fix dependencia.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/js/controller.js
1 1 angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl',
2 2 [
3 3 '$scope', '$uibModal', '$location', '$filter', 'crearNotaPedidoService',
4   - 'focaModalService', 'notaPedidoBusinessService', '$rootScope',
  4 + 'focaModalService', 'notaPedidoBusinessService', '$rootScope', 'focaSeguimientoService',
5 5 function(
6 6 $scope, $uibModal, $location, $filter, crearNotaPedidoService, focaModalService,
7   - notaPedidoBusinessService, $rootScope
  7 + notaPedidoBusinessService, $rootScope, focaSeguimientoService
8 8 ) {
9 9 $scope.botonera = [
10 10 {texto: 'Vendedor', accion: function() {$scope.seleccionarVendedor();}},