sigesp 1.0.12-20240620 → 1.0.14-20240623
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +4 -1
- package/esm2020/lib/core/models/SNO/MPeriodoNomina.model.mjs +4 -1
- package/esm2020/lib/sigesp.service.mjs +13 -1
- package/fesm2015/sigesp.mjs +18 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +18 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +1 -0
- package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +1 -0
- package/lib/sigesp.service.d.ts +10 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -4165,6 +4165,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4165
4165
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = 1;
|
|
4166
4166
|
this.cuentaContableProveedorBeneficiario = '';
|
|
4167
4167
|
this.procesarSueldosHistoricos = 1;
|
|
4168
|
+
this.altoVolumenDatos = 0;
|
|
4168
4169
|
if (I) {
|
|
4169
4170
|
this.idEnterprise = +I.id_enterprise;
|
|
4170
4171
|
this.idEmpresa = +I.id_empresa;
|
|
@@ -4296,6 +4297,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4296
4297
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = parseInt(I.incbenperautmodben);
|
|
4297
4298
|
this.cuentaContableProveedorBeneficiario = I.sc_cuentarecdoc;
|
|
4298
4299
|
this.procesarSueldosHistoricos = +I.prosuehis;
|
|
4300
|
+
this.altoVolumenDatos = +I.altvoldat;
|
|
4299
4301
|
}
|
|
4300
4302
|
else {
|
|
4301
4303
|
this.isNew = true;
|
|
@@ -4433,6 +4435,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4433
4435
|
incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios.toString(),
|
|
4434
4436
|
sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario,
|
|
4435
4437
|
prosuehis: this.procesarSueldosHistoricos.toString(),
|
|
4438
|
+
altvoldat: this.altoVolumenDatos.toString(),
|
|
4436
4439
|
};
|
|
4437
4440
|
}
|
|
4438
4441
|
}
|
|
@@ -4458,6 +4461,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4458
4461
|
this.fideicomisoInteresContabilizadoPeriodo = 0;
|
|
4459
4462
|
this.prenomina = false;
|
|
4460
4463
|
this.calculado = false;
|
|
4464
|
+
this.mes = 0;
|
|
4461
4465
|
if (e) {
|
|
4462
4466
|
this.idEnterprise = +e.id_enterprise;
|
|
4463
4467
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -4477,6 +4481,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4477
4481
|
this.fideicomisoInteresContabilizadoPeriodo = parseInt(e.fidintconper);
|
|
4478
4482
|
this.prenomina = e.prenomina == '1' ? true : false;
|
|
4479
4483
|
this.calculado = e.calculado == '1' ? true : false;
|
|
4484
|
+
this.mes = +e.mes;
|
|
4480
4485
|
}
|
|
4481
4486
|
}
|
|
4482
4487
|
dataInterface() {
|
|
@@ -4499,6 +4504,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4499
4504
|
fidintconper: this.fideicomisoInteresContabilizadoPeriodo.toString(),
|
|
4500
4505
|
prenomina: this.prenomina ? '1' : '0',
|
|
4501
4506
|
calculado: this.calculado ? '1' : '0',
|
|
4507
|
+
mes: this.mes.toString(),
|
|
4502
4508
|
};
|
|
4503
4509
|
}
|
|
4504
4510
|
estatusPeriodo() {
|
|
@@ -8367,6 +8373,18 @@ class SigespService {
|
|
|
8367
8373
|
return res;
|
|
8368
8374
|
}));
|
|
8369
8375
|
}
|
|
8376
|
+
/**
|
|
8377
|
+
* @description Obtiene los release
|
|
8378
|
+
* @param tipo : release (obtiene el ultimo release del sistema),verificar(verifica si se ejecuto el ultimo release)
|
|
8379
|
+
* @param sistema : sistema
|
|
8380
|
+
* @param seccion : tipo 'RELEASE'
|
|
8381
|
+
* @returns string
|
|
8382
|
+
* @author Dimaly Crespo
|
|
8383
|
+
* @date 21-06-2024
|
|
8384
|
+
*/
|
|
8385
|
+
getVerificarRelease(tipo, sistema, seccion = null) {
|
|
8386
|
+
return this.http.get(`${this.URL}/dao/ins/instala_dao.php?tipo=${tipo}&sistema=${sistema}&seccion=${seccion}`, { headers: this.getHttpHeaders() }).pipe(map((res) => { return res; }));
|
|
8387
|
+
}
|
|
8370
8388
|
}
|
|
8371
8389
|
SigespService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SigespService, deps: [{ token: i1$1.HttpClient }, { token: i1.MatDialog }, { token: i3$2.ToastrService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8372
8390
|
SigespService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SigespService, providedIn: 'root' });
|