Commit 4f377f9fd65420dbf12ef1fe28fb8f5de3b5d582

Authored by Eric Fernandez
Exists in master

Merge branch 'master' of https://debo.suite.repo/modulos-npm/foca-crear-nota-pedido

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++) {