sigesp 1.1.51-20250612 → 1.1.53-20250619
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/models/SNO/MConceptosNomina.model.mjs +17 -1
- package/fesm2015/sigesp.mjs +16 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +16 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +6 -0
- package/lib/core/models/SNO/MConceptosNomina.model.d.ts +6 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -10383,6 +10383,12 @@ class MConceptosNomina extends MBasicModel {
|
|
|
10383
10383
|
this.contabilizacionAporteNomina = 'CCP';
|
|
10384
10384
|
this.idTipoDocumentoAporte = 0;
|
|
10385
10385
|
this.denominacionTipoDocumentoAporte = '';
|
|
10386
|
+
this.idConceptoClasificacionParaDeduccion = 0;
|
|
10387
|
+
this.idTipoDocumentoDeduccion = 0;
|
|
10388
|
+
this.denominacionConceptoClasificacionParaDeduccion = '';
|
|
10389
|
+
this.denominacionTipoDocumentoDeduccion = '';
|
|
10390
|
+
this.contabilizacionDeduccionNomina = 'CCP';
|
|
10391
|
+
this.agruparAporteRetencion = false;
|
|
10386
10392
|
if (e) {
|
|
10387
10393
|
this.idEnterprise = +e.id_enterprise;
|
|
10388
10394
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -10457,6 +10463,12 @@ class MConceptosNomina extends MBasicModel {
|
|
|
10457
10463
|
this.idTipoDocumentoAporte = parseInt(e.id_tipodocumento);
|
|
10458
10464
|
this.denominacionTipoDocumentoAporte = e.dentipden;
|
|
10459
10465
|
this.denominacionConceptoClasificacionParaAporte = e.denconcxp;
|
|
10466
|
+
this.idConceptoClasificacionParaDeduccion = +e.id_concxpded;
|
|
10467
|
+
this.idTipoDocumentoDeduccion = +e.id_tipodocumento_ded;
|
|
10468
|
+
this.denominacionConceptoClasificacionParaDeduccion = e.denconcxpded;
|
|
10469
|
+
this.denominacionTipoDocumentoDeduccion = e.dentipded;
|
|
10470
|
+
this.contabilizacionDeduccionNomina = e.condednom;
|
|
10471
|
+
e.agraporet == '1' ? this.agruparAporteRetencion = true : this.agruparAporteRetencion = false;
|
|
10460
10472
|
}
|
|
10461
10473
|
else {
|
|
10462
10474
|
this.isNew = true;
|
|
@@ -10524,6 +10536,10 @@ class MConceptosNomina extends MBasicModel {
|
|
|
10524
10536
|
id_concxpapo: this.idConceptoClasificacionParaAporte.toString(),
|
|
10525
10537
|
id_tipodocumento: this.idTipoDocumentoAporte.toString(),
|
|
10526
10538
|
conaponom: this.contabilizacionAporteNomina,
|
|
10539
|
+
id_concxpded: this.idConceptoClasificacionParaDeduccion.toString(),
|
|
10540
|
+
id_tipodocumento_ded: this.idTipoDocumentoDeduccion.toString(),
|
|
10541
|
+
agraporet: this.agruparAporteRetencion ? '1' : '0',
|
|
10542
|
+
condednom: this.contabilizacionDeduccionNomina
|
|
10527
10543
|
};
|
|
10528
10544
|
}
|
|
10529
10545
|
denominacionSigno(sig) {
|