iptdevs-design-system 3.1.412 → 3.1.414
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 +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +36 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -360,11 +360,13 @@ export interface IObtainPaymentTranHistoryRs {
|
|
|
360
360
|
document: number;
|
|
361
361
|
full_name: string;
|
|
362
362
|
phone: string;
|
|
363
|
+
email: string;
|
|
363
364
|
overdue_payments: IOverduePaymentsRs;
|
|
364
365
|
outstanding_payments: IOutstandingPaymentsRs;
|
|
365
366
|
payments_made: number;
|
|
366
367
|
previos_course: null | number;
|
|
367
368
|
color_due: string;
|
|
369
|
+
fuldataCourse: IFuldataCourseRs;
|
|
368
370
|
}
|
|
369
371
|
export interface IOutstandingPaymentsRs {
|
|
370
372
|
outstanding_payments: number;
|
|
@@ -374,3 +376,37 @@ export interface IOverduePaymentsRs {
|
|
|
374
376
|
Overdue_payments: number;
|
|
375
377
|
number_installments: number;
|
|
376
378
|
}
|
|
379
|
+
export interface IFuldataCourseRs {
|
|
380
|
+
code: number;
|
|
381
|
+
course_schedule: string[];
|
|
382
|
+
teacher: string;
|
|
383
|
+
course_type: ICourseTypeCluAndTheRs;
|
|
384
|
+
to_start: Date;
|
|
385
|
+
start_date: Date;
|
|
386
|
+
finish_date: Date;
|
|
387
|
+
capacity: number;
|
|
388
|
+
more_days: null;
|
|
389
|
+
english_level: string;
|
|
390
|
+
agreement: string;
|
|
391
|
+
course_modality: ICourseModalityRq;
|
|
392
|
+
is_renovation: number;
|
|
393
|
+
is_from: null;
|
|
394
|
+
is_club: number;
|
|
395
|
+
is_visible: number;
|
|
396
|
+
created_at: Date;
|
|
397
|
+
}
|
|
398
|
+
export interface ICourseTypeCluAndTheRs {
|
|
399
|
+
code: number;
|
|
400
|
+
name: string;
|
|
401
|
+
label: string;
|
|
402
|
+
number_class: number;
|
|
403
|
+
number_class_club: number;
|
|
404
|
+
academic_plan: string;
|
|
405
|
+
theory_classes: number;
|
|
406
|
+
club_classes: number;
|
|
407
|
+
}
|
|
408
|
+
export interface IObtainPaymentTranHistoryByCodRq {
|
|
409
|
+
token: string;
|
|
410
|
+
course_code: number;
|
|
411
|
+
cod_code: number;
|
|
412
|
+
}
|
|
@@ -54,6 +54,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
54
54
|
createCommmonExpenses(param: NameCommonExpenses): Observable<any>;
|
|
55
55
|
obtainCodAndStatusApprovedLevelByGroup(param: NameCommonExpenses): Observable<any>;
|
|
56
56
|
obtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
|
|
57
|
+
obtainPaymentTransactionHistoryByCod(param: IObtainPaymentTranHistoryRq): Observable<any>;
|
|
57
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
58
59
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
59
60
|
}
|