Commit 0325ebb8eed5adee407586529118f142dfd90079
Exists in
master
Merge branch 'master' into 'develop'
Master(mpuebla) See merge request !78
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 | } |