sigesp 1.1.66-20250906 → 1.1.68-20250910
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/MCargosPersonal.model.mjs +25 -1
- package/esm2020/lib/core/models/SNO/MMetodoBanco.model.mjs +3 -1
- package/fesm2015/sigesp.mjs +26 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +26 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +12 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +12 -0
- package/lib/core/models/SNO/MMetodoBanco.model.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -10118,6 +10118,18 @@ class MCargosPersonal extends MBasicModel {
|
|
|
10118
10118
|
this.idPuestoTrabajo = 0;
|
|
10119
10119
|
this.codigoPuestoTrabajo = '';
|
|
10120
10120
|
this.descripcionPuestoTrabajo = '';
|
|
10121
|
+
this.codigoUnidadOrganizativa = '';
|
|
10122
|
+
this.denominacionUnidadOrganizativa = '';
|
|
10123
|
+
this.codigoCentroCosto = '';
|
|
10124
|
+
this.denominacionCentroCosto = '';
|
|
10125
|
+
this.estructura = '';
|
|
10126
|
+
this.idUnidadAdministrativa = 0;
|
|
10127
|
+
this.idCentroCosto = 0;
|
|
10128
|
+
this.idEp1 = 0;
|
|
10129
|
+
this.idEp2 = 0;
|
|
10130
|
+
this.idEp3 = 0;
|
|
10131
|
+
this.idEp4 = 0;
|
|
10132
|
+
this.idEp5 = 0;
|
|
10121
10133
|
if (p) {
|
|
10122
10134
|
this.idEnterprise = +p.id_enterprise;
|
|
10123
10135
|
this.idEmpresa = +p.id_empresa;
|
|
@@ -10157,6 +10169,18 @@ class MCargosPersonal extends MBasicModel {
|
|
|
10157
10169
|
this.estatus ? this.denominacionEstatus = 'ACTIVO' : this.denominacionEstatus = 'INACTIVO';
|
|
10158
10170
|
this.descripcionPuestoTrabajo = p.despuetra;
|
|
10159
10171
|
this.codigoPuestoTrabajo = p.codpuetra;
|
|
10172
|
+
this.codigoUnidadOrganizativa = p.coduniadm;
|
|
10173
|
+
this.denominacionUnidadOrganizativa = p.denuniadm;
|
|
10174
|
+
this.codigoCentroCosto = p.codcencos;
|
|
10175
|
+
this.denominacionCentroCosto = p.dencescos;
|
|
10176
|
+
this.estructura = p.estructura;
|
|
10177
|
+
this.idUnidadAdministrativa = +p.id_uniadm;
|
|
10178
|
+
this.idCentroCosto = +p.id_cencos;
|
|
10179
|
+
this.idEp1 = +p.id_ep1;
|
|
10180
|
+
this.idEp2 = +p.id_ep2;
|
|
10181
|
+
this.idEp3 = +p.id_ep3;
|
|
10182
|
+
this.idEp4 = +p.id_ep4;
|
|
10183
|
+
this.idEp5 = +p.id_ep5;
|
|
10160
10184
|
if (p.detalles_nomina) {
|
|
10161
10185
|
this.detallesNomina = p.detalles_nomina.map(e => new MNominaSimple(e));
|
|
10162
10186
|
}
|
|
@@ -13975,6 +13999,7 @@ class MMetodoBanco extends MBasicModel {
|
|
|
13975
13999
|
this.numeroConvenio = '';
|
|
13976
14000
|
this.activo = 0;
|
|
13977
14001
|
this.usarRifLinea = 0;
|
|
14002
|
+
this.denominacionTipoMetodo = '';
|
|
13978
14003
|
if (e) {
|
|
13979
14004
|
this.idEnterprise = +e.id_enterprise;
|
|
13980
14005
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -13991,6 +14016,7 @@ class MMetodoBanco extends MBasicModel {
|
|
|
13991
14016
|
this.numeroReferencia = parseInt(e.nroref);
|
|
13992
14017
|
this.activo = parseInt(e.activo);
|
|
13993
14018
|
this.numeroConvenio = e.numconnom;
|
|
14019
|
+
e.tipmet == '0' ? this.denominacionTipoMetodo = 'Nómina (Déposito al Banco)' : this.denominacionTipoMetodo = 'Pago a Proveedores';
|
|
13994
14020
|
}
|
|
13995
14021
|
else {
|
|
13996
14022
|
this.isNew = true;
|