iptdevs-design-system 2.7.14 → 2.7.15
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 +9 -1
- package/fesm2015/iptdevs-design-system.mjs +8 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +8 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/budget-service/budget-service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2072,6 +2072,14 @@ class BudgetService extends IPTGeneralService {
|
|
|
2072
2072
|
this.generateRequestParams(params);
|
|
2073
2073
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
2074
2074
|
}
|
|
2075
|
+
getPaymentStudentsByCode(codeStudent) {
|
|
2076
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/cod/student/by/code/' + codeStudent;
|
|
2077
|
+
return this.http.get(serviceUrl);
|
|
2078
|
+
}
|
|
2079
|
+
getPaymentWalletByCampus(codeCampus) {
|
|
2080
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/wallet/by/campus/' + codeCampus;
|
|
2081
|
+
return this.http.get(serviceUrl);
|
|
2082
|
+
}
|
|
2075
2083
|
paymentBillDues(params) {
|
|
2076
2084
|
let serviceUrl = this.SERVICE_URL + 'post/payment/bill/register/dues';
|
|
2077
2085
|
this.generateRequestParams(params);
|