iptdevs-design-system 3.1.36 → 3.1.37
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/models/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +29 -1
- package/fesm2015/iptdevs-design-system.mjs +28 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +28 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +73 -0
- package/lib/core/services/budget-service/budget-service.d.ts +7 -1
- package/package.json +1 -1
|
@@ -4724,6 +4724,34 @@ class BudgetService extends IPTGeneralService {
|
|
|
4724
4724
|
let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/egress/' + codeWallet;
|
|
4725
4725
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4726
4726
|
}
|
|
4727
|
+
getPaymentOverdueStudent() {
|
|
4728
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/overdue/all/student';
|
|
4729
|
+
return this.http.get(serviceUrl);
|
|
4730
|
+
}
|
|
4731
|
+
getDayPaymentOverdueStudent(codeStudent) {
|
|
4732
|
+
let serviceUrl = this.SERVICE_URL + 'get/day/payment/overdue/student/by/code/' + codeStudent;
|
|
4733
|
+
return this.http.get(serviceUrl);
|
|
4734
|
+
}
|
|
4735
|
+
getPaymentOverdueCourseByCoordinator(params) {
|
|
4736
|
+
let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/course/by/coordinator';
|
|
4737
|
+
this.generateRequestParams(params);
|
|
4738
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4739
|
+
}
|
|
4740
|
+
getPaymentOverdueStudentByCoordinator(params) {
|
|
4741
|
+
let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/student/by/coodinator';
|
|
4742
|
+
this.generateRequestParams(params);
|
|
4743
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4744
|
+
}
|
|
4745
|
+
getPaymentOverdueStudentByCoordinatorAndCourseCode(params) {
|
|
4746
|
+
let serviceUrl = this.SERVICE_URL + 'post/payment/overdue/student/by/coodinatorcourse';
|
|
4747
|
+
this.generateRequestParams(params);
|
|
4748
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4749
|
+
}
|
|
4750
|
+
getObtainCodStudentByCoordinator(params) {
|
|
4751
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/stundent/by/coordinator';
|
|
4752
|
+
this.generateRequestParams(params);
|
|
4753
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4754
|
+
}
|
|
4727
4755
|
}
|
|
4728
4756
|
BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4729
4757
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|