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/fesm2015/sigesp.mjs
CHANGED
|
@@ -4176,6 +4176,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4176
4176
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = 1;
|
|
4177
4177
|
this.cuentaContableProveedorBeneficiario = '';
|
|
4178
4178
|
this.procesarSueldosHistoricos = 1;
|
|
4179
|
+
this.altoVolumenDatos = 0;
|
|
4179
4180
|
if (I) {
|
|
4180
4181
|
this.idEnterprise = +I.id_enterprise;
|
|
4181
4182
|
this.idEmpresa = +I.id_empresa;
|
|
@@ -4307,6 +4308,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4307
4308
|
this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = parseInt(I.incbenperautmodben);
|
|
4308
4309
|
this.cuentaContableProveedorBeneficiario = I.sc_cuentarecdoc;
|
|
4309
4310
|
this.procesarSueldosHistoricos = +I.prosuehis;
|
|
4311
|
+
this.altoVolumenDatos = +I.altvoldat;
|
|
4310
4312
|
}
|
|
4311
4313
|
else {
|
|
4312
4314
|
this.isNew = true;
|
|
@@ -4444,6 +4446,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4444
4446
|
incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios.toString(),
|
|
4445
4447
|
sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario,
|
|
4446
4448
|
prosuehis: this.procesarSueldosHistoricos.toString(),
|
|
4449
|
+
altvoldat: this.altoVolumenDatos.toString(),
|
|
4447
4450
|
};
|
|
4448
4451
|
}
|
|
4449
4452
|
}
|
|
@@ -4469,6 +4472,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4469
4472
|
this.fideicomisoInteresContabilizadoPeriodo = 0;
|
|
4470
4473
|
this.prenomina = false;
|
|
4471
4474
|
this.calculado = false;
|
|
4475
|
+
this.mes = 0;
|
|
4472
4476
|
if (e) {
|
|
4473
4477
|
this.idEnterprise = +e.id_enterprise;
|
|
4474
4478
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -4488,6 +4492,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4488
4492
|
this.fideicomisoInteresContabilizadoPeriodo = parseInt(e.fidintconper);
|
|
4489
4493
|
this.prenomina = e.prenomina == '1' ? true : false;
|
|
4490
4494
|
this.calculado = e.calculado == '1' ? true : false;
|
|
4495
|
+
this.mes = +e.mes;
|
|
4491
4496
|
}
|
|
4492
4497
|
}
|
|
4493
4498
|
dataInterface() {
|
|
@@ -4510,6 +4515,7 @@ class MPeriodoNomina extends MBasicModel {
|
|
|
4510
4515
|
fidintconper: this.fideicomisoInteresContabilizadoPeriodo.toString(),
|
|
4511
4516
|
prenomina: this.prenomina ? '1' : '0',
|
|
4512
4517
|
calculado: this.calculado ? '1' : '0',
|
|
4518
|
+
mes: this.mes.toString(),
|
|
4513
4519
|
};
|
|
4514
4520
|
}
|
|
4515
4521
|
estatusPeriodo() {
|
|
@@ -8408,6 +8414,18 @@ class SigespService {
|
|
|
8408
8414
|
return res;
|
|
8409
8415
|
}));
|
|
8410
8416
|
}
|
|
8417
|
+
/**
|
|
8418
|
+
* @description Obtiene los release
|
|
8419
|
+
* @param tipo : release (obtiene el ultimo release del sistema),verificar(verifica si se ejecuto el ultimo release)
|
|
8420
|
+
* @param sistema : sistema
|
|
8421
|
+
* @param seccion : tipo 'RELEASE'
|
|
8422
|
+
* @returns string
|
|
8423
|
+
* @author Dimaly Crespo
|
|
8424
|
+
* @date 21-06-2024
|
|
8425
|
+
*/
|
|
8426
|
+
getVerificarRelease(tipo, sistema, seccion = null) {
|
|
8427
|
+
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; }));
|
|
8428
|
+
}
|
|
8411
8429
|
}
|
|
8412
8430
|
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 });
|
|
8413
8431
|
SigespService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SigespService, providedIn: 'root' });
|