iptdevs-design-system 3.1.701 → 3.1.702
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 +11 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/academic/academic.component.d.ts +58 -0
- package/lib/core/services/academic-service/academic.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IMessageRq } from "../budget/budget.model";
|
|
2
|
+
import { English_Levels } from "../course/courses.model";
|
|
2
3
|
export interface GetCourseByTypeRq {
|
|
3
4
|
token: string;
|
|
4
5
|
course_type: number;
|
|
@@ -109,3 +110,60 @@ export interface IweekDaysRq {
|
|
|
109
110
|
key: string;
|
|
110
111
|
code: number;
|
|
111
112
|
}
|
|
113
|
+
export interface IObatinBalacesByCoodinatorRq {
|
|
114
|
+
token: string;
|
|
115
|
+
course_modality: number;
|
|
116
|
+
course_status: number;
|
|
117
|
+
user_code: number;
|
|
118
|
+
english_level: English_Levels[];
|
|
119
|
+
start_date: Date;
|
|
120
|
+
end_date: Date;
|
|
121
|
+
}
|
|
122
|
+
export interface IObatinDetailedIncomeByUserAndDateRq {
|
|
123
|
+
token: string;
|
|
124
|
+
user_code: number;
|
|
125
|
+
start_date: Date;
|
|
126
|
+
end_date: Date;
|
|
127
|
+
}
|
|
128
|
+
export interface IObatinDetailedIncomeByUserAndDateRs {
|
|
129
|
+
income: ResponsePay;
|
|
130
|
+
expenses: ResponsePay;
|
|
131
|
+
}
|
|
132
|
+
export interface ResponsePay {
|
|
133
|
+
listPayment: IListPaymentRs[];
|
|
134
|
+
sumByMethod: ISumByMethodPayRs[];
|
|
135
|
+
totalAmount: number;
|
|
136
|
+
dateConsult: IDateConsultRs;
|
|
137
|
+
userConsulted: string;
|
|
138
|
+
}
|
|
139
|
+
export interface IDateConsultRs {
|
|
140
|
+
startDate: Date;
|
|
141
|
+
endDate: Date;
|
|
142
|
+
}
|
|
143
|
+
export interface IListPaymentRs {
|
|
144
|
+
payment_code: number;
|
|
145
|
+
method_name: string;
|
|
146
|
+
method_code: number;
|
|
147
|
+
service: string;
|
|
148
|
+
wallet: string;
|
|
149
|
+
bank: string;
|
|
150
|
+
fullname_student: string;
|
|
151
|
+
fullname_user: string;
|
|
152
|
+
total_amount: number;
|
|
153
|
+
payment_amount: number;
|
|
154
|
+
outstanding_amount: number;
|
|
155
|
+
positive_amount: number;
|
|
156
|
+
discount: number;
|
|
157
|
+
father_name: null | string;
|
|
158
|
+
pather_document: null | string;
|
|
159
|
+
academic_plan: number;
|
|
160
|
+
referenec_payment: null | string;
|
|
161
|
+
create_date: Date;
|
|
162
|
+
observation: null | string;
|
|
163
|
+
invoice_cancelled: number;
|
|
164
|
+
}
|
|
165
|
+
export interface ISumByMethodPayRs {
|
|
166
|
+
Metodo_pago_code: number;
|
|
167
|
+
Metodo_pago: string;
|
|
168
|
+
Total_por_metodo: number;
|
|
169
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IPTGeneralService } from '../service-enviroments';
|
|
4
|
-
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs } from '../../models/academic/academic.component';
|
|
4
|
+
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs, IObatinBalacesByCoodinatorRq, IObatinDetailedIncomeByUserAndDateRq } from '../../models/academic/academic.component';
|
|
5
5
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
6
6
|
import { GetStudentsByCourseRq } from '../../models/student/student.interface';
|
|
7
7
|
import { GetCodByStudentCourseRq } from '../../models/cod/cod-rq.model';
|
|
@@ -40,6 +40,8 @@ export declare class AcademicService extends IPTGeneralService {
|
|
|
40
40
|
obtainPlansCourseAvalaibleForPosibleStudentByAgeAndGrade(params: any): Observable<any>;
|
|
41
41
|
ObtainGradesByStudent(param: INotesStudentRq): Observable<any>;
|
|
42
42
|
ObtainLevelsCodsByStudent(param: NotesStudents): Observable<any>;
|
|
43
|
+
obatinBalacesByCoodinator(params: IObatinBalacesByCoodinatorRq): Observable<any>;
|
|
44
|
+
obatinDetailedIncomeByUserAndDate(params: IObatinDetailedIncomeByUserAndDateRq): Observable<any>;
|
|
43
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
|
|
44
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
|
|
45
47
|
}
|