sigesp 0.8.89-20220525 → 0.8.92-202205267

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.
@@ -3950,7 +3950,6 @@
3950
3950
  var MAsignacionCargo = /** @class */ (function (_super) {
3951
3951
  __extends(MAsignacionCargo, _super);
3952
3952
  function MAsignacionCargo(e) {
3953
- if (e === void 0) { e = null; }
3954
3953
  var _this = _super.call(this) || this;
3955
3954
  _this.idEmpresa = 0;
3956
3955
  _this.idAsignacionCargo = 0;
@@ -4226,6 +4225,7 @@
4226
4225
  id_carper: this.idCargo.toString(),
4227
4226
  id_personal: this.idPersonal.toString(),
4228
4227
  id_personalnomina: this.idPersonalNomina.toString(),
4228
+ id_organigrama: this.idOrganigrama.toString(),
4229
4229
  };
4230
4230
  };
4231
4231
  return MNominaSimple;
@@ -8193,7 +8193,6 @@
8193
8193
  var MArchivosTxt = /** @class */ (function (_super) {
8194
8194
  __extends(MArchivosTxt, _super);
8195
8195
  function MArchivosTxt(e) {
8196
- if (e === void 0) { e = null; }
8197
8196
  var _this = _super.call(this) || this;
8198
8197
  _this.idEmpresa = 0;
8199
8198
  _this.idArchivoTxt = 0;
@@ -13088,6 +13087,16 @@
13088
13087
  { value: "tipctapri", denominacion: "tipoCuentaPrincipal" },
13089
13088
  { value: "sueper", denominacion: "sueldoPersonal" },
13090
13089
  { value: "staper", denominacion: "statusPersonal" },
13090
+ { value: "id_ctabanper", denominacion: "idCuentaBancoPersonal" },
13091
+ { value: "id_personalcargo", denominacion: "idPersonalCargo" },
13092
+ { value: "id_dt_carperest", denominacion: "idDtCargoEstructura" },
13093
+ { value: "id_carper", denominacion: "idPersonalCargo" },
13094
+ { value: "id_nomina", denominacion: "idNomina" },
13095
+ { value: "id_personalnomina", denominacion: "idPersonalNomina" },
13096
+ { value: "cedper", denominacion: "cedulaPersonal" },
13097
+ { value: "horper", denominacion: "horaPerersonal" },
13098
+ { value: "horper1", denominacion: "horaAdicional1" },
13099
+ { value: "horper2", denominacion: "horaAdicional2" },
13091
13100
  ];
13092
13101
  var Eventos = [
13093
13102
  { value: "UPDATE" },
@@ -13103,6 +13112,7 @@
13103
13112
  _this.idPersonal = 0;
13104
13113
  _this.idAuditoriaPersonal = 0;
13105
13114
  _this.idRegistro = 0;
13115
+ _this.idNomina = 0;
13106
13116
  _this.fecha = "1900-01-01";
13107
13117
  _this.hora = "";
13108
13118
  _this.campo = "";
@@ -13117,6 +13127,7 @@
13117
13127
  _this.idPersonal = +e.id_personal;
13118
13128
  _this.idAuditoriaPersonal = +e.id_auditoria_personal;
13119
13129
  _this.idRegistro = +e.id_registro;
13130
+ _this.idNomina = +e.id_nomina;
13120
13131
  _this.fecha = e.fecha;
13121
13132
  _this.hora = e.hora;
13122
13133
  _this.campo = e.campo;
@@ -13133,11 +13144,14 @@
13133
13144
  }
13134
13145
  MSnoLog.prototype.dataInteface = function () {
13135
13146
  var _this = this;
13147
+ var obs = '';
13148
+ this.idNomina == 0 ? obs = '' : obs = ' en la nómina:' + this.idNomina;
13136
13149
  return {
13137
13150
  id_empresa: this.idEmpresa.toString(),
13138
13151
  id_personal: this.idPersonal.toString(),
13139
13152
  id_auditoria_personal: this.idAuditoriaPersonal.toString(),
13140
13153
  id_registro: this.idRegistro.toString(),
13154
+ id_nomina: this.idNomina.toString(),
13141
13155
  fecha: moment$1().format('YYYY-MM-DD'),
13142
13156
  hora: moment$1().format('h:mm:ss a'),
13143
13157
  campo: this.campoPermitido.find(function (e) { return e.denominacion == _this.campo; }).value,
@@ -13145,8 +13159,7 @@
13145
13159
  valor_nuevo: this.evento == 'DELETE' ? '-' : this.valorNuevo,
13146
13160
  codusu: this.codigoUsuario,
13147
13161
  evento: this.evento.toUpperCase(),
13148
- observacion: this.evento == 'DELETE' ? "Eliminado el registro relacionado al campo: " + this.campo :
13149
- "Actualizado el registro relacionado al campo: " + this.campo,
13162
+ observacion: this.observacion
13150
13163
  };
13151
13164
  };
13152
13165
  return MSnoLog;