-
Notifications
You must be signed in to change notification settings - Fork 0
/
vacacionesVE.php
286 lines (243 loc) · 8.43 KB
/
vacacionesVE.php
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
<?php
require('utils.php');
/**
* Vacaciones Venezuela
*
* Clase PHP para obtener los cálculos relacionados a vacaciones
* @author: Edwin Betancourt <EdwinBetanc0urt@outlook.com>
* @license: MIT License.
* @category library.
* @package: vacacionesVE.php
* @since: v0.3.
* @version: 0.7.
*/
class vacacionesVE
{
use utils;
public $atrDiasVacaciones = 15; // días correspondientes de vacaciones según la LOTTT
public $atrTipoPersona = "R"; // tipo de persona Regular o Funcionario
public $atrFechaIngreso, $atrAntiguedad;
public static $maxPeriodos = 2;
/**
* @param string $setFechaIngreso, Fecha de ingreso en formato YYYY-mm-dd
* @param string $setTipoPersona, Regular o funcionario.
*/
function __construct($setFechaIngreso = "", $setTipoPersona = "R")
{
$this->atrTipoPersona = trim($setTipoPersona);
$this->atrMaxPeriodo = self::$maxPeriodos; // máximo acumulado 2 periodos art 199 LOTTT y 1 o no acumulativo art 19 LCA
$this->atrPeriodo = 1; // cada año
$this->atrTipoPeriodo = "Año(s)"; // cada año
$this->setFechaIngreso($setFechaIngreso);
if (strtoupper($this->atrTipoPersona) == "F") {
$this->setAsignarValoresFuncionario();
}
} // cierre del constructor
/**
* @param string $setFechaIngreso, Fecha de ingreso en formato YYYY-mm-dd
*/
public function setFechaIngreso($setFechaIngreso)
{
if (strlen(trim(str_replace(array("-", "/"), "", $setFechaIngreso))) == "4") {
$setFechaIngreso = str_replace(array("-", "/"), "", $setFechaIngreso);
$diaMes = date("m-d");
$setFechaIngreso = $setFechaIngreso . "-" . $diaMes;
}
$this->atrFechaIngreso = trim($setFechaIngreso);
} // cierre de la función
private function setAsignarValoresFuncionario()
{
$this->atrMaxPeriodo = 1;
$this->atrPeriodo = 5; // cada 5 años
$this->atrTipoPeriodo = "Quinquenio"; // cada 5 años
} // cierre de la función
/**
* @param string $fechaIngreso Fecha de inicio en formato YYYY-mm-dd
* @param string $fechaPeriodo fecha del periodo a calcular la antigüedad YYYY-mm-dd o YYYY
*/
static function _getAntiguedad($fechaIngreso, $fechaPeriodo = "")
{
if (trim($fechaPeriodo) == "") {
$fechaPeriodo = date("Y-m-d");
}
if (strlen(trim(str_replace(array("-", "/"), "", $fechaPeriodo))) == "4") {
$diaMes = date("m-d");
$fechaPeriodo = $fechaPeriodo . "-" . $diaMes;
}
$objFecha_Ingreso = new DateTime($fechaIngreso);
$objFecha_Periodo = new DateTime($fechaPeriodo);
$objAnos = $objFecha_Periodo->diff($objFecha_Ingreso);
$liAntiguedad = intval($objAnos->y);
unset($objFecha_Ingreso, $objFecha_Periodo, $objAnos);
return $liAntiguedad;
} // cierre de la función
public function getAntiguedad($fechaIngreso = "", $fechaPeriodo = "")
{
if (trim($fechaIngreso) == "" || $fechaIngreso == NULL) {
$fechaIngreso = $this->atrFechaIngreso;
}
return self::_getAntiguedad($fechaIngreso, $fechaPeriodo);
} // cierre de la función
/**
* La formula es 15 + (años de servicio -1)
* hasta llegar a 15 días hábiles (30 días de vacaciones en total)
*/
static public function _getDiasVacacionesAntiguedad($piAntiguedad)
{
$piAntiguedad = intval(trim($piAntiguedad));
//$liDiasAntiguedad = $this->atrDiasVacaciones + ($piAntiguedad - 1);
$liDiasAntiguedad = 15 + ($piAntiguedad - 1);
if ($liDiasAntiguedad > 30) {
return 30;
}
return $liDiasAntiguedad;
} // cierre de la función
public function getDiasVacacionesAntiguedad($piAntiguedad = "") {
if (trim($piAntiguedad) == "") {
$piAntiguedad = $this->getAntiguedad($this->atrFechaIngreso);
}
return self::_getDiasVacacionesAntiguedad($piAntiguedad);
} // cierre de la función
/**
* Calcula la cantidad total acumulada de días según la antigüedad
*/
static public function _getDiasTotalesAntiguedad($antiguedad)
{
$antiguedad = intval(trim($antiguedad));
$diasAcumuladoAntiguedad = 0;
for ($i = 1; $i <= $antiguedad; $i++) {
$diasAcumuladoAntiguedad = $diasAcumuladoAntiguedad + self::_getDiasVacacionesAntiguedad($i);
}
return $diasAcumuladoAntiguedad;
} // cierre de la función
public function getDiasTotalesAntiguedad($antiguedad = "") {
if ($antiguedad == NULL || $antiguedad == "") {
$antiguedad = $this->atrAntiguedad;
}
return self::_getDiasTotalesAntiguedad($antiguedad);
}
static public function _getDetalleVacacionesPeriodo(
$psFechaIngreso, $paPeriodos = array()
)
{
$lsDia = self::getFechaFormato($psFechaIngreso, "amd", "d");
$lsMes = self::getFechaFormato($psFechaIngreso, "amd", "m");
if (! is_array($paPeriodos)) {
// separa la palabra en cada quien y convierte el string en arreglo
if (strpos($paPeriodos, "/")) {
$paPeriodos = explode("/", $paPeriodos);
}
else {
$paPeriodos = explode("-", $paPeriodos);
}
}
$liCont = 1;
$lsVacaciones = 0;
$arrRetorno = array();
if (count($paPeriodos) <= 0) {
$liCont = -1;
}
foreach ($paPeriodos as $key => $value) {
// $value = explode("-", $value);
$antiguedad = self::_getAntiguedad($psFechaIngreso, ($value + 1) . "-" . $lsMes . "-" . $lsDia);
// $antiguedad = self::_getAntiguedad($psFechaIngreso, ($value + 2) . "-" . $lsMes . "-" . $lsDia);
$diasvacaciones = self::_getDiasVacacionesAntiguedad($antiguedad);
$arrRetorno["periodo"][$liCont]["anno"] = $value;
$arrRetorno["periodo"][$liCont]["dias"] = $diasvacaciones;
$arrRetorno["periodo"][$liCont]["antiguedad"] = $antiguedad;
$arrRetorno["periodo"][$liCont]["periodos"] = $value . "-" . ($value + 1);
$lsVacaciones = $lsVacaciones + $diasvacaciones;
$liCont ++;
}
$arrRetorno["dias_vacaciones"] = $lsVacaciones;
return $arrRetorno;
} // cierre de la función
public function getDetalleVacacionesPeriodo(
$fechaIngreso = "", $periodos = array()
)
{
if (trim($fechaIngreso) == "" || $fechaIngreso == NULL) {
$fechaIngreso = $this->atrFechaIngreso;
}
return self::_getDetalleVacacionesPeriodo($fechaIngreso, $periodos);
} // cierre de la función
static public function _getDiasPeriodos($fechaIngreso, $periodos) {
$antiguedad = 1;
$diasVacaciones = 0;
$todosPeriodos = self::_getPeriodosAntiguedad($fechaIngreso);
if (! is_array($periodos)) {
// separa la palabra en cada quien y convierte el string en arreglo
$periodos = explode(",", $periodos);
}
if (! is_array($periodos)) {
// separa la palabra en cada quien y convierte el string en arreglo
$periodos = explode(" ", $periodos);
}
foreach ($todosPeriodos as $key => $periodoItem) {
if (in_array($periodoItem, $periodos)) {
$diasVacaciones = self::_getDiasVacacionesAntiguedad($antiguedad) + $diasVacaciones;
}
$antiguedad++;
}
return $diasVacaciones;
}
public function getDiasPeriodos($fechaIngreso = "", $periodos) {
if (trim($fechaIngreso) == "" || $fechaIngreso == NULL) {
$fechaIngreso = $this->atrFechaIngreso;
}
return self::_getDiasPeriodos($fechaIngreso, $periodos);
}
static public function _getPeriodosAntiguedad($fechaIngreso)
{
$year = self::getFechaFormato($fechaIngreso, "amd", "a");
$antiguedad = self::_getAntiguedad($fechaIngreso);
$periodos = array();
if ($antiguedad > 0) {
for ($i = 0; $i <= $antiguedad - 1; $i ++) {
$periodos[$i] = ($year + $i) . "-" . ($year + $i + 1);
}
}
return $periodos;
} // cierre de la función
public function getPeriodosAntiguedad($fechaIngreso = "") {
if (trim($fechaIngreso) == "" || $fechaIngreso == NULL) {
$fechaIngreso = $this->atrFechaIngreso;
}
return self::_getPeriodosAntiguedad($fechaIngreso);
} // cierre de la función
public function getListarPeriodos($paPeriodosUsados = array())
{
if (! is_array($paPeriodosUsados)) {
// separa la palabra en cada quien y convierte el string en arreglo
if (strpos($paPeriodosUsados, "/")) {
$paPeriodosUsados = explode("/", $paPeriodosUsados);
}
else {
$paPeriodosUsados = explode("-", $paPeriodosUsados);
}
}
$arrPeriodos = $this->getPeriodosAntiguedad($this->atrFechaIngreso);
$arrComparado = array_diff($arrPeriodos, $paPeriodosUsados);
$arrRetorno = array();
if ($arrComparado) {
$arrComparado = array_slice(
array_diff(
$arrPeriodos,
$paPeriodosUsados
),
0,
$this->atrMaxPeriodo
);
$liCont = 0;
foreach ($arrComparado AS $key => $value) {
if ($liCont > 0) {
$value = $arrComparado[($liCont-1)] . "-" . $value;
$arrRetorno[$liCont] = $value;
}
$liCont++;
}
}
return $arrRetorno;
} // cierre de la función
}
?>