Commit 7319d2a9146b764c47bd121392abbee733e8599a
Exists in
master
Merge branch 'master' into 'master'
Master (pmarco) See merge request modulos-npm/foca-crear-nota-pedido!83
Showing
1 changed file
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();}}, |