sigesp 0.9.64-20230913 → 0.9.66-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 +19 -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/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +4 -1
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +10 -1
- package/esm2015/lib/core/models/STB/deduction.model.js +8 -2
- package/fesm2015/sigesp.js +19 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +4 -0
- package/lib/core/interfaces/Tributos.d.ts +2 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +3 -0
- package/lib/core/models/STB/deduction.model.d.ts +2 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -3601,6 +3601,8 @@
|
|
|
3601
3601
|
_this.deducible = 0;
|
|
3602
3602
|
_this.tipopers = null;
|
|
3603
3603
|
_this.id_conret = 0;
|
|
3604
|
+
_this.customerRetentionAccount = "";
|
|
3605
|
+
_this.statusCommercial = 0;
|
|
3604
3606
|
if (deduction) {
|
|
3605
3607
|
_this.id = parseInt(deduction.id_deduccion);
|
|
3606
3608
|
_this.idEnterprise = +deduction.id_enterprise;
|
|
@@ -3614,6 +3616,8 @@
|
|
|
3614
3616
|
_this.id_conret = parseFloat(deduction.id_conret);
|
|
3615
3617
|
_this.codeDeduction = deduction.codded;
|
|
3616
3618
|
_this.companyId = parseInt(deduction.id_empresa);
|
|
3619
|
+
_this.customerRetentionAccount = deduction.sc_cuenta_retcli;
|
|
3620
|
+
_this.statusCommercial = +deduction.estdedaplcom;
|
|
3617
3621
|
}
|
|
3618
3622
|
else {
|
|
3619
3623
|
_this.isNew = true;
|
|
@@ -3633,7 +3637,9 @@
|
|
|
3633
3637
|
sc_cuenta: this.account,
|
|
3634
3638
|
deducible: this.deducible.toString(),
|
|
3635
3639
|
tipopers: this.tipopers.toString(),
|
|
3636
|
-
id_conret: this.id_conret.toString()
|
|
3640
|
+
id_conret: this.id_conret.toString(),
|
|
3641
|
+
sc_cuenta_retcli: this.customerRetentionAccount,
|
|
3642
|
+
estdedaplcom: this.statusCommercial.toString(),
|
|
3637
3643
|
};
|
|
3638
3644
|
};
|
|
3639
3645
|
return MDeduction;
|
|
@@ -4195,6 +4201,9 @@
|
|
|
4195
4201
|
_this.descripcionEstado = '';
|
|
4196
4202
|
_this.descripcionMunicipio = '';
|
|
4197
4203
|
_this.descripcionParroquia = '';
|
|
4204
|
+
_this.registroDescansoIncidencia = 'C00';
|
|
4205
|
+
_this.registroLaboralIncidencia = 'C00';
|
|
4206
|
+
_this.codigoConceptoVaccaiones = '';
|
|
4198
4207
|
if (I) {
|
|
4199
4208
|
_this.idEnterprise = +I.id_enterprise;
|
|
4200
4209
|
_this.idEmpresa = +I.id_empresa;
|
|
@@ -4329,6 +4338,9 @@
|
|
|
4329
4338
|
_this.descripcionEstado = I.desest;
|
|
4330
4339
|
_this.descripcionMunicipio = I.desmun;
|
|
4331
4340
|
_this.descripcionParroquia = I.despar;
|
|
4341
|
+
_this.registroDescansoIncidencia = I.regdesinc;
|
|
4342
|
+
_this.registroLaboralIncidencia = I.reglabinc;
|
|
4343
|
+
_this.segmentarPersonal = parseInt(I.segper);
|
|
4332
4344
|
}
|
|
4333
4345
|
else {
|
|
4334
4346
|
_this.isNew = true;
|
|
@@ -4466,6 +4478,9 @@
|
|
|
4466
4478
|
codest: this.codigoEstado,
|
|
4467
4479
|
codmun: this.codigoMunicipio,
|
|
4468
4480
|
codpar: this.codigoParroquia,
|
|
4481
|
+
segper: this.segmentarPersonal.toString(),
|
|
4482
|
+
regdesinc: this.registroDescansoIncidencia,
|
|
4483
|
+
reglabinc: this.registroLaboralIncidencia,
|
|
4469
4484
|
};
|
|
4470
4485
|
};
|
|
4471
4486
|
return MConfiguracionSNO;
|
|
@@ -9328,6 +9343,7 @@
|
|
|
9328
9343
|
var _this = _super.call(this) || this;
|
|
9329
9344
|
_this.idEnterprise = 0;
|
|
9330
9345
|
_this.idEmpresa = 0;
|
|
9346
|
+
_this.idDtBeneficiario = 0;
|
|
9331
9347
|
_this.idPersonal = 0;
|
|
9332
9348
|
_this.idFamiliar = 0;
|
|
9333
9349
|
_this.idProveedor = 0;
|
|
@@ -9403,6 +9419,7 @@
|
|
|
9403
9419
|
_this.descripcionEstado = e.desest;
|
|
9404
9420
|
_this.descripcionMunicipio = e.desmun;
|
|
9405
9421
|
_this.descripcionParroquia = e.despar;
|
|
9422
|
+
_this.idDtBeneficiario = +e.id_dt_ben;
|
|
9406
9423
|
}
|
|
9407
9424
|
else {
|
|
9408
9425
|
_this.isNew = true;
|
|
@@ -9442,6 +9459,7 @@
|
|
|
9442
9459
|
nomfam: this.nombreFamiliar,
|
|
9443
9460
|
cedpro: this.cedulaAutorizado,
|
|
9444
9461
|
nompro: this.cedulaAutorizado,
|
|
9462
|
+
id_dt_ben: this.idDtBeneficiario.toString()
|
|
9445
9463
|
};
|
|
9446
9464
|
};
|
|
9447
9465
|
return MBeneficiario;
|