Commit 2bc1301078ebadda2ab3ca616cfa4e84dd66920e
1 parent
d57e07de31
Exists in
master
fix mobile
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
src/js/controller.js
... | ... | @@ -55,6 +55,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
55 | 55 | cliente: {}, |
56 | 56 | cobrador: {} |
57 | 57 | }; |
58 | + | |
58 | 59 | if (APP === 'cobranza') { |
59 | 60 | focaCrearCobranzaService.getCobradorById($scope.idCobrador).then( |
60 | 61 | function(res) { |
... | ... | @@ -67,7 +68,7 @@ angular.module('focaCrearCobranza') .controller('cobranzaController', |
67 | 68 | }); |
68 | 69 | |
69 | 70 | $scope.cobranza.cobrador = cobrador; |
70 | - $scope.inicial.cobranza.cobrador = $scope.cobranza.cobrador; | |
71 | + $scope.inicial.cobrador = $scope.cobranza.cobrador; | |
71 | 72 | } |
72 | 73 | ); |
73 | 74 | } |