sigesp 0.9.65-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 +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/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 +1 -1
- package/esm2015/lib/core/models/STB/deduction.model.js +8 -2
- package/fesm2015/sigesp.js +10 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -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/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;
|
|
@@ -9337,6 +9343,7 @@
|
|
|
9337
9343
|
var _this = _super.call(this) || this;
|
|
9338
9344
|
_this.idEnterprise = 0;
|
|
9339
9345
|
_this.idEmpresa = 0;
|
|
9346
|
+
_this.idDtBeneficiario = 0;
|
|
9340
9347
|
_this.idPersonal = 0;
|
|
9341
9348
|
_this.idFamiliar = 0;
|
|
9342
9349
|
_this.idProveedor = 0;
|
|
@@ -9412,6 +9419,7 @@
|
|
|
9412
9419
|
_this.descripcionEstado = e.desest;
|
|
9413
9420
|
_this.descripcionMunicipio = e.desmun;
|
|
9414
9421
|
_this.descripcionParroquia = e.despar;
|
|
9422
|
+
_this.idDtBeneficiario = +e.id_dt_ben;
|
|
9415
9423
|
}
|
|
9416
9424
|
else {
|
|
9417
9425
|
_this.isNew = true;
|
|
@@ -9451,6 +9459,7 @@
|
|
|
9451
9459
|
nomfam: this.nombreFamiliar,
|
|
9452
9460
|
cedpro: this.cedulaAutorizado,
|
|
9453
9461
|
nompro: this.cedulaAutorizado,
|
|
9462
|
+
id_dt_ben: this.idDtBeneficiario.toString()
|
|
9454
9463
|
};
|
|
9455
9464
|
};
|
|
9456
9465
|
return MBeneficiario;
|