Commit 2a6ca4e38ecc81a40975bd3e021ccffd4a4a012e

Authored by Eric Fernandez
1 parent 9ac989f257
Exists in master

parámetros para modal factura

Showing 1 changed file with 5 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -120,7 +120,11 @@ angular.module('focaCrearCobranza') .controller('cobranzaController',
120 120 controller: 'focaModalFacturaController',
121 121 size: 'lg',
122 122 resolve: {
123   - cliente: function() {return $scope.cobranza.cliente.COD;}
  123 + parametrosFactura: {
  124 + cliente: $scope.cobranza.cliente.COD,
  125 + simbolo: $scope.cobranza.moneda.SIMBOLO,
  126 + cotizacion: $scope.cobranza.cotizacion.VENDEDOR
  127 + }
124 128 }
125 129 }
126 130 );