Commit b588c944a0165f2ba1dbd32acf08d9a8d40eb83a
1 parent
fa1f1b5167
Exists in
master
Arreglo tilde en botón moneda
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -888,6 +888,8 @@ angular.module('focaCrearRemito').controller('remitoController', |
888 | 888 | cotizacionPArgentino.moneda = moneda; |
889 | 889 | |
890 | 890 | actualizarCabeceraMoneda(cotizacionPArgentino); |
891 | + $filter('filter')($scope.botonera, | |
892 | + { label: 'Moneda' })[0].checked = true; | |
891 | 893 | |
892 | 894 | $scope.remito.cotizacion = cotizacionPArgentino; |
893 | 895 | }); |
... | ... | @@ -926,6 +928,8 @@ angular.module('focaCrearRemito').controller('remitoController', |
926 | 928 | cotizacion.moneda = moneda; |
927 | 929 | $scope.remitoIsDirty = true; |
928 | 930 | actualizarCabeceraMoneda(cotizacion); |
931 | + $filter('filter')($scope.botonera, | |
932 | + { label: 'Moneda' })[0].checked = true; | |
929 | 933 | $scope.remito.cotizacion = cotizacion; |
930 | 934 | }, function () { |
931 | 935 |