sigesp 0.9.44-23230418 → 0.9.45-23230426

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.
@@ -6911,6 +6911,12 @@ class SigespService {
6911
6911
  return res;
6912
6912
  }));
6913
6913
  }
6914
+ /**
6915
+ * @description obtiene las cuenta segun el id
6916
+ * @param tipo {'banco', 'default'}
6917
+ * @param id para la opcion banco usar id=idBanco, opcion defaulf id=idEnterprise
6918
+ * @returns
6919
+ */
6914
6920
  getAllBankAccount(tipo, id) {
6915
6921
  return this.http.get(`${this.URL}/dao/scb/cuenta_banco_dao.php?tipo=${tipo}&e=${id}`, { headers: this.getHttpHeaders() })
6916
6922
  .pipe(map((res) => {
@@ -8549,7 +8555,7 @@ class MCargosPersonal extends MBasicModel {
8549
8555
  this.codigoTabulador = p.codtab;
8550
8556
  this.denominacionTabulador = p.destab;
8551
8557
  this.idPersonalCargo = parseInt(p.id_personalcargo);
8552
- this.montoSalarioGrado = parseFloat(p.moncomgra);
8558
+ this.montoSalarioGrado = parseFloat(p.monsalgra);
8553
8559
  this.montoCompensacionGrado = parseFloat(p.moncomgra);
8554
8560
  this.estatusMPPPE = p.estmpppe == '1' ? true : false;
8555
8561
  this.idClasificadorDocente = +p.id_clasificacion_docente;