Commit 47ad6f871aa69800ceeac7a51306591e60af7a0f

Authored by Eric Fernandez
1 parent 7ac95183a6
Exists in master

cambios pequeños

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/js/controller.js
... ... @@ -108,7 +108,7 @@ angular.module('focaCrearNotaPedido')
108 108 $scope.seleccionarArticulo = function() {
109 109 if (idLista === undefined) {
110 110 focaModalService.alert(
111   - 'primero seleccione una lista de precio y condicion');
  111 + 'Primero seleccione una lista de precio y condicion');
112 112 return;
113 113 }
114 114 var modalInstance = $uibModal.open(
... ... @@ -317,7 +317,7 @@ angular.module('focaCrearNotaPedido')
317 317 $scope.notaPedido.flete = '0';
318 318 $scope.notaPedido.bomba = '0';
319 319 $scope.notaPedido.precioCondicion = '';
320   - $scope.articulosTabla = [];
  320 + $scope.articulosTabla = [];
321 321 $scope.notaPedido.vendedor.nombre = '';
322 322 $scope.notaPedido.cliente = {nombre: ''};
323 323 $scope.notaPedido.domicilio = {dom: ''};
... ... @@ -327,7 +327,7 @@ angular.module('focaCrearNotaPedido')
327 327 $scope.articuloACargar = {};
328 328 $scope.cargando = true;
329 329 };
330   - $scope.selectFocus = function ($event) {
  330 + $scope.selectFocus = function($event) {
331 331 $event.target.select();
332 332 };
333 333 }