iptdevs-design-system 2.7.26 → 2.7.27
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/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/academic/academic.component.d.ts +4 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -2325,6 +2325,11 @@ class AcademicService extends IPTGeneralService {
|
|
|
2325
2325
|
this.generateRequestParams(params);
|
|
2326
2326
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
2327
2327
|
}
|
|
2328
|
+
obtainLastStudentCod(params) {
|
|
2329
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/last/student/cod/by/student';
|
|
2330
|
+
this.generateRequestParams(params);
|
|
2331
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
2332
|
+
}
|
|
2328
2333
|
getCodGenDataStudent(codeStudent) {
|
|
2329
2334
|
let serviceUrl = this.SERVICE_URL + 'get/general/data/student/by/code/' + codeStudent;
|
|
2330
2335
|
return this.http.get(serviceUrl);
|