iptdevs-design-system 3.2.138 → 3.2.140
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/components/molecules/sidenav/sidenav.component.mjs +3 -7
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +7 -6
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +7 -6
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +31 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1198,4 +1198,35 @@ export interface IOverdueInstallmentsDetailRq {
|
|
|
1198
1198
|
amount?: number;
|
|
1199
1199
|
month?: string;
|
|
1200
1200
|
}
|
|
1201
|
+
export interface IGetAllDiscountWithModalityRs {
|
|
1202
|
+
code?: number;
|
|
1203
|
+
discount_ref?: string;
|
|
1204
|
+
name?: string;
|
|
1205
|
+
type?: number;
|
|
1206
|
+
discount_type?: string;
|
|
1207
|
+
percentage?: number;
|
|
1208
|
+
start_date?: Date;
|
|
1209
|
+
end_date?: Date;
|
|
1210
|
+
state?: number;
|
|
1211
|
+
description?: string;
|
|
1212
|
+
discount_academic_plan?: IDiscountAcademicPlanRs[];
|
|
1213
|
+
discount_course_modality?: IDiscountCourseModalityRs[];
|
|
1214
|
+
}
|
|
1215
|
+
export interface IDiscountAcademicPlanRs {
|
|
1216
|
+
code?: number;
|
|
1217
|
+
name?: string;
|
|
1218
|
+
after_age?: number;
|
|
1219
|
+
before_age?: number;
|
|
1220
|
+
pivot?: IPivotRs;
|
|
1221
|
+
}
|
|
1222
|
+
export interface IPivotRs {
|
|
1223
|
+
discount?: number;
|
|
1224
|
+
academic_plan?: number;
|
|
1225
|
+
}
|
|
1226
|
+
export interface IDiscountCourseModalityRs {
|
|
1227
|
+
code?: number;
|
|
1228
|
+
code_modality?: number;
|
|
1229
|
+
code_discount?: number;
|
|
1230
|
+
status?: number;
|
|
1231
|
+
}
|
|
1201
1232
|
export {};
|
|
@@ -135,6 +135,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
135
135
|
studentsWithOverdueFeesByCoordinator(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
|
|
136
136
|
exportStudentsWithOverdueFeesByCoordinator(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
|
|
137
137
|
exportStudentsWithOverdueFeesByCoordinatorPdf(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
|
|
138
|
+
getAllDiscountWithModality(param: getdiscountAllRq): Observable<any>;
|
|
138
139
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
139
140
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
140
141
|
}
|