iptdevs-design-system 3.1.24 → 3.1.26
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 +17 -1
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +9 -1
- package/fesm2015/iptdevs-design-system.mjs +24 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +24 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/budget-service/budget-service.d.ts +4 -0
- package/lib/core/services/parameters-service/parameters.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1440,6 +1440,14 @@ class ParameterService extends IPTGeneralService {
|
|
|
1440
1440
|
let serviceUrl = this.SERVICE_URL + 'get/cities/state/' + name;
|
|
1441
1441
|
return this.http.get(serviceUrl);
|
|
1442
1442
|
}
|
|
1443
|
+
getActionsAdminStudent() {
|
|
1444
|
+
let serviceUrl = this.SERVICE_URL + 'get/all/actions/admin/student';
|
|
1445
|
+
return this.http.get(serviceUrl);
|
|
1446
|
+
}
|
|
1447
|
+
getReasonObservationStudent() {
|
|
1448
|
+
let serviceUrl = this.SERVICE_URL + 'get/all/reason/observation/student';
|
|
1449
|
+
return this.http.get(serviceUrl);
|
|
1450
|
+
}
|
|
1443
1451
|
}
|
|
1444
1452
|
ParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ParameterService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1445
1453
|
ParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ParameterService, providedIn: 'root' });
|
|
@@ -4675,6 +4683,22 @@ class BudgetService extends IPTGeneralService {
|
|
|
4675
4683
|
this.generateRequestParams(params);
|
|
4676
4684
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4677
4685
|
}
|
|
4686
|
+
getWalletByCodeUser(codeUser) {
|
|
4687
|
+
let serviceUrl = this.SERVICE_URL + 'get/wallet/by/code/user/' + codeUser;
|
|
4688
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4689
|
+
}
|
|
4690
|
+
getpaymentBillByWalletCode(codeWallet) {
|
|
4691
|
+
let serviceUrl = this.SERVICE_URL + 'get/obtain/payment/bill/by/wallets/by/' + codeWallet;
|
|
4692
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4693
|
+
}
|
|
4694
|
+
getpaymentBillIncome(codeWallet) {
|
|
4695
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/income/' + codeWallet;
|
|
4696
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4697
|
+
}
|
|
4698
|
+
getpaymentBillEgress(codeWallet) {
|
|
4699
|
+
let serviceUrl = this.SERVICE_URL + 'get/payment/bill/wallets/code/filter/egress/' + codeWallet;
|
|
4700
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4701
|
+
}
|
|
4678
4702
|
}
|
|
4679
4703
|
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
4704
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|