sigesp 1.1.74-20251013 → 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/MConfiguracionSNO.model.mjs +3 -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 +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 +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
|
@@ -4500,6 +4500,8 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4500
4500
|
this.denominacionTipoDocumentoAnticipo = I.dentipdoc_ant;
|
|
4501
4501
|
this.idConceptoAnticipo = +I.id_concxp_ant;
|
|
4502
4502
|
this.denominacionConceptoAnticipo = I.denconcxp_ant;
|
|
4503
|
+
this.cuentaContableInteresGenerica = I.sc_cuenta_int_gen;
|
|
4504
|
+
this.cuentaContableFideicomisoGenerica = I.sc_cuenta_fid_gen;
|
|
4503
4505
|
}
|
|
4504
4506
|
else {
|
|
4505
4507
|
this.isNew = true;
|
|
@@ -4872,6 +4874,9 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4872
4874
|
this.contabilizacionAporteNomina = 'CCP';
|
|
4873
4875
|
this.tipoDocumentoAporte = 0;
|
|
4874
4876
|
this.denominacionTipoDocumentoAporte = '';
|
|
4877
|
+
this.idConceptoMovimiento = 0;
|
|
4878
|
+
this.codigoConceptoMovimiento = '';
|
|
4879
|
+
this.denominacionConceptoMovimiento = '';
|
|
4875
4880
|
if (e) {
|
|
4876
4881
|
this.idEnterprise = +e.id_enterprise;
|
|
4877
4882
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -4929,6 +4934,9 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4929
4934
|
this.idConceptoClasificacionParaAporte = parseInt(e.id_concxpapo);
|
|
4930
4935
|
this.contabilizacionAporteNomina = e.conaponom;
|
|
4931
4936
|
this.tipoDocumentoAporte = parseInt(e.tipdocapo);
|
|
4937
|
+
this.idConceptoMovimiento = +e.id_conmov;
|
|
4938
|
+
this.codigoConceptoMovimiento = e.codconmov;
|
|
4939
|
+
this.denominacionConceptoMovimiento = e.denconmov;
|
|
4932
4940
|
}
|
|
4933
4941
|
else {
|
|
4934
4942
|
this.isNew = true;
|
|
@@ -4992,6 +5000,7 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4992
5000
|
id_concxpapo: this.idConceptoClasificacionParaAporte.toString(),
|
|
4993
5001
|
conaponom: this.contabilizacionAporteNomina,
|
|
4994
5002
|
tipdocapo: this.tipoDocumentoAporte.toString(),
|
|
5003
|
+
id_conmov: this.idConceptoMovimiento.toString(),
|
|
4995
5004
|
};
|
|
4996
5005
|
}
|
|
4997
5006
|
getPeriodoNomina() {
|
|
@@ -12072,6 +12081,9 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12072
12081
|
this.codigoTipoPersonal = '';
|
|
12073
12082
|
this.denominacionTipoPersonal = '';
|
|
12074
12083
|
this.formulaFideicomiso = 'xxx';
|
|
12084
|
+
this.cuentaInteres = '';
|
|
12085
|
+
this.denominacionCuentaFideicomiso = '';
|
|
12086
|
+
this.denominacionCuentainteres = '';
|
|
12075
12087
|
if (e) {
|
|
12076
12088
|
this.idEnterprise = +e.id_enterprise;
|
|
12077
12089
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -12087,6 +12099,9 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12087
12099
|
this.denominacionTipoPersonal = e.dentipper;
|
|
12088
12100
|
this.idFideicomisoConfiguracion = parseInt(e.id_fidconfig);
|
|
12089
12101
|
this.formulaFideicomiso = e.forfid;
|
|
12102
|
+
this.cuentaInteres = e.cueint;
|
|
12103
|
+
this.denominacionCuentaFideicomiso = e.cuefid;
|
|
12104
|
+
this.denominacionCuentainteres = e.cueint;
|
|
12090
12105
|
}
|
|
12091
12106
|
else {
|
|
12092
12107
|
this.isNew = true;
|
|
@@ -12104,6 +12119,7 @@ class MConfiguracionFideicomiso extends MBasicModel {
|
|
|
12104
12119
|
diabonfinfid: this.diasBonoFinAnio.toString(),
|
|
12105
12120
|
cuefid: this.cuentaFideicomiso,
|
|
12106
12121
|
forfid: this.formulaFideicomiso,
|
|
12122
|
+
cueint: this.cuentaInteres,
|
|
12107
12123
|
};
|
|
12108
12124
|
}
|
|
12109
12125
|
}
|