sigesp 0.9.90-20231129 → 0.9.91-20231211
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 +4 -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/sigesp.service.js +2 -2
- package/esm2015/lib/validation.service.js +4 -1
- package/fesm2015/sigesp.js +4 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/validation.service.d.ts +1 -0
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -7614,7 +7614,7 @@
|
|
|
7614
7614
|
title: 'Catálogo de plan de cuenta institucional',
|
|
7615
7615
|
dataSource: accounts
|
|
7616
7616
|
},
|
|
7617
|
-
width: '
|
|
7617
|
+
width: '800px',
|
|
7618
7618
|
maxHeight: '90vh'
|
|
7619
7619
|
});
|
|
7620
7620
|
return [2 /*return*/, dialogRef.afterClosed().toPromise()];
|
|
@@ -8934,6 +8934,9 @@
|
|
|
8934
8934
|
CurrencyService.prototype.checkCurrency = function (e, number, currency) {
|
|
8935
8935
|
return this.validateCurrency(e, number, currency.separadorDecimal, currency.decimales);
|
|
8936
8936
|
};
|
|
8937
|
+
CurrencyService.prototype.checkCurrencyAlt = function (e, number, currency) {
|
|
8938
|
+
return this.validateCurrency(e, number, currency.separadorDecimal, currency.decimalesAlternos);
|
|
8939
|
+
};
|
|
8937
8940
|
return CurrencyService;
|
|
8938
8941
|
}());
|
|
8939
8942
|
CurrencyService.ɵprov = i0__namespace.ɵɵdefineInjectable({ factory: function CurrencyService_Factory() { return new CurrencyService(); }, token: CurrencyService, providedIn: "root" });
|