sigesp 1.1.58-20250723 → 1.1.59-20250729
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/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MMetodoBanco.model.mjs +7 -1
- package/fesm2015/sigesp.mjs +6 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +6 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -1
- package/lib/core/models/SNO/MMetodoBanco.model.d.ts +2 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -13900,6 +13900,8 @@ class MMetodoBanco extends MBasicModel {
|
|
|
13900
13900
|
this.numeroReferencia = 0;
|
|
13901
13901
|
this.numeroConvenio = '';
|
|
13902
13902
|
this.activo = 0;
|
|
13903
|
+
this.nombreEmpresa = '';
|
|
13904
|
+
this.rifEmpresa = '';
|
|
13903
13905
|
if (e) {
|
|
13904
13906
|
this.idEnterprise = +e.id_enterprise;
|
|
13905
13907
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -13916,6 +13918,8 @@ class MMetodoBanco extends MBasicModel {
|
|
|
13916
13918
|
this.numeroReferencia = parseInt(e.nroref);
|
|
13917
13919
|
this.activo = parseInt(e.activo);
|
|
13918
13920
|
this.numeroConvenio = e.numconnom;
|
|
13921
|
+
this.nombreEmpresa = e.nomemp;
|
|
13922
|
+
this.rifEmpresa = e.rifemp;
|
|
13919
13923
|
}
|
|
13920
13924
|
else {
|
|
13921
13925
|
this.isNew = true;
|
|
@@ -13938,6 +13942,8 @@ class MMetodoBanco extends MBasicModel {
|
|
|
13938
13942
|
nroref: this.numeroReferencia.toString(),
|
|
13939
13943
|
activo: this.activo.toString(),
|
|
13940
13944
|
numconnom: this.numeroConvenio,
|
|
13945
|
+
nomemp: this.nombreEmpresa,
|
|
13946
|
+
rifemp: this.rifEmpresa,
|
|
13941
13947
|
};
|
|
13942
13948
|
}
|
|
13943
13949
|
}
|