sigesp 1.1.73-20251013 → 1.1.75-20251014
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/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +12 -2
- package/fesm2015/sigesp.mjs +11 -1
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +11 -1
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -1
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +3 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -4404,6 +4404,9 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4404
4404
|
this.destinoBeneficiarioInteres = '';
|
|
4405
4405
|
this.cuentaContableInteresGenerica = '';
|
|
4406
4406
|
this.cuentaContableFideicomisoGenerica = '';
|
|
4407
|
+
this.idConceptoAnticipo = 0;
|
|
4408
|
+
this.denominacionConceptoAnticipo = '';
|
|
4409
|
+
this.denominacionTipoDocumentoAnticipo = '';
|
|
4407
4410
|
if (I) {
|
|
4408
4411
|
this.idEnterprise = +I.id_enterprise;
|
|
4409
4412
|
this.idEmpresa = +I.id_empresa;
|
|
@@ -4494,6 +4497,11 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4494
4497
|
this.rifBeneficiarioInteres = I.rifpro_int;
|
|
4495
4498
|
this.nombreBeneficiariInteres = I.nompro_int;
|
|
4496
4499
|
this.destinoBeneficiarioInteres = I.tipdes_int;
|
|
4500
|
+
this.denominacionTipoDocumentoAnticipo = I.dentipdoc_ant;
|
|
4501
|
+
this.idConceptoAnticipo = +I.id_concxp_ant;
|
|
4502
|
+
this.denominacionConceptoAnticipo = I.denconcxp_ant;
|
|
4503
|
+
this.cuentaContableInteresGenerica = I.sc_cuenta_int_gen;
|
|
4504
|
+
this.cuentaContableFideicomisoGenerica = I.sc_cuenta_fid_gen;
|
|
4497
4505
|
}
|
|
4498
4506
|
else {
|
|
4499
4507
|
this.isNew = true;
|
|
@@ -4576,7 +4584,6 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4576
4584
|
altvoldat: this.altoVolumenDatos.toString(),
|
|
4577
4585
|
horjorlab: this.horasJornadaLaboral.toString(),
|
|
4578
4586
|
regcaninc: this.registroCantidadProducidaIncidencia,
|
|
4579
|
-
genrecdocpresoc: '0',
|
|
4580
4587
|
tipconps: this.tipoContabilizacionPrestacion,
|
|
4581
4588
|
id_tipdocpresoc: this.idTipoDocumentoPrestacion.toString(),
|
|
4582
4589
|
id_beneficiario: this.idBeneficiarioPrestaciones.toString(),
|
|
@@ -4593,6 +4600,9 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4593
4600
|
id_proveedor_int: this.idBeneficiarioInteres.toString(),
|
|
4594
4601
|
sc_cuenta_int_gen: this.cuentaContableInteresGenerica,
|
|
4595
4602
|
sc_cuenta_fid_gen: this.cuentaContableFideicomisoGenerica,
|
|
4603
|
+
id_concxp_ant: this.idConceptoAnticipo.toString(),
|
|
4604
|
+
denconcxp_ant: this.denominacionConceptoAnticipo,
|
|
4605
|
+
dentipdoc_ant: this.denominacionTipoDocumentoAnticipo,
|
|
4596
4606
|
};
|
|
4597
4607
|
}
|
|
4598
4608
|
}
|