Commit 6ddcff44163e8d9dd0fdf540c414745c1a345581

Authored by Joel Vitelli
1 parent 977cd9c32a
Exists in master

Arreglado check moneda

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -902,7 +902,8 @@ angular.module('focaCrearRemito').controller('remitoController',
902 902 cotizacionPArgentino.moneda = moneda;
903 903  
904 904 actualizarCabeceraMoneda(cotizacionPArgentino);
905   -
  905 + $filter('filter')($scope.botonera,
  906 + { label: 'Moneda' })[0].checked = true;
906 907 $scope.remito.cotizacion = cotizacionPArgentino;
907 908 });
908 909 }, function () {
... ... @@ -939,6 +940,8 @@ angular.module('focaCrearRemito').controller('remitoController',
939 940 cotizacion.moneda = moneda;
940 941 $scope.remitoIsDirty = true;
941 942 actualizarCabeceraMoneda(cotizacion);
  943 + $filter('filter')($scope.botonera,
  944 + { label: 'Moneda' })[0].checked = true;
942 945 $scope.remito.cotizacion = cotizacion;
943 946 }, function () {
944 947