controller.js
23.4 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
angular.module('focaCrearHojaRuta') .controller('hojaRutaCtrl',
[
'$scope',
'$uibModal',
'$location',
'$filter',
'$timeout',
'focaCrearHojaRutaService',
'focaModalService',
'focaBotoneraLateralService',
'focaLoginService',
'$localStorage',
function($scope, $uibModal, $location, $filter, $timeout,
focaCrearHojaRutaService, focaModalService, focaBotoneraLateralService,
focaLoginSrv, $localStorage)
{
config();
function config() {
$scope.botonera = focaCrearHojaRutaService.getBotonera();
$scope.datepickerAbierto = false;
$scope.show = false;
$scope.cargando = true;
$scope.now = new Date();
$scope.puntoVenta = $filter('rellenarDigitos')(0, 4);
$scope.comprobante = $filter('rellenarDigitos')(0, 8);
//SETEO BOTONERA LATERAL
$timeout(function() {
focaBotoneraLateralService.showSalir(false);
focaBotoneraLateralService.showPausar(true);
focaBotoneraLateralService.showGuardar(true, $scope.crearHojaRuta);
focaBotoneraLateralService.addCustomButton('Salir', salir);
});
init();
$timeout(function() {getLSHojaRuta();});
}
function init() {
$scope.$broadcast('cleanCabecera');
$scope.hojaRuta = {
fecha: new Date(),
litros: 0,
chofer: {},
vehiculo: {
capacidad: 0
},
transportista: {},
tarifario: {
costo: null
},
remitosTabla: []
};
$scope.idLista = undefined;
focaCrearHojaRutaService.getNumeroHojaRuta().then(
function(res) {
$scope.puntoVenta = $filter('rellenarDigitos')(res.data.sucursal, 4);
$scope.comprobante = $filter('rellenarDigitos')(res.data.numeroHojaRuta, 8);
},
function(err) {
focaModalService.alert('La terminal no esta configurada correctamente');
console.info(err);
}
);
$scope.inicial = angular.copy($scope.hojaRuta);
}
$scope.$watch('hojaRuta', function(newValue, oldValue) {
focaBotoneraLateralService.setPausarData({
label: 'hojaRuta',
val: newValue
});
}, true);
$scope.crearHojaRuta = function() {
if(!$scope.hojaRuta.remitosTabla.length) {
focaModalService.alert('Ingrese Remitos');
return;
}
if(!$scope.hojaRuta.chofer.id) {
focaModalService.alert('Ingrese Chofer');
return;
}
if(!$scope.hojaRuta.vehiculo.id) {
focaModalService.alert('Ingrese Vehiculo');
return;
}
if(!$scope.hojaRuta.transportista.COD) {
focaModalService.alert('Ingrese Transportista');
return;
}
if(!$scope.hojaRuta.tarifario.costo) {
focaModalService.alert('Ingrese Tarifario');
return;
}
if(!$scope.hojaRuta.datosExtra) {
focaModalService.alert('Ingrese Datos extra');
return;
}
var date = new Date();
var save = {
hojaRuta: {
id: 0,
fechaCreacion: new Date(date.getTime()).toISOString().slice(0, 19)
.replace('T', ' '),
idTransportista: $scope.hojaRuta.transportista.COD,
idChofer: $scope.hojaRuta.chofer.id,
idVehiculo: $scope.hojaRuta.vehiculo.id,
tarifaFlete: $scope.hojaRuta.tarifario.costo,
fechaReparto: new Date($scope.hojaRuta.fechaReparto).toISOString().substring(0, 10),
estado: 0
},
remitos: $scope.hojaRuta.remitosTabla
};
save.hojaRuta = angular.extend({}, save.hojaRuta, $scope.hojaRuta.datosExtra);
focaCrearHojaRutaService.crearHojaRuta(save).then(
function(data) {
focaModalService.alert(
'Hoja ruta creada Nº: ' +
$filter('rellenarDigitos')(data.data.sucursal, 4) + '-' +
$filter('rellenarDigitos')(data.data.numeroHojaRuta, 8)
);
init();
},
function(error) {
focaModalService.alert('Hubo un error al crear la hoja de ruta');
console.info(error);
}
);
};
$scope.seleccionarTransportista = function() {
if(eligioPreConfirmado()) return;
var parametrosModal = {
titulo: 'Búsqueda de transportista',
query: '/transportista',
columnas: [
{
nombre: 'Código',
propiedad: 'COD'
},
{
nombre: 'Nombre',
propiedad: 'NOM'
},
{
nombre: 'CUIT',
propiedad: 'CUIT'
}
]
};
focaModalService.modal(parametrosModal).then(
function(proveedor) {
$scope.hojaRuta.transportista = proveedor;
$scope.$broadcast('addCabecera', {
label: 'Transportista:',
valor: $filter('rellenarDigitos')(proveedor.COD, 5) + ' - ' +
proveedor.NOM
});
}, function() {
}
);
};
$scope.seleccionarChofer = function() {
var parametrosModal = {
titulo: 'Búsqueda de Chofer',
query: '/chofer',
columnas: [
{
propiedad: 'id',
nombre: 'Código',
filtro: {
nombre: 'rellenarDigitos',
parametro: 3
}
},
{
propiedad: 'nombre',
nombre: 'Nombre'
},
{
propiedad: 'dni',
nombre: 'DNI'
},
{
propiedad: 'telefono',
nombre: 'Teléfono'
}
]
};
focaModalService.modal(parametrosModal).then(
function(chofer) {
$scope.hojaRuta.chofer = chofer;
$scope.$broadcast('addCabecera', {
label: 'Chofer:',
valor: $filter('rellenarDigitos')(chofer.id, 3) + ' - ' +chofer.nombre
});
}, function() {
// funcion ejecutada cuando se cancela el modal
}
);
};
$scope.seleccionarVehiculo = function() {
if(!eligioFecha() || eligioPreConfirmado()) return;
modalVehiculos();
};
$scope.seleccionarTarifario = function() {
focaModalService
.prompt('Tarifa flete', $scope.hojaRuta.tarifario.costo)
.then(function(costo) {
if (isNaN(costo)) {
focaModalService
.alert('Ingrese un valor válido')
.then(function() {
$scope.seleccionarTarifario();
});
return;
}
$scope.hojaRuta.tarifario.costo = costo;
$scope.$broadcast('addCabecera', {
label: 'Tarifario:',
valor: costo
});
});
};
$scope.seleccionarRemitos = function() {
if(eligioPreConfirmado() || !eligioFecha() || !eligioVehiculo()) return;
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Remito',
templateUrl: 'foca-modal-remito.html',
controller: 'focaModalRemitoController',
size: 'lg',
resolve: {usadoPor: function() {return 'hojaRuta';}}
}
);
modalInstance.result.then(
function(remito) {
// TODO: borrar cuando no se use definitivamente
// for (var i = $scope.hojaRuta.remitosTabla.length - 1; i >= 0; i--) {
// if ($scope.hojaRuta.remitosTabla[i].id === remito.id) {
// focaModalService.alert('Remito ya incluido');
// return;
// }
// }
// var litros = 0;
// for (var j = remito.articulosRemito.length - 1; j >= 0; j--) {
// litros = litros + parseFloat(remito.articulosRemito[j].cantidad);
// }
// if ($scope.hojaRuta.litros >= $scope.hojaRuta.vehiculo.capacidad) {
// focaModalService.alert(
// 'Debe ingresar toda la información para el transporte'
// );
// return;
// }
//if($scope.hojaRuta.litros + litros >= $scope.hojaRuta.vehiculo.capacidad)
// {
// var litrostotales = litros;
// litros = $scope.hojaRuta.vehiculo.capacidad - $scope.hojaRuta.litros;
// focaModalService.alert(
// 'La carga excede la capacidad disponible del vehiculo. ' +
// 'Excedente no cargado: ' + (litrostotales - litros) + ' litros'
// );
// }
// remito.litros = litros;
// $scope.hojaRuta.litros = $scope.hojaRuta.litros + litros;
$scope.cargarCisterna(remito.id).then(function() {
$scope.hojaRuta.remitosTabla.push(remito);
$scope.seleccionarRemitos();
}, function() {
$scope.seleccionarRemitos();
});
}, function() {
// funcion ejecutada cuando se cancela el modal
}
);
};
$scope.seleccionarVehiculosPrecargados = function() {
if(!eligioFecha()) return;
modalVehiculos(true);
};
$scope.cargarCisterna = function(idRemito) {
if(!eligioFecha() || !$scope.hojaRuta.vehiculo.id) return;
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Vehiculo',
templateUrl: 'foca-detalle-vehiculo.html',
controller: 'focaDetalleVehiculo',
size: 'lg',
resolve: {
idVehiculo: function() {return $scope.hojaRuta.vehiculo.id;},
idRemito: function() {return idRemito;},
fechaReparto: function() {return $scope.hojaRuta.fechaReparto;}
}
}
);
return modalInstance.result;
};
$scope.seleccionarFechaEntrega = function() {
if (!$scope.hojaRuta.fechaReparto) {
elegirFecha();
return;
}
focaModalService
.confirm('Si cambia la fecha se perderán los datos actuales')
.then(function() {
elegirFecha();
}, function() {
return ;
});
};
$scope.seleccionarDatosExtra = function() {
var datosHojaRuta = $scope.hojaRuta.datosExtra;
var modalInstance = $uibModal.open(
{
templateUrl: 'foca-modal-datos-hoja-ruta.html',
controller: 'focaModalDatosHojaRutaCtrl',
size: 'lg',
resolve: {
parametrosDatos: function() {
return {
datosHojaRuta: datosHojaRuta
};
}
}
}
);
return modalInstance.result.then(function(datosExtra) {
$scope.hojaRuta.datosExtra = datosExtra;
}, function() {
//se ejecuta cuando se cancela el modal
});
};
$scope.desasociarRemito = function(key, idRemito) {
var idsRemito = [idRemito];
focaModalService.confirm('¿Está seguro que desea desasociar este remito del' +
' vehículo?').then(function() {
focaCrearHojaRutaService.desasociarRemitos(idsRemito,
$scope.hojaRuta.vehiculo.id, $scope.hojaRuta.remitosTabla.length <= 1).then(
function() {
$scope.hojaRuta.remitosTabla.splice(key, 1);
focaModalService.alert('Remito desasociado con éxito');
}
);
});
};
function elegirFecha() {
focaModalService.modalFecha('Fecha de entrega').then(function(fecha) {
$scope.$broadcast('addCabecera', {
label: 'Fecha de entrega:',
valor: fecha.toLocaleDateString()
});
$scope.hojaRuta.fechaReparto = fecha;
});
}
function eligioPreConfirmado() {
if($scope.eligioPreConfirmado) {
focaModalService.alert('No puede elegir si eligió un vehiculo pre cargado');
return true;
}
return false;
}
function eligioFecha() {
if(!$scope.hojaRuta.fechaReparto) {
focaModalService.alert('Primero seleccione fecha de reparto');
return false;
}
return true;
}
function eligioVehiculo() {
if(!$scope.hojaRuta.vehiculo.id) {
focaModalService.alert('Primero seleccione vehiculo');
return false;
}
return true;
}
function modalVehiculos(preCargados) {
var parametrosModal = {};
if(preCargados) {
parametrosModal.query = '/vehiculo/obtener/pre-confirmados/' +
new Date($scope.hojaRuta.fechaReparto).toISOString().substring(0, 10);
parametrosModal.titulo = 'Búsqueda de vehiculos pre confirmados';
}else {
parametrosModal.query = '/vehiculo';
parametrosModal.titulo = 'Búsqueda de vehículos';
}
parametrosModal.columnas = [
{
propiedad: 'codigo',
nombre: 'Código'
},
{
propiedad: 'tractor',
nombre: 'tractor'
},
{
propiedad: 'semi',
nombre: 'Semi'
}
];
focaModalService.modal(parametrosModal).then(function(vehiculo) {
if(!preCargados && vehiculoEnUso(vehiculo)) return;
$scope.hojaRuta.vehiculo = vehiculo;
$scope.hojaRuta.transportista = vehiculo.transportista;
if(preCargados) {
$scope.eligioPreConfirmado = true;
$scope.hojaRuta.vehiculo = vehiculo;
$scope.$broadcast('addCabecera', {
label: 'Transportista:',
valor: $filter('rellenarDigitos')(vehiculo.transportista.COD, 5) +
' - ' + vehiculo.transportista.NOM
});
focaCrearHojaRutaService
.getRemitosByIdVehiculo(vehiculo.id, $scope.hojaRuta.fechaReparto)
.then(function(res) {
$scope.hojaRuta.remitosTabla = res.data;
});
}else {
focaCrearHojaRutaService
.getRemitosByIdVehiculo(vehiculo.id, $scope.hojaRuta.fechaReparto, true)
.then(function(res) {
$scope.hojaRuta.remitosTabla = res.data;
});
}
$scope.$broadcast('addCabecera', {
label: 'Tractor:',
valor: vehiculo.tractor
});
$scope.$broadcast('addCabecera', {
label: 'Semi:',
valor: vehiculo.semi
});
$scope.$broadcast('addCabecera', {
label: 'Capacidad:',
valor: vehiculo.capacidad
});
});
}
function vehiculoEnUso(vehiculo) {
var idUsuario = focaLoginSrv.getLoginData().vendedorCobrador;
for (var i = 0; i < vehiculo.cisternas.length; i++) {
for (var j = 0; j < vehiculo.cisternas[i].cisternasCarga.length; j++) {
var cisternaCarga = vehiculo.cisternas[i].cisternasCarga[j];
if (cisternaCarga.fechaReparto.substring(0, 10) ===
new Date($scope.hojaRuta.fechaReparto).toISOString().substring(0, 10) &&
cisternaCarga.idUsuarioProceso &&
cisternaCarga.idUsuarioProceso !== idUsuario)
{
focaModalService.alert('El vehículo está siendo usado por otro' +
' usuario');
return true;
}
}
}
return false;
}
function salir() {
var confirmacion = false;
if (!angular.equals($scope.hojaRuta, $scope.inicial)) {
confirmacion = true;
}
if (confirmacion) {
focaModalService.confirm(
'¿Está seguro de que desea salir? Se perderán todos los datos cargados.'
).then(function(data) {
if (data) {
$location.path('/');
}
});
} else {
$location.path('/');
}
}
function setearHojaRuta(hojaRuta) {
$scope.$broadcast('cleanCabecera');
var cabeceras = [];
if (hojaRuta.fechaReparto) {
cabeceras.push({
label: 'Fecha de entrega:',
valor: $filter('date')(hojaRuta.fechaReparto, 'dd/MM/yyyy')
});
}
if (hojaRuta.transportista.COD) {
cabeceras.push({
label: 'Transportista:',
valor: $filter('rellenarDigitos')(hojaRuta.transportista.COD, 5) + ' - ' +
hojaRuta.transportista.NOM
});
}
if (hojaRuta.chofer.id) {
cabeceras.push({
label: 'Chofer:',
valor: $filter('rellenarDigitos')(hojaRuta.chofer.id, 3) +
' - ' + hojaRuta.chofer.nombre
});
}
if (hojaRuta.vehiculo.id) {
cabeceras.push({
label: 'Tractor:',
valor: hojaRuta.vehiculo.tractor
});
cabeceras.push({
label: 'Semi:',
valor: hojaRuta.vehiculo.semi
});
cabeceras.push({
label: 'Capacidad:',
valor: hojaRuta.vehiculo.capacidad
});
}
if (hojaRuta.tarifario.costo) {
cabeceras.push({
label: 'Tarifario:',
valor: hojaRuta.tarifario.costo
});
}
addArrayCabecera(cabeceras);
$scope.hojaRuta = hojaRuta;
}
function getLSHojaRuta() {
var hojaRuta = JSON.parse($localStorage.hojaRuta || null);
if (hojaRuta) {
setearHojaRuta(hojaRuta);
delete $localStorage.hojaRuta;
}
}
function addArrayCabecera(array) {
for(var i = 0; i < array.length; i++) {
$scope.$broadcast('addCabecera', {
label: array[i].label,
valor: array[i].valor
});
}
}
}
]);