sigesp 0.8.87-20220519 → 0.8.88-20220524
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/bundles/sigesp.umd.js +7 -5
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Auditoria.js +4 -3
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/core/models/SNO/MAuditoria.model.js +4 -4
- package/esm2015/lib/core/models/SSS/user.model.js +2 -1
- package/fesm2015/sigesp.js +7 -5
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Auditoria.d.ts +1 -1
- package/lib/core/interfaces/Usuario.d.ts +1 -0
- package/lib/core/models/SNO/MAuditoria.model.d.ts +1 -1
- package/lib/core/models/SSS/user.model.d.ts +1 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -775,6 +775,7 @@
|
|
|
775
775
|
this.interface = user;
|
|
776
776
|
this.nomina = parseInt(user.nomina);
|
|
777
777
|
this.periodo = parseInt(user.periodo);
|
|
778
|
+
this.carpeta = user.carpeta;
|
|
778
779
|
}
|
|
779
780
|
MUsuario.prototype.getInterface = function () {
|
|
780
781
|
return this.interface;
|
|
@@ -12536,9 +12537,10 @@
|
|
|
12536
12537
|
{ value: "codgra", denominacion: "codigoGrado" },
|
|
12537
12538
|
{ value: "codpas", denominacion: "codigoPaso" },
|
|
12538
12539
|
{ value: "id_ubifis", denominacion: "idUbicacionFisica" },
|
|
12540
|
+
{ value: "id_trabajoant", denominacion: "idTrabajoAnterior" },
|
|
12539
12541
|
{ value: "emptraant", denominacion: "empresaTrabajoAnterior" },
|
|
12540
|
-
{ value: "ultcartraant", denominacion: "
|
|
12541
|
-
{ value: "ultsuetraant", denominacion: "
|
|
12542
|
+
{ value: "ultcartraant", denominacion: "ultimoCargoTrabajoAnterior" },
|
|
12543
|
+
{ value: "ultsuetraant", denominacion: "ultimaSueldoTrabajoAnterior" },
|
|
12542
12544
|
{ value: "fecingtraant", denominacion: "fechaIngresoTrabajoAnterior" },
|
|
12543
12545
|
{ value: "fecrettraant", denominacion: "fechaRetiroTrabajoAnterior" },
|
|
12544
12546
|
{ value: "emppubtraant", denominacion: "empresaPublicaTrabajoAnterior" },
|
|
@@ -12567,7 +12569,7 @@
|
|
|
12567
12569
|
_this.idEmpresa = 0;
|
|
12568
12570
|
_this.idPersonal = 0;
|
|
12569
12571
|
_this.idAuditoriaPersonal = 0;
|
|
12570
|
-
_this.
|
|
12572
|
+
_this.idRegistro = 0;
|
|
12571
12573
|
_this.fecha = "1900-01-01";
|
|
12572
12574
|
_this.hora = "";
|
|
12573
12575
|
_this.campo = "";
|
|
@@ -12581,7 +12583,7 @@
|
|
|
12581
12583
|
_this.idEmpresa = +e.id_empresa;
|
|
12582
12584
|
_this.idPersonal = +e.id_personal;
|
|
12583
12585
|
_this.idAuditoriaPersonal = +e.id_auditoria_personal;
|
|
12584
|
-
_this.
|
|
12586
|
+
_this.idRegistro = +e.id_registro;
|
|
12585
12587
|
_this.fecha = e.fecha;
|
|
12586
12588
|
_this.hora = e.hora;
|
|
12587
12589
|
_this.campo = e.campo;
|
|
@@ -12602,7 +12604,7 @@
|
|
|
12602
12604
|
id_empresa: this.idEmpresa.toString(),
|
|
12603
12605
|
id_personal: this.idPersonal.toString(),
|
|
12604
12606
|
id_auditoria_personal: this.idAuditoriaPersonal.toString(),
|
|
12605
|
-
|
|
12607
|
+
id_registro: this.idRegistro.toString(),
|
|
12606
12608
|
fecha: moment__namespace().format('YYYY-MM-DD'),
|
|
12607
12609
|
hora: moment__namespace().format('h:mm:ss a'),
|
|
12608
12610
|
campo: this.campoPermitido.find(function (e) { return e.denominacion == _this.campo; }).value,
|