iptdevs-design-system 3.1.560 → 3.1.562
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/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.mjs +3 -3
- package/esm2020/lib/components/molecules/card-course/card-course.component.mjs +3 -3
- 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 +9 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +9 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +71 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -410,3 +410,74 @@ export interface IObtainPaymentTranHistoryByCodRq {
|
|
|
410
410
|
course_code: number;
|
|
411
411
|
cod_code: number;
|
|
412
412
|
}
|
|
413
|
+
export interface IObtainStudentPaymentByDiffParamRq {
|
|
414
|
+
token: string;
|
|
415
|
+
user: string;
|
|
416
|
+
}
|
|
417
|
+
export interface IObtainStudentPaymentByDiffParamRs {
|
|
418
|
+
code: number;
|
|
419
|
+
document: string;
|
|
420
|
+
full_name: string;
|
|
421
|
+
phone: string;
|
|
422
|
+
email: string;
|
|
423
|
+
overdue_payments: IOverduePaymentsRs;
|
|
424
|
+
outstanding_payments: IOutstandingPaymentsRs;
|
|
425
|
+
payments_made: number;
|
|
426
|
+
previous_course: null;
|
|
427
|
+
color_due: string;
|
|
428
|
+
fulldataCourse: IAllCoursesViewedRs;
|
|
429
|
+
current_cod: ICurrentCodRs;
|
|
430
|
+
all_courses_viewed: IAllCoursesViewedRs[];
|
|
431
|
+
user_wallet: IUserWalletRs;
|
|
432
|
+
}
|
|
433
|
+
export interface IAllCoursesViewedRs {
|
|
434
|
+
code: number;
|
|
435
|
+
course_schedule: string[];
|
|
436
|
+
teacher: string;
|
|
437
|
+
course_type: ICourseTypeCluAndTheRs;
|
|
438
|
+
to_start: Date;
|
|
439
|
+
start_date: Date;
|
|
440
|
+
finish_date: Date;
|
|
441
|
+
capacity: number;
|
|
442
|
+
more_days: null;
|
|
443
|
+
english_level: string;
|
|
444
|
+
agreement: string;
|
|
445
|
+
course_modality: ICourseModalityRq;
|
|
446
|
+
is_renovation: number;
|
|
447
|
+
is_from: null;
|
|
448
|
+
is_club: number;
|
|
449
|
+
is_visible: number;
|
|
450
|
+
updated_at?: Date;
|
|
451
|
+
created_at: Date;
|
|
452
|
+
}
|
|
453
|
+
export interface ICurrentCodRs {
|
|
454
|
+
code: number;
|
|
455
|
+
course: number;
|
|
456
|
+
course_type: number;
|
|
457
|
+
agreement: number;
|
|
458
|
+
english_level: number;
|
|
459
|
+
student: number;
|
|
460
|
+
parent: number;
|
|
461
|
+
aditional_information: number;
|
|
462
|
+
adviser: number;
|
|
463
|
+
cod_status: number;
|
|
464
|
+
cod_price: number;
|
|
465
|
+
cod_paid: number;
|
|
466
|
+
updated_at: Date;
|
|
467
|
+
created_at: Date;
|
|
468
|
+
}
|
|
469
|
+
export interface IOutstandingPaymentsRs {
|
|
470
|
+
outstanding_payments: number;
|
|
471
|
+
number_installments: number;
|
|
472
|
+
}
|
|
473
|
+
export interface IOverduePaymentsRs {
|
|
474
|
+
Overdue_payments: number;
|
|
475
|
+
number_installments: number;
|
|
476
|
+
}
|
|
477
|
+
export interface IUserWalletRs {
|
|
478
|
+
user_code: number;
|
|
479
|
+
full_name: string;
|
|
480
|
+
email_ipt: string;
|
|
481
|
+
phone_number: string;
|
|
482
|
+
is_visible: number;
|
|
483
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -55,6 +55,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
55
55
|
obtainCodAndStatusApprovedLevelByGroup(param: NameCommonExpenses): Observable<any>;
|
|
56
56
|
obtainStudentPaymentTransactionHistoryByCourse(param: IObtainPaymentTranHistoryRq): Observable<any>;
|
|
57
57
|
obtainPaymentTransactionHistoryByCod(param: IObtainPaymentTranHistoryRq): Observable<any>;
|
|
58
|
+
obtainStudentPaymentByDifferentParameter(param: IObtainStudentPaymentByDiffParamRq): Observable<any>;
|
|
58
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
59
60
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
60
61
|
}
|