Commit 7860c14c2134dbfdc9d4dbabde32a4557e0d76c9
Exists in
master
Merge remote-tracking branch 'upstream/develop'
Showing
2 changed files
Show diff stats
package.json
| ... | ... | @@ -4,6 +4,7 @@ |
| 4 | 4 | "description": "sistema de cobranzas a partir de facturas", |
| 5 | 5 | "main": "index.js", |
| 6 | 6 | "scripts": { |
| 7 | + "refresh": "gulp uglify && cp tmp/foca-crear-cobranza.js ../wrapper-demo/node_modules/foca-crear-cobranza/dist/foca-crear-cobranza.min.js", | |
| 7 | 8 | "test": "test.html", |
| 8 | 9 | "compile": "gulp uglify", |
| 9 | 10 | "gulp-pre-commit": "gulp pre-commit", |
src/js/controller.js
| ... | ... | @@ -350,7 +350,8 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
| 350 | 350 | templateUrl: 'modal-resumen-cuenta.html', |
| 351 | 351 | controller: 'focaModalResumenCuentaController', |
| 352 | 352 | resolve: { |
| 353 | - cliente: function() { return $scope.cobranza.cliente; } | |
| 353 | + cliente: function() { return $scope.cobranza.cliente; }, | |
| 354 | + idMoneda: function() { return $scope.cobranza.moneda.ID; } | |
| 354 | 355 | }, |
| 355 | 356 | size: 'lg' |
| 356 | 357 | } |