sigesp 0.9.66-20230914 → 0.9.67-20230914
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 +10 -1
- 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/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +5 -2
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +7 -1
- package/fesm2015/sigesp.js +10 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +2 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -4204,6 +4204,8 @@
|
|
|
4204
4204
|
_this.registroDescansoIncidencia = 'C00';
|
|
4205
4205
|
_this.registroLaboralIncidencia = 'C00';
|
|
4206
4206
|
_this.codigoConceptoVaccaiones = '';
|
|
4207
|
+
_this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = 1;
|
|
4208
|
+
_this.cuentaContableProveedorBeneficiario = '';
|
|
4207
4209
|
if (I) {
|
|
4208
4210
|
_this.idEnterprise = +I.id_enterprise;
|
|
4209
4211
|
_this.idEmpresa = +I.id_empresa;
|
|
@@ -4341,6 +4343,8 @@
|
|
|
4341
4343
|
_this.registroDescansoIncidencia = I.regdesinc;
|
|
4342
4344
|
_this.registroLaboralIncidencia = I.reglabinc;
|
|
4343
4345
|
_this.segmentarPersonal = parseInt(I.segper);
|
|
4346
|
+
_this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios = parseInt(I.incbenperautmodben);
|
|
4347
|
+
_this.cuentaContableProveedorBeneficiario = I.sc_cuentarecdoc;
|
|
4344
4348
|
}
|
|
4345
4349
|
else {
|
|
4346
4350
|
_this.isNew = true;
|
|
@@ -4481,6 +4485,8 @@
|
|
|
4481
4485
|
segper: this.segmentarPersonal.toString(),
|
|
4482
4486
|
regdesinc: this.registroDescansoIncidencia,
|
|
4483
4487
|
reglabinc: this.registroLaboralIncidencia,
|
|
4488
|
+
incbenperautmodben: this.incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios ? '1' : '0',
|
|
4489
|
+
sc_cuentarecdoc: this.cuentaContableProveedorBeneficiario
|
|
4484
4490
|
};
|
|
4485
4491
|
};
|
|
4486
4492
|
return MConfiguracionSNO;
|
|
@@ -9380,6 +9386,7 @@
|
|
|
9380
9386
|
_this.descripcionEstado = '';
|
|
9381
9387
|
_this.descripcionMunicipio = '';
|
|
9382
9388
|
_this.descripcionParroquia = '';
|
|
9389
|
+
_this.cuentaPagoProveedores = '';
|
|
9383
9390
|
if (e) {
|
|
9384
9391
|
_this.idEnterprise = +e.id_enterprise;
|
|
9385
9392
|
_this.idEmpresa = +e.id_empresa;
|
|
@@ -9420,6 +9427,7 @@
|
|
|
9420
9427
|
_this.descripcionMunicipio = e.desmun;
|
|
9421
9428
|
_this.descripcionParroquia = e.despar;
|
|
9422
9429
|
_this.idDtBeneficiario = +e.id_dt_ben;
|
|
9430
|
+
_this.cuentaPagoProveedores = e.sc_cuentarecdoc;
|
|
9423
9431
|
}
|
|
9424
9432
|
else {
|
|
9425
9433
|
_this.isNew = true;
|
|
@@ -9459,7 +9467,8 @@
|
|
|
9459
9467
|
nomfam: this.nombreFamiliar,
|
|
9460
9468
|
cedpro: this.cedulaAutorizado,
|
|
9461
9469
|
nompro: this.cedulaAutorizado,
|
|
9462
|
-
id_dt_ben: this.idDtBeneficiario.toString()
|
|
9470
|
+
id_dt_ben: this.idDtBeneficiario.toString(),
|
|
9471
|
+
sc_cuentarecdoc: this.cuentaPagoProveedores
|
|
9463
9472
|
};
|
|
9464
9473
|
};
|
|
9465
9474
|
return MBeneficiario;
|