sigesp 1.1.73-20251013 → 1.1.74-20251013
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 +10 -2
- package/fesm2015/sigesp.mjs +9 -1
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +9 -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,9 @@ 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;
|
|
4497
4503
|
}
|
|
4498
4504
|
else {
|
|
4499
4505
|
this.isNew = true;
|
|
@@ -4576,7 +4582,6 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4576
4582
|
altvoldat: this.altoVolumenDatos.toString(),
|
|
4577
4583
|
horjorlab: this.horasJornadaLaboral.toString(),
|
|
4578
4584
|
regcaninc: this.registroCantidadProducidaIncidencia,
|
|
4579
|
-
genrecdocpresoc: '0',
|
|
4580
4585
|
tipconps: this.tipoContabilizacionPrestacion,
|
|
4581
4586
|
id_tipdocpresoc: this.idTipoDocumentoPrestacion.toString(),
|
|
4582
4587
|
id_beneficiario: this.idBeneficiarioPrestaciones.toString(),
|
|
@@ -4593,6 +4598,9 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4593
4598
|
id_proveedor_int: this.idBeneficiarioInteres.toString(),
|
|
4594
4599
|
sc_cuenta_int_gen: this.cuentaContableInteresGenerica,
|
|
4595
4600
|
sc_cuenta_fid_gen: this.cuentaContableFideicomisoGenerica,
|
|
4601
|
+
id_concxp_ant: this.idConceptoAnticipo.toString(),
|
|
4602
|
+
denconcxp_ant: this.denominacionConceptoAnticipo,
|
|
4603
|
+
dentipdoc_ant: this.denominacionTipoDocumentoAnticipo,
|
|
4596
4604
|
};
|
|
4597
4605
|
}
|
|
4598
4606
|
}
|