sigesp 0.9.83-20230111 → 0.9.84-20231102
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 +60 -12
- 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/models/SCG/accountMarriage.model.js +16 -5
- package/esm2015/lib/core/models/SCG/cuentaInstitucional.model.js +26 -1
- package/esm2015/lib/core/models/SCG/planUnicoCuenta.model.js +14 -4
- package/fesm2015/sigesp.js +51 -7
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/models/SCG/accountMarriage.model.d.ts +4 -2
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +1 -0
- package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +4 -2
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -1491,6 +1491,31 @@
|
|
|
1491
1491
|
}
|
|
1492
1492
|
return _this;
|
|
1493
1493
|
}
|
|
1494
|
+
MCuentaInstitucional.prototype.dataInterface = function () {
|
|
1495
|
+
return {
|
|
1496
|
+
sc_cuenta: this.cuenta,
|
|
1497
|
+
cueproacu: this.cueproacu,
|
|
1498
|
+
denominacion: this.denominacion,
|
|
1499
|
+
dencueproacu: this.denominacionCuentaProvisionAcumulada,
|
|
1500
|
+
enero: this.enero,
|
|
1501
|
+
febrero: this.febrero,
|
|
1502
|
+
marzo: this.marzo,
|
|
1503
|
+
abril: this.abril,
|
|
1504
|
+
mayo: this.mayo,
|
|
1505
|
+
junio: this.junio,
|
|
1506
|
+
julio: this.julio,
|
|
1507
|
+
agosto: this.agosto,
|
|
1508
|
+
septiembre: this.septiembre,
|
|
1509
|
+
octubre: this.octubre,
|
|
1510
|
+
noviembre: this.noviembre,
|
|
1511
|
+
diciembre: this.diciembre,
|
|
1512
|
+
asignado: this.asignado,
|
|
1513
|
+
distribuir: this.distribuir,
|
|
1514
|
+
estatus: this.status,
|
|
1515
|
+
id_empresa: this.idEmpresa,
|
|
1516
|
+
nivel: this.nivel,
|
|
1517
|
+
};
|
|
1518
|
+
};
|
|
1494
1519
|
return MCuentaInstitucional;
|
|
1495
1520
|
}(MBasicModel));
|
|
1496
1521
|
|
|
@@ -1779,13 +1804,24 @@
|
|
|
1779
1804
|
return MConfiguracionSCG;
|
|
1780
1805
|
}(MBasicModel));
|
|
1781
1806
|
|
|
1782
|
-
var MPlanUnicoCuenta = /** @class */ (function () {
|
|
1807
|
+
var MPlanUnicoCuenta = /** @class */ (function (_super) {
|
|
1808
|
+
__extends(MPlanUnicoCuenta, _super);
|
|
1783
1809
|
function MPlanUnicoCuenta(plan) {
|
|
1784
|
-
|
|
1785
|
-
|
|
1810
|
+
var _this = _super.call(this) || this;
|
|
1811
|
+
if (plan) {
|
|
1812
|
+
_this.denominacion = plan.denominacion;
|
|
1813
|
+
_this.cuenta = plan.sc_cuenta;
|
|
1814
|
+
}
|
|
1815
|
+
return _this;
|
|
1786
1816
|
}
|
|
1817
|
+
MPlanUnicoCuenta.prototype.dataInterface = function () {
|
|
1818
|
+
return {
|
|
1819
|
+
denominacion: this.denominacion,
|
|
1820
|
+
sc_cuenta: this.cuenta,
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1787
1823
|
return MPlanUnicoCuenta;
|
|
1788
|
-
}());
|
|
1824
|
+
}(MBasicModel));
|
|
1789
1825
|
|
|
1790
1826
|
var TableSelectComponent = /** @class */ (function () {
|
|
1791
1827
|
//disableMasterToggle: boolean = false;
|
|
@@ -8824,17 +8860,29 @@
|
|
|
8824
8860
|
return MProcedencia;
|
|
8825
8861
|
}(MBasicModel));
|
|
8826
8862
|
|
|
8827
|
-
var MAccountMarriage = /** @class */ (function () {
|
|
8863
|
+
var MAccountMarriage = /** @class */ (function (_super) {
|
|
8864
|
+
__extends(MAccountMarriage, _super);
|
|
8828
8865
|
function MAccountMarriage(marriage) {
|
|
8829
|
-
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
|
|
8866
|
+
var _this = _super.call(this) || this;
|
|
8867
|
+
_this.idEmpresa = null;
|
|
8868
|
+
_this.cuentaContable = null;
|
|
8869
|
+
_this.cuentaInstitucional = null;
|
|
8870
|
+
if (marriage) {
|
|
8871
|
+
_this.idEmpresa = parseInt(marriage.id_empresa);
|
|
8872
|
+
_this.cuentaContable = parseInt(marriage.sig_cuenta);
|
|
8873
|
+
_this.cuentaInstitucional = parseInt(marriage.sc_cuenta);
|
|
8874
|
+
}
|
|
8875
|
+
return _this;
|
|
8835
8876
|
}
|
|
8877
|
+
MAccountMarriage.prototype.dataInterface = function () {
|
|
8878
|
+
return {
|
|
8879
|
+
id_empresa: this.idEmpresa.toString(),
|
|
8880
|
+
sc_cuenta: this.cuentaContable.toString(),
|
|
8881
|
+
sig_cuenta: this.cuentaInstitucional.toString(),
|
|
8882
|
+
};
|
|
8883
|
+
};
|
|
8836
8884
|
return MAccountMarriage;
|
|
8837
|
-
}());
|
|
8885
|
+
}(MBasicModel));
|
|
8838
8886
|
|
|
8839
8887
|
var MServiceType = /** @class */ (function (_super) {
|
|
8840
8888
|
__extends(MServiceType, _super);
|