sigesp 1.1.66-20250906 → 1.1.67-20250906

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.
@@ -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
  }