sigesp 1.0.16-20240818 → 1.0.17-20240820
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/Constantes.mjs +1 -1
- package/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MDefinicionNomina.model.mjs +6 -2
- package/fesm2015/sigesp.mjs +4 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +4 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Constantes.d.ts +2 -0
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -4744,6 +4744,9 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4744
4744
|
if (e.periodos) {
|
|
4745
4745
|
this.periodosNomina = e.periodos.map(e => new MPeriodoNomina(e));
|
|
4746
4746
|
}
|
|
4747
|
+
if (e.procesos) {
|
|
4748
|
+
this.procesosNomina = e.procesos.map(e => new MProcesosNomina(e));
|
|
4749
|
+
}
|
|
4747
4750
|
this.idPeriodoNomina = parseInt(e.id_periodoactual);
|
|
4748
4751
|
this.idPeriodoRestablecerNomina = parseInt(e.id_perresnom);
|
|
4749
4752
|
this.idUnidadAdministradora = +e.id_uniadm;
|
|
@@ -4814,6 +4817,7 @@ class MDefinicionNomina extends MBasicModel {
|
|
|
4814
4817
|
segper: this.segmentarPersonal.toString(),
|
|
4815
4818
|
id_uniadm: this.idUnidadAdministradora.toString(),
|
|
4816
4819
|
periodos: this.periodosNomina.map((function (e) { return e.dataInterface(); })),
|
|
4820
|
+
procesos: this.procesosNomina.map((function (e) { return e.dataInterface(); })),
|
|
4817
4821
|
};
|
|
4818
4822
|
}
|
|
4819
4823
|
getPeriodoNomina() {
|