Commit d7b1975fa1a2fee2ed77ab2e0a81fd238d48a5c5

Authored by Nicolás Guarnieri
1 parent 6724997b66
Exists in master and in 1 other branch develop

refactor seguimiento

Showing 1 changed file with 2 additions and 7 deletions   Show diff stats
src/js/controller.js
... ... @@ -119,14 +119,9 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl',
119 119 // actividad para su seguimiento.
120 120 //TODO: GUARDAR POSISIONAMIENTO AL EDITAR?
121 121 focaSeguimientoService.guardarPosicion(
122   - data.data.id,
123 122 'Nota de pedido',
124   - 'Nº: ' + $filter('comprobante')([
125   - $scope.puntoVenta,
126   - $scope.comprobante
127   - ]) + '<br/>' +
128   - 'Vendedor: ' + $scope.notaPedido.vendedor.NomVen + '<br/>' +
129   - 'Total: ' + $filter('currency')($scope.getTotal())
  123 + data.data.id,
  124 + ''
130 125 );
131 126 notaPedidoBusinessService.addArticulos($scope.articulosTabla,
132 127 data.data.id, $scope.notaPedido.cotizacion.VENDEDOR);