controllerCerrarVehiculo.js
3.27 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
angular.module('focaLogisticaPedidoRuta')
.controller('focaModalCerrarVehiculo', [
'$scope',
'$uibModalInstance',
'$uibModal',
'focaLogisticaPedidoRutaService',
'idVehiculo',
'focaModalService',
'$filter',
'fechaReparto',
function($scope, $uibModalInstance, $uibModal, focaLogisticaPedidoRutaService,
idVehiculo, focaModalService, $filter, fechaReparto) {
$scope.vehiculo = {};
$scope.remitos = [];
$scope.now = fechaReparto;
focaLogisticaPedidoRutaService.obtenerVehiculoById(idVehiculo).then(function(res) {
$scope.vehiculo = res.data;
});
focaLogisticaPedidoRutaService.getRemitos(idVehiculo).then(function(res) {
$scope.remitos = focaLogisticaPedidoRutaService.obtenerRemitosDeCarga(res.data);
});
focaLogisticaPedidoRutaService.numeroHojaRuta().then(function(res) {
$scope.sucursal = res.data.sucursal;
$scope.numero = res.data.numeroHojaRuta;
});
$scope.cancelar = function() {
$uibModalInstance.close();
};
$scope.aceptar = function() {
var idsRemito = [];
$scope.remitos.forEach(function(remito) {
idsRemito.push(remito.id);
});
var cierreDistribuicion = {
idsRemito: idsRemito,
fechaReparto: focaLogisticaPedidoRutaService.fecha
};
focaLogisticaPedidoRutaService.cerrarDistribuicion(cierreDistribuicion)
.then(function() {
focaModalService.alert('Vehículo cerrado con éxito');
}
);
};
$scope.seleccionarChofer = function() {
var modalInstance = $uibModal.open(
{
ariaLabelledBy: 'Busqueda de Chofer',
templateUrl: 'modal-chofer.html',
controller: 'focaModalChoferController',
size: 'lg'
}
);
modalInstance.result.then(
function(chofer) {
$scope.chofer = chofer;
}, function() {
// funcion ejecutada cuando se cancela el modal
}
);
};
$scope.eliminarRemitos = function() {
var remitosDel = $filter('filter')($scope.remitos, {checked: true});
focaModalService.alert('¿Seguro que desea desasociar estos remitos del vehículo?')
.then(function() {
eliminarRemitos(remitosDel);
}
);
};
$scope.minimoUnoChecked = function() {
var remitosChequeados = $filter('filter')($scope.remitos, {checked: true});
return !remitosChequeados.length;
};
function eliminarRemitos(remitosDel) {
var nuevosRemitos = $filter('filter')($scope.remitos, {checked: !true});
focaLogisticaPedidoRutaService.desasociarRemitos(remitosDel, $scope.vehiculo.id,
nuevosRemitos ? true : false).then(function() {
focaModalService.alert('Remitos desasociados con éxito');
$scope.remitos = nuevosRemitos;
});
}
}]);