iptdevs-design-system 3.1.803 → 3.1.804
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/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5993,6 +5993,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
5993
5993
|
this.generateRequestParams(params);
|
|
5994
5994
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
5995
5995
|
}
|
|
5996
|
+
UpdateDateCodPaymentsForPaymentPlan(params) {
|
|
5997
|
+
let serviceUrl = this.SERVICE_URL + 'post/change/date/payment/cod';
|
|
5998
|
+
this.generateRequestParams(params);
|
|
5999
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6000
|
+
}
|
|
5996
6001
|
obtainPaymentReceiptByCode(codeReceipt) {
|
|
5997
6002
|
let serviceUrl = this.SERVICE_URL + 'get/obtain/payment/receipt/by/code/' + codeReceipt;
|
|
5998
6003
|
return this.http.get(serviceUrl, this.httpOptions);
|