sigesp 1.1.50-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 +19 -3
- package/fesm2015/sigesp.mjs +18 -2
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +18 -2
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +8 -1
- 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;
|
|
@@ -10452,10 +10458,17 @@ class MConceptosNomina extends MBasicModel {
|
|
|
10452
10458
|
this.idFuenteFinanciamiento = +e.id_fuefin;
|
|
10453
10459
|
this.denominacionFueteFinanciamiento = e.denfuefin;
|
|
10454
10460
|
this.codigoFueteFinanciamiento = e.codigoftefin;
|
|
10455
|
-
this.idConceptoClasificacionParaAporte = parseInt(e.id_concxpapo);
|
|
10456
10461
|
this.contabilizacionAporteNomina = e.conaponom;
|
|
10462
|
+
this.idConceptoClasificacionParaAporte = parseInt(e.id_concxpapo);
|
|
10457
10463
|
this.idTipoDocumentoAporte = parseInt(e.id_tipodocumento);
|
|
10458
10464
|
this.denominacionTipoDocumentoAporte = e.dentipden;
|
|
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;
|
|
10459
10472
|
}
|
|
10460
10473
|
else {
|
|
10461
10474
|
this.isNew = true;
|
|
@@ -10522,8 +10535,11 @@ class MConceptosNomina extends MBasicModel {
|
|
|
10522
10535
|
id_fuefin: this.idFuenteFinanciamiento.toString(),
|
|
10523
10536
|
id_concxpapo: this.idConceptoClasificacionParaAporte.toString(),
|
|
10524
10537
|
id_tipodocumento: this.idTipoDocumentoAporte.toString(),
|
|
10525
|
-
dentipden: this.denominacionTipoDocumentoAporte,
|
|
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) {
|