iptdevs-design-system 3.1.376 → 3.1.378
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/attendance/attendance.interface.mjs +1 -1
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +10 -1
- package/fesm2015/iptdevs-design-system.mjs +9 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +9 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/attendance/attendance.interface.d.ts +13 -0
- package/lib/core/services/attendance-service/attendance.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -5952,6 +5952,15 @@ class AttendanceService extends IPTGeneralService {
|
|
|
5952
5952
|
let serviceUrl = `${this.SERVICE_URL}obtain/course/event/by/code/${code}`;
|
|
5953
5953
|
return this.http.get(serviceUrl);
|
|
5954
5954
|
}
|
|
5955
|
+
obtainFullDataAttendanceByCode(code) {
|
|
5956
|
+
let serviceUrl = `${this.SERVICE_URL}obtain/full/data/attendance/by/code/${code}`;
|
|
5957
|
+
return this.http.get(serviceUrl);
|
|
5958
|
+
}
|
|
5959
|
+
UpdateIndividualAttendance(params) {
|
|
5960
|
+
let serviceUrl = `${this.SERVICE_URL}update/individual/attendance/by/code`;
|
|
5961
|
+
this.generateRequestParams(params);
|
|
5962
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5963
|
+
}
|
|
5955
5964
|
}
|
|
5956
5965
|
AttendanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5957
5966
|
AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });
|