iptdevs-design-system 3.1.716 → 3.1.718
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/notes/notes.interface.mjs +1 -1
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +3 -7
- package/fesm2015/iptdevs-design-system.mjs +2 -6
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -6
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/notes/notes.interface.d.ts +7 -3
- package/lib/core/services/notes-service/notes.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -178,9 +178,6 @@ export interface IServiceUpdateNoteRq {
|
|
|
178
178
|
notes: INote[];
|
|
179
179
|
student: IStudentResum;
|
|
180
180
|
}
|
|
181
|
-
export interface INoteDeleteRq {
|
|
182
|
-
note_code: string;
|
|
183
|
-
}
|
|
184
181
|
export interface IServiceDeleteNoteRq {
|
|
185
182
|
token: string;
|
|
186
183
|
note_type: INoteTypeStudentRq;
|
|
@@ -237,3 +234,10 @@ export interface IGetUrlFileExcel {
|
|
|
237
234
|
name: string;
|
|
238
235
|
content_type: string;
|
|
239
236
|
}
|
|
237
|
+
export interface IdeletedNoteScoreRq {
|
|
238
|
+
token: string;
|
|
239
|
+
notes: INoteRq[];
|
|
240
|
+
}
|
|
241
|
+
export interface INoteRq {
|
|
242
|
+
note_code: string;
|
|
243
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { GetNotesByGroupRq, GetNotesByStudentRq, INotesByUCourseAndStudentRq, IServiceCreateNewNoteRq,
|
|
2
|
+
import { GetNotesByGroupRq, GetNotesByStudentRq, INotesByUCourseAndStudentRq, IServiceCreateNewNoteRq, IServiceUpdateNoteRq, IdeletedNoteScoreRq, UpdateStudentNoteRq, calculateFinalNoteRq } from '../../models/notes/notes.interface';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { Response } from '../../models/response/response.interface';
|
|
5
5
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -15,7 +15,7 @@ export declare class NotesService extends IPTGeneralService {
|
|
|
15
15
|
calculateFinalNote(params: calculateFinalNoteRq): Observable<Response>;
|
|
16
16
|
getNotesByUserCourseStudent(params: INotesByUCourseAndStudentRq): Observable<Response>;
|
|
17
17
|
updateNoteByTypeAndStudent(params: IServiceUpdateNoteRq): Observable<Response>;
|
|
18
|
-
deleteNoteByTypeAndStudent(params:
|
|
18
|
+
deleteNoteByTypeAndStudent(params: IdeletedNoteScoreRq): Observable<any>;
|
|
19
19
|
getNotesByCourseExcel(params: GetNotesByGroupRq): Observable<any>;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, never>;
|
|
21
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|