Commit f2a89ece9e2fcb8f4f4414e10bb9a798946ea104
1 parent
e466d72970
Exists in
master
Fuera signos monedas, sugerido en modal cheque
Showing
2 changed files
with
9 additions
and
4 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -280,7 +280,6 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
280 | 280 | |
281 | 281 | $scope.facturaTabla = cobranza.facturas; |
282 | 282 | $scope.cobrosTabla = cobranza.cobros; |
283 | - | |
284 | 283 | }); |
285 | 284 | }; |
286 | 285 | |
... | ... | @@ -349,7 +348,13 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
349 | 348 | ariaLabelledBy: 'Carga de cheques', |
350 | 349 | templateUrl: 'modal-cheque.html', |
351 | 350 | controller: 'focaModalChequeController', |
352 | - size: 'lg' | |
351 | + size: 'lg', | |
352 | + resolve: { | |
353 | + sugerido: function() { | |
354 | + var sugerido = $scope.getTotalDeuda() + $scope.getTotalCobrado(); | |
355 | + return sugerido < 0 ? sugerido : null ; | |
356 | + } | |
357 | + } | |
353 | 358 | } |
354 | 359 | ); |
355 | 360 | modalInstance.result.then( |
... | ... | @@ -454,7 +459,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
454 | 459 | }); |
455 | 460 | $scope.$broadcast('addCabecera', { |
456 | 461 | label: 'Cotizacion:', |
457 | - valor: cotizacion.VENDEDOR | |
462 | + valor: $filter('number')(cotizacion.VENDEDOR, '2') | |
458 | 463 | }); |
459 | 464 | } |
460 | 465 | }, function() { |
src/views/cobranza.html