Commit 875485e9b64421372509446855b276e8f1fbb7de

Authored by Jose Pinto
1 parent 46c0202387
Exists in master

paso idVendedor null para que la modal no se rompa

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
src/js/controller.js
... ... @@ -76,9 +76,8 @@ angular.module('focaCrearRemito') .controller('remitoController',
76 76 controller: 'focaModalNotaPedidoController',
77 77 size: 'lg',
78 78 resolve: {
79   - usadoPor: function() {
80   - return 'remito';
81   - }
  79 + usadoPor: function() { return 'remito'; },
  80 + idVendedor: function() { return null; }
82 81 }
83 82 }
84 83 );