iptdevs-design-system 3.2.141 → 3.2.143
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/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +5 -1
- package/fesm2015/iptdevs-design-system.mjs +4 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +4 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +3 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1207,6 +1207,9 @@ export interface IGetAllDiscountWithModalityRs {
|
|
|
1207
1207
|
percentage?: number;
|
|
1208
1208
|
start_date?: Date;
|
|
1209
1209
|
end_date?: Date;
|
|
1210
|
+
allow_partial_payment?: number;
|
|
1211
|
+
min_installments?: number | null;
|
|
1212
|
+
max_installments?: number | null;
|
|
1210
1213
|
state?: number;
|
|
1211
1214
|
description?: string;
|
|
1212
1215
|
discount_type_code: number;
|
|
@@ -136,6 +136,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
136
136
|
exportStudentsWithOverdueFeesByCoordinator(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
|
|
137
137
|
exportStudentsWithOverdueFeesByCoordinatorPdf(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
|
|
138
138
|
getAllDiscountWithModality(param: getdiscountAllRq): Observable<any>;
|
|
139
|
+
validateCouponByReference(reference: string): Observable<any>;
|
|
139
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
140
141
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
141
142
|
}
|