controllerHojaRuta.js
3.47 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
angular.module('focaLogisticaPedidoRuta')
.controller('focaModalCrearHojaRuta', [
'$scope',
'$uibModalInstance',
'$uibModal',
'focaLogisticaPedidoRutaService',
'idVehiculo',
'focaModalService',
'$filter',
function($scope, $uibModalInstance, $uibModal, focaLogisticaPedidoRutaService,
idVehiculo, focaModalService, $filter) {
$scope.vehiculo = {};
$scope.remitos = [];
$scope.now = new Date();
focaLogisticaPedidoRutaService.obtenerVehiculoById(idVehiculo).then(function(res) {
$scope.vehiculo = res.data;
});
//TODO: refactor código esta rre feo
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 save = {
hojaRuta: {
id: 0,
fechaCreacion: $scope.now.toISOString().slice(0, 19).replace('T', ' '),
idTransportista: $scope.vehiculo.idTransportista,
idChofer: $scope.chofer.id,
idVehiculo: $scope.vehiculo.id,
tarifaFlete: $scope.tarifaFlete
},
remitos: $scope.remitos,
idVehiculo: $scope.vehiculo.id
};
focaLogisticaPedidoRutaService.crearHojaRuta(save).then(function() {
$uibModalInstance.close();
focaModalService.alert('Hoja de ruta guardada 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;
});
}
}]);