Commit 10006a4cbe213cd5530c769b9ff07d49100f9da7
Exists in
master
Merge branch 'master' into 'master'
Master (pmarco) See merge request modulos-npm/foca-crear-nota-pedido!80
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', 'focaSeguimientoService', 'notaPedidoBusinessService', | |
5 | - '$rootScope', | |
4 | + 'focaModalService', 'notaPedidoBusinessService', '$rootScope', | |
6 | 5 | function( |
7 | 6 | $scope, $uibModal, $location, $filter, crearNotaPedidoService, focaModalService, |
8 | - focaSeguimientoService, notaPedidoBusinessService, $rootScope | |
7 | + notaPedidoBusinessService, $rootScope | |
9 | 8 | ) { |
10 | 9 | $scope.botonera = [ |
11 | 10 | {texto: 'Vendedor', accion: function() {$scope.seleccionarVendedor();}}, |
... | ... | @@ -177,7 +176,6 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl', |
177 | 176 | function(data) { |
178 | 177 | notaPedidoBusinessService.addArticulos($scope.articulosTabla, |
179 | 178 | data.data.id, $scope.notaPedido.cotizacion.VENDEDOR); |
180 | - focaSeguimientoService.guardarPosicion('crear nota pedido', ''); | |
181 | 179 | var plazos = $scope.plazosPagos; |
182 | 180 | |
183 | 181 | for(var j = 0; j < plazos.length; j++) { |