sigesp 1.0.5-20240423 → 1.0.7-20240507

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.
@@ -7437,8 +7437,8 @@ class SigespService {
7437
7437
  }
7438
7438
  });
7439
7439
  }
7440
- getUnidadAdministrativa(tipo) {
7441
- return this.http.get(`${this.URL}/dao/spg/unidad_administrativa_dao.php?tipo=${tipo}`, { headers: this.getHttpHeaders() })
7440
+ getUnidadAdministrativa(tipo, e) {
7441
+ return this.http.get(`${this.URL}/dao/spg/unidad_administrativa_dao.php?tipo=${tipo}&e=${e}`, { headers: this.getHttpHeaders() })
7442
7442
  .pipe(map((res) => {
7443
7443
  if (res.success) {
7444
7444
  res.data = res.data.map(e => new MAdministrativeUnit(e));
@@ -10077,7 +10077,6 @@ class MConceptosNomina extends MBasicModel {
10077
10077
  this.codigoUnidadAdministrativa = '';
10078
10078
  this.denominacionUnidadAdministraiva = '';
10079
10079
  this.perteneceBeneficiario = 0;
10080
- this.perteneceFallecido = 0;
10081
10080
  if (e) {
10082
10081
  this.idEnterprise = +e.id_enterprise;
10083
10082
  this.idEmpresa = +e.id_empresa;
@@ -10154,7 +10153,6 @@ class MConceptosNomina extends MBasicModel {
10154
10153
  this.denominacionUnidadAdministraiva = e.denuniadm;
10155
10154
  this.estructuraProgramatica = e.estructura;
10156
10155
  this.perteneceBeneficiario = +e.perben;
10157
- this.perteneceBeneficiario = +e.perfal;
10158
10156
  }
10159
10157
  else {
10160
10158
  this.isNew = true;
@@ -10227,7 +10225,6 @@ class MConceptosNomina extends MBasicModel {
10227
10225
  antigcomp: this.antiguedadComplementaria.toString(),
10228
10226
  id_uniadm: this.idUnidadAdministrativa.toString(),
10229
10227
  perben: this.perteneceBeneficiario.toString(),
10230
- perfal: this.perteneceFallecido.toString(),
10231
10228
  };
10232
10229
  }
10233
10230
  denominacionSigno(sig) {