sigesp 0.8.68-220203 → 0.8.69-220214
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 +3 -4
- 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/app/app.module.js +1 -1
- package/esm2015/lib/core/interfaces/Nomina.js +1 -1
- package/esm2015/lib/core/models/SNO/MDefinicionNomina.model.js +6 -7
- package/esm2015/lib/core/models/SNO/MPeriodoNomina.model.js +1 -1
- package/esm2015/lib/validation.service.js +1 -1
- package/fesm2015/sigesp.js +3 -4
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +3 -2
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -3668,6 +3668,7 @@
|
|
|
3668
3668
|
_this.denominacionCuentaContable = '';
|
|
3669
3669
|
_this.idPeriodoNomina = 0;
|
|
3670
3670
|
_this.idPeriodoRestablecerNomina = 0;
|
|
3671
|
+
_this.estatusIncidencia = 0;
|
|
3671
3672
|
_this.periodosNomina = [];
|
|
3672
3673
|
if (e) {
|
|
3673
3674
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
@@ -3729,6 +3730,7 @@
|
|
|
3729
3730
|
_this.denominacionCodigoFuenteFinanciamiento = e.codigoftefin + ' - ' + e.denfuefin;
|
|
3730
3731
|
_this.denominacionCuentaContable = e.denctacont;
|
|
3731
3732
|
_this.nombreProveedor = e.nompro;
|
|
3733
|
+
_this.estatusIncidencia = parseInt(e.estincidencia);
|
|
3732
3734
|
_this.periodosNomina = e.periodos.map(function (e) { return new MPeriodoNomina(e); });
|
|
3733
3735
|
_this.idPeriodoNomina = parseInt(e.id_periodoactual);
|
|
3734
3736
|
_this.idPeriodoRestablecerNomina = parseInt(e.id_perresnom);
|
|
@@ -3804,6 +3806,7 @@
|
|
|
3804
3806
|
nompro: this.nombreProveedor,
|
|
3805
3807
|
id_periodoactual: this.idPeriodoNomina.toString(),
|
|
3806
3808
|
id_perresnom: this.idPeriodoRestablecerNomina.toString(),
|
|
3809
|
+
estincidencia: this.estatusIncidencia.toString(),
|
|
3807
3810
|
periodos: this.periodosNomina.map((function (e) { return e.dataInterface(); })),
|
|
3808
3811
|
};
|
|
3809
3812
|
};
|
|
@@ -3847,10 +3850,6 @@
|
|
|
3847
3850
|
var _this = this;
|
|
3848
3851
|
return this.periodosNomina.findIndex(function (e) { return e.codigoPeriodo == _this.periodoActualNomina; });
|
|
3849
3852
|
};
|
|
3850
|
-
// public idPeriodoActual():number{
|
|
3851
|
-
// let i = this.indice();
|
|
3852
|
-
// return this.periodosNomina[i].idPeriodo;
|
|
3853
|
-
// }
|
|
3854
3853
|
/**
|
|
3855
3854
|
* @returns Fecha final de la nomina
|
|
3856
3855
|
*/
|