controller.js
12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
angular.module('focaCrearCobranza') .controller('cobranzaController',
[
'$scope',
'$uibModal',
'$location',
'$filter',
'focaCrearCobranzaService',
'focaModalService',
function($scope, $uibModal, $location, $filter, focaCrearCobranzaService, focaModalService)
{
$scope.botonera = [
{texto: 'Cliente', accion: function() {$scope.seleccionarCliente();}},
{texto: 'Cobrador', accion: function() {$scope.seleccionarCobrador();}},
{texto: 'Deuda', accion: function() {$scope.swichDeuda();}},
{texto: 'Cobros', accion: function() {$scope.swichCobro();}},
{texto: 'Moneda', accion: function() {$scope.seleccionarMoneda();}},
{texto: '', accion: function() {}},
{texto: '', accion: function() {}},
{texto: '', accion: function() {}}
];
$scope.datepickerAbierto = false;
$scope.cobroDeuda = true;
$scope.show = false;
$scope.cargando = true;
$scope.dateOptions = {
maxDate: new Date(),
minDate: new Date(2010, 0, 1)
};
$scope.cobranza = {
fecha: new Date()
};
$scope.cabecera = [];
$scope.showCabecera = true;
$scope.now = new Date();
$scope.puntoVenta = '0000';
$scope.comprobante = '00000000';
$scope.facturaTabla = [];
$scope.cobrosTabla = [];
var monedaPorDefecto;
//Trabajo con la cotización más reciente, por eso uso siempre la primera '[0]'
focaCrearCobranzaService.getCotizacionByIdMoneda(1).then(function(res) {
monedaPorDefecto = res.data[0];
addCabecera('Moneda:', monedaPorDefecto.DETALLE);
addCabecera('Fecha cotizacion:',
new Date(monedaPorDefecto.cotizaciones[0].FECHA).toLocaleDateString());
addCabecera('Cotizacion:', monedaPorDefecto.cotizaciones[0].VENDEDOR);
$scope.cobranza.moneda = monedaPorDefecto;
$scope.cobranza.cotizacion = monedaPorDefecto.cotizaciones[0];
});
focaCrearCobranzaService.getNumeroRecibo().then(
function(res) {
$scope.puntoVenta = $scope.rellenar(res.data.sucursal, 4);
$scope.comprobante = $scope.rellenar(res.data.numeroRecibo, 8);
},
function(err) {
focaModalService.alert('La terminal no esta configurada correctamente');
console.info(err);
}
);
$scope.crearCobranza = function() {
if(!$scope.cliente.COD) {
focaModalService.alert('Ingrese Cliente');
return;
}else if($scope.facturaTabla.length < 1) {
focaModalService.alert('Ingrese al menos una factura');
return;
}
//TODO: Guarda cobranza
// var date = new Date();
// var cobranza = {
// };
};
$scope.swichCobro = function() {
$scope.cobroDeuda = false;
};
$scope.swichDeuda = function() {
$scope.cobroDeuda = true;
};
$scope.seleccionarCliente = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Cliente',
templateUrl: 'foca-busqueda-cliente-modal.html',
controller: 'focaBusquedaClienteModalController',
size: 'lg'
}
);
modalInstance.result.then(
function(cliente) {
addCabecera('Cliente:', cliente.nom);
$scope.cobranza.cliente = {
COD: cliente.cod,
CUIT: cliente.cuit,
NOM: cliente.nom
};
}, function() {
}
);
};
$scope.seleccionarFactura = function() {
if(!$scope.cobranza.cliente) {
focaModalService.alert('Seleccione primero un cliente');
return;
}
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Facturas',
templateUrl: 'foca-modal-factura.html',
controller: 'focaModalFacturaController',
size: 'lg',
resolve: {
cliente: function() {return $scope.cobranza.cliente.COD;}
}
}
);
modalInstance.result.then(
function(facturas) {
$scope.facturaTabla = $scope.facturaTabla.concat(facturas);
}, function() {
}
);
};
$scope.seleccionarCheque = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Carga de cheques',
templateUrl: 'modal-cheque.html',
controller: 'focaModalChequeController',
size: 'lg'
}
);
modalInstance.result.then(
function(cheque) {
var cobro = {
tipo: 'Cheque',
fecha: cheque.fechaValor,
importe: cheque.importe
};
$scope.cobrosTabla.push(cobro);
}, function() {
}
);
};
$scope.seleccionarEfectivo = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Carga de cheques',
templateUrl: 'modal-efectivo.html',
controller: 'focaModalEfectivoController',
size: 'sm'
}
);
modalInstance.result.then(
function(efectivo) {
var cobro = {
tipo: 'Efectivo',
fecha: new Date(),
importe: efectivo
};
$scope.cobrosTabla.push(cobro);
}, function() {
}
);
};
$scope.seleccionarMoneda = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Moneda',
templateUrl: 'modal-moneda.html',
controller: 'focaModalMonedaController',
size: 'lg'
}
);
modalInstance.result.then(
function(moneda) {
$scope.seleccionarCotizacion(moneda);
}, function() {
}
);
};
$scope.seleccionarCobrador = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Cobradores',
templateUrl: 'modal-cobradores.html',
controller: 'focaModalCobradoresController',
size: 'lg'
}
);
modalInstance.result.then(
function(cobrador) {
addCabecera('Cobrador:', cobrador.nombre);
$scope.cobranza.cobrador = cobrador;
}, function() {
}
);
};
$scope.seleccionarCotizacion = function(moneda) {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Cotización',
templateUrl: 'modal-cotizacion.html',
controller: 'focaModalCotizacionController',
size: 'lg',
resolve: {idMoneda: function() {return moneda.ID;}}
}
);
modalInstance.result.then(
function(cotizacion) {
$scope.cobranza.moneda = moneda;
$scope.cobranza.cotizacion = cotizacion;
addCabecera('Moneda:', moneda.DETALLE);
addCabecera(
'Fecha cotizacion:',
$filter('date')(cotizacion.FECHA, 'dd/MM/yyyy')
);
addCabecera('Cotizacion:', cotizacion.VENDEDOR);
}, function() {
}
);
};
$scope.agregarCobro = function(key) {
if(key === 13) {
var cobro = {
cobro: 'Efectivo',
fecha: new Date(),
importe: $scope.cobroEfectivo
};
$scope.cobrosTabla.push(cobro);
}
};
$scope.getTotalDeuda = function() {
var total = 0;
for (var i = 0; i < $scope.facturaTabla.length; i++) {
total += $scope.facturaTabla[i].IPA;
}
return parseFloat(total.toFixed(2));
};
$scope.getTotalCobrado = function() {
var total = 0;
for (var i = 0; i < $scope.cobrosTabla.length; i++) {
total += $scope.cobrosTabla[i].importe;
}
return parseFloat(total.toFixed(2));
};
$scope.getSubTotal = function() {
if($scope.articuloACargar) {
return $scope.articuloACargar.precio * $scope.articuloACargar.cantidad;
}
};
//Recibe aviso si el teclado está en uso
// $rootScope.$on('usarTeclado', function(event, data) {
// if(data) {
// $scope.mostrarTeclado = true;
// return;
// }
// $scope.mostrarTeclado = false;
// })
$scope.selectFocus = function($event) {
//Si el teclado esta en uso no selecciona el valor
// if($scope.mostrarTeclado) {
// return;
// }
$event.target.select();
};
$scope.salir = function() {
$location.path('/');
};
$scope.parsearATexto = function(articulo) {
articulo.cantidad = parseFloat(articulo.cantidad);
articulo.precio = parseFloat(articulo.precio);
};
$scope.rellenar = function(relleno, longitud) {
relleno = '' + relleno;
while (relleno.length < longitud) {
relleno = '0' + relleno;
}
return relleno;
};
$scope.quitarFactura = function(key) {
$scope.facturaTabla.splice(key, 1);
};
$scope.quitarCobro = function(key) {
$scope.cobrosTabla.splice(key, 1);
};
function addCabecera(label, valor) {
var propiedad = $filter('filter')($scope.cabecera, {label: label}, true);
if(propiedad.length === 1) {
propiedad[0].valor = valor;
} else {
$scope.cabecera.push({label: label, valor: valor});
}
}
// TODO: descomentar cuando se use
/*function removeCabecera(label) {
var propiedad = $filter('filter')($scope.cabecera, {label: label}, true);
if(propiedad.length === 1){
$scope.cabecera.splice($scope.cabecera.indexOf(propiedad[0]), 1);
}
}*/
}
]);