Commit b994e4d5d2ead09aaa2e6cc84ab34cde56a99a95

Authored by Pablo Marco del Pont
1 parent d6d63dae0f
Exists in master

Saqué la lógica de seguimiento.

Showing 1 changed file with 2 additions and 4 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', '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++) {