Compare View

switch
from
...
to
 
Commits (14)
src/js/controller.js
... ... @@ -671,9 +671,10 @@ angular.module('focaCrearRemito').controller('remitoController',
671 671  
672 672 })
673 673 .catch(function (e) {
674   - console.info(e);
675   - $scope.seleccionarCliente(true);
676   - return;
  674 + if (!cliente) {
  675 + $scope.seleccionarCliente(true);
  676 + return;
  677 + }
677 678 });
678 679 };
679 680