iptdevs-design-system 3.1.927 → 3.1.929
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/models/attendance/attendance.interface.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +1 -11
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +11 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -10
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -10
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/academic/academic.component.d.ts +0 -15
- package/lib/core/models/attendance/attendance.interface.d.ts +11 -0
- package/lib/core/services/academic-service/academic.service.d.ts +1 -3
- package/lib/core/services/attendance-service/attendance.service.d.ts +3 -1
- package/lib/core/services/user-service/user-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -976,6 +976,11 @@ class UserService extends IPTGeneralService {
|
|
|
976
976
|
this.generateRequestParams(params);
|
|
977
977
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
978
978
|
}
|
|
979
|
+
updateUserAndParentByCode(params) {
|
|
980
|
+
let serviceUrl = this.SERVICE_URL + 'update/user/by/code/and/parent';
|
|
981
|
+
this.generateRequestParams(params);
|
|
982
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
983
|
+
}
|
|
979
984
|
}
|
|
980
985
|
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 });
|
|
981
986
|
UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
@@ -7005,16 +7010,6 @@ class AcademicService extends IPTGeneralService {
|
|
|
7005
7010
|
this.generateRequestParams(param);
|
|
7006
7011
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7007
7012
|
}
|
|
7008
|
-
addIndividualAttendance(param) {
|
|
7009
|
-
const serviceUrl = this.SERVICE_URL + 'add/individual/attendance';
|
|
7010
|
-
this.generateRequestParams(param);
|
|
7011
|
-
return this.http.post(serviceUrl, this.httpOptions);
|
|
7012
|
-
}
|
|
7013
|
-
deleteIndividualAttendance(param) {
|
|
7014
|
-
const serviceUrl = this.SERVICE_URL + 'delete/individual/attendance';
|
|
7015
|
-
this.generateRequestParams(param);
|
|
7016
|
-
return this.http.post(serviceUrl, this.httpOptions);
|
|
7017
|
-
}
|
|
7018
7013
|
}
|
|
7019
7014
|
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 });
|
|
7020
7015
|
AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });
|
|
@@ -7122,6 +7117,16 @@ class AttendanceService extends IPTGeneralService {
|
|
|
7122
7117
|
this.generateRequestParams(params);
|
|
7123
7118
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7124
7119
|
}
|
|
7120
|
+
addIndividualAttendance(param) {
|
|
7121
|
+
const serviceUrl = this.SERVICE_URL + 'add/individual/attendance';
|
|
7122
|
+
this.generateRequestParams(param);
|
|
7123
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7124
|
+
}
|
|
7125
|
+
deleteIndividualAttendance(param) {
|
|
7126
|
+
const serviceUrl = this.SERVICE_URL + 'delete/individual/attendance';
|
|
7127
|
+
this.generateRequestParams(param);
|
|
7128
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7129
|
+
}
|
|
7125
7130
|
}
|
|
7126
7131
|
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 });
|
|
7127
7132
|
AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });
|