iptdevs-design-system 3.2.23 → 3.2.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/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +10 -1
- package/fesm2015/iptdevs-design-system.mjs +14 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +14 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/user/user-rq.model.d.ts +42 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/lib/core/services/user-service/user-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -993,6 +993,15 @@ class UserService extends IPTGeneralService {
|
|
|
993
993
|
let serviceUrl = this.SERVICE_URL + 'search/for/user/by/code/' + codeUser;
|
|
994
994
|
return this.http.get(serviceUrl);
|
|
995
995
|
}
|
|
996
|
+
searchForStudentToEdit(params) {
|
|
997
|
+
let serviceUrl = this.SERVICE_URL + 'search/for/student/to/edit';
|
|
998
|
+
this.generateRequestParams(params);
|
|
999
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
1000
|
+
}
|
|
1001
|
+
searchStudentByCode(codeUser) {
|
|
1002
|
+
let serviceUrl = this.SERVICE_URL + 'search/student/by/code/' + codeUser;
|
|
1003
|
+
return this.http.get(serviceUrl);
|
|
1004
|
+
}
|
|
996
1005
|
}
|
|
997
1006
|
UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
998
1007
|
UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
@@ -7679,6 +7688,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
7679
7688
|
const serviceUrl = this.SERVICE_URL + 'receive/payments/made/to/cod/' + codeCod;
|
|
7680
7689
|
return this.http.get(serviceUrl);
|
|
7681
7690
|
}
|
|
7691
|
+
newRegistePaymentBillPreassignedCod(params) {
|
|
7692
|
+
let serviceUrl = this.SERVICE_URL + 'new/registe/payment/bill/preassigned/cod';
|
|
7693
|
+
this.generateRequestParams(params);
|
|
7694
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7695
|
+
}
|
|
7682
7696
|
}
|
|
7683
7697
|
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 });
|
|
7684
7698
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|