sigesp 1.1.75-20251014 → 1.1.77-20251112
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/MDefinicionNomina.model.mjs +8 -1
- package/esm2020/lib/core/models/SNO/MFideicomiso.model.mjs +8 -1
- package/fesm2015/sigesp.mjs +14 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +14 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +3 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -0
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +3 -0
- package/lib/core/models/SNO/MFideicomiso.model.d.ts +3 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -4874,6 +4874,9 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4874
4874
|
this.contabilizacionAporteNomina = 'CCP';
|
|
4875
4875
|
this.tipoDocumentoAporte = 0;
|
|
4876
4876
|
this.denominacionTipoDocumentoAporte = '';
|
|
4877
|
+
this.idConceptoMovimiento = 0;
|
|
4878
|
+
this.codigoConceptoMovimiento = '';
|
|
4879
|
+
this.denominacionConceptoMovimiento = '';
|
|
4877
4880
|
if (e) {
|
|
4878
4881
|
this.idEnterprise = +e.id_enterprise;
|
|
4879
4882
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -4931,6 +4934,9 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4931
4934
|
this.idConceptoClasificacionParaAporte = parseInt(e.id_concxpapo);
|
|
4932
4935
|
this.contabilizacionAporteNomina = e.conaponom;
|
|
4933
4936
|
this.tipoDocumentoAporte = parseInt(e.tipdocapo);
|
|
4937
|
+
this.idConceptoMovimiento = +e.id_conmov;
|
|
4938
|
+
this.codigoConceptoMovimiento = e.codconmov;
|
|
4939
|
+
this.denominacionConceptoMovimiento = e.denconmov;
|
|
4934
4940
|
}
|
|
4935
4941
|
else {
|
|
4936
4942
|
this.isNew = true;
|
|
@@ -4994,6 +5000,7 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4994
5000
|
id_concxpapo: this.idConceptoClasificacionParaAporte.toString(),
|
|
4995
5001
|
conaponom: this.contabilizacionAporteNomina,
|
|
4996
5002
|
tipdocapo: this.tipoDocumentoAporte.toString(),
|
|
5003
|
+
id_conmov: this.idConceptoMovimiento.toString(),
|
|
4997
5004
|
};
|
|
4998
5005
|
}
|
|
4999
5006
|
getPeriodoNomina() {
|
|
@@ -12074,6 +12081,9 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12074
12081
|
this.codigoTipoPersonal = '';
|
|
12075
12082
|
this.denominacionTipoPersonal = '';
|
|
12076
12083
|
this.formulaFideicomiso = 'xxx';
|
|
12084
|
+
this.cuentaInteres = '';
|
|
12085
|
+
this.denominacionCuentaFideicomiso = '';
|
|
12086
|
+
this.denominacionCuentainteres = '';
|
|
12077
12087
|
if (e) {
|
|
12078
12088
|
this.idEnterprise = +e.id_enterprise;
|
|
12079
12089
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -12089,6 +12099,9 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12089
12099
|
this.denominacionTipoPersonal = e.dentipper;
|
|
12090
12100
|
this.idFideicomisoConfiguracion = parseInt(e.id_fidconfig);
|
|
12091
12101
|
this.formulaFideicomiso = e.forfid;
|
|
12102
|
+
this.cuentaInteres = e.cueint;
|
|
12103
|
+
this.denominacionCuentaFideicomiso = e.cuefid;
|
|
12104
|
+
this.denominacionCuentainteres = e.cueint;
|
|
12092
12105
|
}
|
|
12093
12106
|
else {
|
|
12094
12107
|
this.isNew = true;
|
|
@@ -12106,6 +12119,7 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12106
12119
|
diabonfinfid: this.diasBonoFinAnio.toString(),
|
|
12107
12120
|
cuefid: this.cuentaFideicomiso,
|
|
12108
12121
|
forfid: this.formulaFideicomiso,
|
|
12122
|
+
cueint: this.cuentaInteres,
|
|
12109
12123
|
};
|
|
12110
12124
|
}
|
|
12111
12125
|
}
|