iptdevs-design-system 3.2.86 → 3.2.88
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/esm2020/lib/core/services/commercial-service/comercial.service.mjs +3 -4
- package/fesm2015/iptdevs-design-system.mjs +7 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +7 -3
- 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
|
@@ -4411,10 +4411,9 @@ class CommercialService extends IPTGeneralService {
|
|
|
4411
4411
|
return this.http.delete(serviceUrl, options);
|
|
4412
4412
|
}
|
|
4413
4413
|
massAssignSubordinates(params) {
|
|
4414
|
-
|
|
4414
|
+
let serviceUrl = this.SERVICE_URL + 'post/team/members/massive';
|
|
4415
4415
|
this.generateRequestParams(params);
|
|
4416
|
-
|
|
4417
|
-
return this.http.post(serviceUrl, params, this.httpOptions);
|
|
4416
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4418
4417
|
}
|
|
4419
4418
|
getUsersForCommissionManagement(request) {
|
|
4420
4419
|
const serviceUrl = this.SERVICE_URL + 'get/users/for-management';
|
|
@@ -8282,6 +8281,11 @@ class AcademicService extends IPTGeneralService {
|
|
|
8282
8281
|
let serviceUrl = `${this.SERVICE_URL}obtain/course/status/by/code/${courseCode}`;
|
|
8283
8282
|
return this.http.get(serviceUrl);
|
|
8284
8283
|
}
|
|
8284
|
+
ObtainAttendanceForCodHistoryByStudent(param) {
|
|
8285
|
+
const serviceUrl = this.SERVICE_URL + 'post/attendance/all/cod/by/student';
|
|
8286
|
+
this.generateRequestParams(param);
|
|
8287
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
8288
|
+
}
|
|
8285
8289
|
}
|
|
8286
8290
|
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 });
|
|
8287
8291
|
AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });
|