Commit 11005825886e769ea449ec7ab733ed08126a57b2
1 parent
3932bc219c
Exists in
master
Arreglo de espacios
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/js/controller.js
| ... | ... | @@ -562,7 +562,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
| 562 | 562 | if ($scope.cobranza.id === undefined) { |
| 563 | 563 | var importe = 0; |
| 564 | 564 | $scope.cobranza.cobros.filter(function(a) { |
| 565 | - if(a.COM === 'Efectivo') { | |
| 565 | + if (a.COM === 'Efectivo') { | |
| 566 | 566 | importe = a.IMP; |
| 567 | 567 | } |
| 568 | 568 | }); |
| ... | ... | @@ -609,7 +609,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
| 609 | 609 | if ($scope.cobranza.id === undefined) { |
| 610 | 610 | var parametro = {}; |
| 611 | 611 | |
| 612 | - if(!detalle) { | |
| 612 | + if (!detalle) { | |
| 613 | 613 | parametro = { |
| 614 | 614 | importe: getSugerido(), |
| 615 | 615 | files: [] |
| ... | ... | @@ -654,7 +654,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
| 654 | 654 | }; |
| 655 | 655 | |
| 656 | 656 | $scope.seleccionarMoneda = function() { |
| 657 | - if ($scope.cobranza.id === undefined){ | |
| 657 | + if ($scope.cobranza.id === undefined) { | |
| 658 | 658 | var parametrosModal = { |
| 659 | 659 | titulo: 'Búsqueda de monedas', |
| 660 | 660 | query: '/moneda', |