Commit 5e3bdc6cf9c3c98aac3b499695b2fd9dcca91eb8

Authored by Luigi
1 parent 478c8edb64
Exists in master and in 1 other branch develop

Arreglo espacios

Showing 1 changed file with 1 additions and 3 deletions   Show diff stats
src/js/controller.js
... ... @@ -471,8 +471,6 @@ angular.module('focaBusquedaCliente')
471 471 };
472 472  
473 473 $scope.guardar = function() {
474   - console.log('Cliente: ', $scope.cliente);
475   -
476 474 if (!$scope.cliente.NOM) {
477 475 focaModalService.alert('Ingrese Nombre');
478 476 return;
... ... @@ -565,7 +563,7 @@ angular.module('focaBusquedaCliente')
565 563 delete cliente.cuit1;
566 564 delete cliente.cuit2;
567 565 delete cliente.cuit3;
568   - console.log('Copia Cliente: ',cliente);
  566 +
569 567 return cliente;
570 568 }
571 569