iptdevs-design-system 3.1.23 → 3.1.25
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/academic-service/academic.service.mjs +6 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +17 -1
- package/fesm2015/iptdevs-design-system.mjs +21 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +21 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/academic-service/academic.service.d.ts +1 -0
- package/lib/core/services/budget-service/budget-service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4675,6 +4675,22 @@ class BudgetService extends IPTGeneralService {
|
|
|
4675
4675
|
this.generateRequestParams(params);
|
|
4676
4676
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4677
4677
|
}
|
|
4678
|
+
getWalletByCodeUser(codeUser) {
|
|
4679
|
+
let serviceUrl = this.SERVICE_URL + 'get/wallet/by/code/user/' + codeUser;
|
|
4680
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4681
|
+
}
|
|
4682
|
+
getpaymentBillByWalletCode(codeWallet) {
|
|
4683
|
+
let serviceUrl = this.SERVICE_URL + 'get/obtain/payment/bill/by/wallets/by/' + codeWallet;
|
|
4684
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4685
|
+
}
|
|
4686
|
+
getpaymentBillIncome(codeWallet) {
|
|
4687
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/income/' + codeWallet;
|
|
4688
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4689
|
+
}
|
|
4690
|
+
getpaymentBillEgress(codeWallet) {
|
|
4691
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/egress/' + codeWallet;
|
|
4692
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4693
|
+
}
|
|
4678
4694
|
}
|
|
4679
4695
|
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 });
|
|
4680
4696
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|
|
@@ -4851,6 +4867,11 @@ class AcademicService extends IPTGeneralService {
|
|
|
4851
4867
|
this.generateRequestParams(params);
|
|
4852
4868
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4853
4869
|
}
|
|
4870
|
+
getAllCodActiveByCourse(params) {
|
|
4871
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/all/cod/active/by/course';
|
|
4872
|
+
this.generateRequestParams(params);
|
|
4873
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4874
|
+
}
|
|
4854
4875
|
}
|
|
4855
4876
|
AcademicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4856
4877
|
AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });
|