iptdevs-design-system 3.1.4395 → 3.2.1
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/cod-form/cod-form.component.mjs +34 -21
- package/esm2020/lib/cod/logic/calculate-quotes.service.mjs +73 -53
- package/esm2020/lib/cod/modal-referred/modal-referred.component.mjs +2 -2
- package/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +18 -24
- package/esm2020/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.mjs +85 -76
- package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +225 -92
- package/esm2020/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.mjs +14 -18
- package/esm2020/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.mjs +95 -70
- package/esm2020/lib/cod-self-managed/cod-form-self-managed/cod-self-managed.component.mjs +190 -22
- package/esm2020/lib/cod-self-managed/cod-self-managed.module.mjs +28 -4
- package/esm2020/lib/cod-self-managed/logic/calculate-quotes.service.mjs +99 -0
- package/esm2020/lib/cod-self-managed/logic/cod-self-managed-controls.mjs +16 -44
- package/esm2020/lib/cod-self-managed/logic/cod-self-managed-steps.mjs +1 -1
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-four/cod-self-form-step-four.component.mjs +244 -7
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.mjs +102 -18
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-three/cod-self-form-step-three.component.mjs +255 -7
- package/esm2020/lib/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.mjs +144 -32
- package/esm2020/lib/components/atoms/button/button.component.mjs +2 -2
- package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +26 -17
- package/esm2020/lib/components/atoms/input/input.component.mjs +2 -2
- package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +2 -2
- package/esm2020/lib/components/atoms/loader/loader.component.mjs +2 -2
- package/esm2020/lib/components/atoms/select/select.component.mjs +10 -8
- package/esm2020/lib/components/components.module.mjs +54 -8
- package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +3 -3
- package/esm2020/lib/components/forms/update-user-form/update-user-form.component.mjs +843 -0
- package/esm2020/lib/components/molecules/card-course/card-course.component.mjs +95 -0
- package/esm2020/lib/components/molecules/card-select-course/card-select-course.component.mjs +52 -0
- package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +5 -5
- package/esm2020/lib/core/core.module.mjs +9 -3
- package/esm2020/lib/core/models/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/models/announcement/announcement-user-rq.model.mjs +2 -0
- package/esm2020/lib/core/models/announcement/announcement-user-rs.model.mjs +3 -0
- package/esm2020/lib/core/models/attendance/attendance.interface.mjs +1 -1
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/course/courses.model.mjs +1 -1
- package/esm2020/lib/core/models/epayco/epayco.interfaces.mjs +2 -0
- package/esm2020/lib/core/models/notes/INotesTemplate.mjs +1 -1
- package/esm2020/lib/core/models/notes/notes.interface.mjs +1 -1
- package/esm2020/lib/core/models/parameters/parameters-rs.model.mjs +1 -1
- package/esm2020/lib/core/models/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/student/student.interface.mjs +1 -1
- package/esm2020/lib/core/models/terms/terms-rs.model.mjs +2 -0
- package/esm2020/lib/core/models/transfer/transfer.model.mjs +2 -0
- package/esm2020/lib/core/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rs.model.mjs +3 -1
- package/esm2020/lib/core/pipes/course-pipes/schedule-form.pipe.mjs +47 -0
- package/esm2020/lib/core/pipes/course-pipes/time-form.pipe.mjs +34 -0
- package/esm2020/lib/core/pipes/course-pipes/type-level.pipe.mjs +57 -0
- package/esm2020/lib/core/pipes/parameter-pipes/gender-display.pipe.mjs +22 -0
- package/esm2020/lib/core/pipes/pipe.module.mjs +37 -0
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +64 -1
- package/esm2020/lib/core/services/announcement/announcement.service.mjs +57 -0
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +31 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +297 -1
- package/esm2020/lib/core/services/certificate-service/certificate.service.mjs +21 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +95 -1
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +96 -1
- package/esm2020/lib/core/services/ePayco/epayco.service.mjs +37 -0
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +6 -1
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +13 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +55 -1
- package/esm2020/public-api.mjs +13 -1
- package/fesm2015/iptdevs-design-system.mjs +4357 -1296
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +7080 -4043
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod/cod-form/cod-form.component.d.ts +7 -2
- package/lib/cod/logic/calculate-quotes.service.d.ts +3 -0
- package/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.d.ts +4 -4
- package/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.d.ts +6 -9
- package/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.d.ts +9 -7
- package/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.d.ts +4 -4
- package/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.d.ts +8 -5
- package/lib/cod-self-managed/cod-form-self-managed/cod-self-managed.component.d.ts +31 -7
- package/lib/cod-self-managed/cod-self-managed.module.d.ts +7 -1
- package/lib/cod-self-managed/logic/calculate-quotes.service.d.ts +16 -0
- package/lib/cod-self-managed/steps/cod-form-step-four/cod-self-form-step-four.component.d.ts +46 -2
- package/lib/cod-self-managed/steps/cod-form-step-one/cod-self-form-step-one.component.d.ts +17 -5
- package/lib/cod-self-managed/steps/cod-form-step-three/cod-self-form-step-three.component.d.ts +48 -3
- package/lib/cod-self-managed/steps/cod-form-step-two/cod-self-form-step-two.component.d.ts +43 -9
- package/lib/components/atoms/datalist/datalist.component.d.ts +7 -3
- package/lib/components/atoms/select/select.component.d.ts +2 -1
- package/lib/components/components.module.d.ts +14 -5
- package/lib/components/forms/update-user-form/update-user-form.component.d.ts +87 -0
- package/lib/components/molecules/card-course/card-course.component.d.ts +21 -0
- package/lib/components/molecules/card-select-course/card-select-course.component.d.ts +13 -0
- package/lib/core/models/academic/academic.component.d.ts +143 -1
- package/lib/core/models/announcement/announcement-user-rq.model.d.ts +12 -0
- package/lib/core/models/announcement/announcement-user-rs.model.d.ts +7 -0
- package/lib/core/models/attendance/attendance.interface.d.ts +146 -0
- package/lib/core/models/budget/budget.model.d.ts +554 -0
- package/lib/core/models/cod/cod-rq.model.d.ts +193 -0
- package/lib/core/models/commercial/commercial.model.d.ts +91 -0
- package/lib/core/models/course/course-rq.model.d.ts +296 -22
- package/lib/core/models/course/courses.model.d.ts +51 -0
- package/lib/core/models/epayco/epayco.interfaces.d.ts +6 -0
- package/lib/core/models/notes/INotesTemplate.d.ts +57 -0
- package/lib/core/models/notes/notes.interface.d.ts +13 -0
- package/lib/core/models/parameters/parameters-rs.model.d.ts +78 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +168 -0
- package/lib/core/models/student/student.interface.d.ts +18 -0
- package/lib/core/models/terms/terms-rs.model.d.ts +435 -0
- package/lib/core/models/transfer/transfer.model.d.ts +89 -0
- package/lib/core/models/user/user-rq.model.d.ts +78 -0
- package/lib/core/models/user/user-rs.model.d.ts +11 -0
- package/lib/core/pipes/course-pipes/schedule-form.pipe.d.ts +7 -0
- package/lib/core/pipes/course-pipes/time-form.pipe.d.ts +9 -0
- package/lib/core/pipes/course-pipes/type-level.pipe.d.ts +7 -0
- package/lib/core/pipes/parameter-pipes/gender-display.pipe.d.ts +7 -0
- package/lib/core/pipes/pipe.module.d.ts +11 -0
- package/lib/core/services/academic-service/academic.service.d.ts +18 -3
- package/lib/core/services/announcement/announcement.service.d.ts +18 -0
- package/lib/core/services/attendance-service/attendance.service.d.ts +7 -1
- package/lib/core/services/budget-service/budget-service.d.ts +57 -3
- package/lib/core/services/certificate-service/certificate.service.d.ts +5 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +23 -2
- package/lib/core/services/course-service/course-service.model.d.ts +22 -1
- package/lib/core/services/ePayco/epayco.service.d.ts +17 -0
- package/lib/core/services/notes-service/notes.service.d.ts +2 -1
- package/lib/core/services/parameters-service/parameters.service.d.ts +3 -0
- package/lib/core/services/user-service/user-service.d.ts +12 -1
- package/package.json +1 -1
- package/public-api.d.ts +11 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IEventCourseRq } from "../classroom/classroom-rq.model";
|
|
2
2
|
import { CourseTypeCRq } from "../course/course-rq.model";
|
|
3
|
+
import { English_Levels } from "../course/courses.model";
|
|
3
4
|
export interface getdiscountAllRq {
|
|
4
5
|
token: string;
|
|
5
6
|
}
|
|
@@ -410,3 +411,556 @@ export interface IObtainPaymentTranHistoryByCodRq {
|
|
|
410
411
|
course_code: number;
|
|
411
412
|
cod_code: number;
|
|
412
413
|
}
|
|
414
|
+
export interface IObtainStudentPaymentByDiffParamRq {
|
|
415
|
+
token: string;
|
|
416
|
+
user: string;
|
|
417
|
+
}
|
|
418
|
+
export interface IObtainStudentPaymentByDiffParamRs {
|
|
419
|
+
code: number;
|
|
420
|
+
document: string;
|
|
421
|
+
full_name: string;
|
|
422
|
+
phone: string;
|
|
423
|
+
email: string;
|
|
424
|
+
overdue_payments: IOverduePaymentsRs;
|
|
425
|
+
outstanding_payments: IOutstandingPaymentsRs;
|
|
426
|
+
payments_made: number;
|
|
427
|
+
previous_course: null;
|
|
428
|
+
color_due: string;
|
|
429
|
+
fulldataCourse: IAllCoursesViewedRs;
|
|
430
|
+
current_cod: ICurrentCodRs;
|
|
431
|
+
all_courses_viewed: IAllCoursesViewedRs[];
|
|
432
|
+
user_wallet: IUserWalletRs;
|
|
433
|
+
}
|
|
434
|
+
export interface IAllCoursesViewedRs {
|
|
435
|
+
code: number;
|
|
436
|
+
course_schedule: string[];
|
|
437
|
+
teacher: string;
|
|
438
|
+
course_type: ICourseTypeCluAndTheRs;
|
|
439
|
+
to_start: Date;
|
|
440
|
+
start_date: Date;
|
|
441
|
+
finish_date: Date;
|
|
442
|
+
capacity: number;
|
|
443
|
+
more_days: null;
|
|
444
|
+
english_level: string;
|
|
445
|
+
agreement: string;
|
|
446
|
+
course_modality: ICourseModalityRq;
|
|
447
|
+
is_renovation: number;
|
|
448
|
+
is_from: null;
|
|
449
|
+
is_club: number;
|
|
450
|
+
is_visible: number;
|
|
451
|
+
updated_at?: Date;
|
|
452
|
+
created_at: Date;
|
|
453
|
+
}
|
|
454
|
+
export interface ICurrentCodRs {
|
|
455
|
+
code: number;
|
|
456
|
+
course: number;
|
|
457
|
+
course_type: number;
|
|
458
|
+
agreement: number;
|
|
459
|
+
english_level: number;
|
|
460
|
+
student: number;
|
|
461
|
+
parent: number;
|
|
462
|
+
aditional_information: number;
|
|
463
|
+
adviser: number;
|
|
464
|
+
cod_status: number;
|
|
465
|
+
cod_price: number;
|
|
466
|
+
cod_paid: number;
|
|
467
|
+
updated_at: Date;
|
|
468
|
+
created_at: Date;
|
|
469
|
+
}
|
|
470
|
+
export interface IOutstandingPaymentsRs {
|
|
471
|
+
outstanding_payments: number;
|
|
472
|
+
number_installments: number;
|
|
473
|
+
}
|
|
474
|
+
export interface IOverduePaymentsRs {
|
|
475
|
+
Overdue_payments: number;
|
|
476
|
+
number_installments: number;
|
|
477
|
+
}
|
|
478
|
+
export interface IUserWalletRs {
|
|
479
|
+
user_code: number;
|
|
480
|
+
full_name: string;
|
|
481
|
+
email_ipt: string;
|
|
482
|
+
phone_number: string;
|
|
483
|
+
is_visible: number;
|
|
484
|
+
}
|
|
485
|
+
export interface IpaymentBillEgressRq {
|
|
486
|
+
payment_method: number;
|
|
487
|
+
payment_services: number;
|
|
488
|
+
payment_wallet: number;
|
|
489
|
+
bank: number;
|
|
490
|
+
generated_for: number;
|
|
491
|
+
generated_by: string;
|
|
492
|
+
total_amount: number;
|
|
493
|
+
payment_amount: number;
|
|
494
|
+
outstanding_amount: number;
|
|
495
|
+
positive_amount: number;
|
|
496
|
+
discount: number;
|
|
497
|
+
payer_name?: string;
|
|
498
|
+
payer_document?: number;
|
|
499
|
+
codeAcademic_plan: number;
|
|
500
|
+
observation: string;
|
|
501
|
+
ref_payment?: string;
|
|
502
|
+
date_payment: Date;
|
|
503
|
+
common_expenses: number;
|
|
504
|
+
type_movements: number;
|
|
505
|
+
manual_receipt: number;
|
|
506
|
+
}
|
|
507
|
+
export interface IcashClosingRq {
|
|
508
|
+
token: string;
|
|
509
|
+
}
|
|
510
|
+
export interface InfoCashClosingRq {
|
|
511
|
+
token: string;
|
|
512
|
+
code: number;
|
|
513
|
+
code_user: number;
|
|
514
|
+
}
|
|
515
|
+
export interface IcashClosingDateRq {
|
|
516
|
+
token: string;
|
|
517
|
+
start_date: string;
|
|
518
|
+
finish_date: string;
|
|
519
|
+
code_user: number;
|
|
520
|
+
}
|
|
521
|
+
interface IPaymentWalletRs {
|
|
522
|
+
name: string;
|
|
523
|
+
cantidad: number;
|
|
524
|
+
total: number;
|
|
525
|
+
}
|
|
526
|
+
export interface IcashClosingDataRs {
|
|
527
|
+
totalIncome: number;
|
|
528
|
+
totalEgress: number;
|
|
529
|
+
paymentMethodIncomeInfo: IPaymentWalletRs[];
|
|
530
|
+
paymentMethodEgressInfo: IPaymentWalletRs[];
|
|
531
|
+
paymentWalletEgressInfo: IPaymentWalletRs[];
|
|
532
|
+
paymentWalletIncomeInfo: IPaymentWalletRs[];
|
|
533
|
+
}
|
|
534
|
+
export interface IncomesAndEgressRq {
|
|
535
|
+
token: string;
|
|
536
|
+
code_type_consult: number;
|
|
537
|
+
code_type_movement: number;
|
|
538
|
+
start_date?: string;
|
|
539
|
+
finish_date?: string;
|
|
540
|
+
user_code: number;
|
|
541
|
+
}
|
|
542
|
+
export interface IObatinBalacesByCoodinatorRq {
|
|
543
|
+
token: string;
|
|
544
|
+
course_modality: number;
|
|
545
|
+
course_status: number;
|
|
546
|
+
user_code: number;
|
|
547
|
+
english_level: English_Levels[];
|
|
548
|
+
start_date: Date;
|
|
549
|
+
end_date: Date;
|
|
550
|
+
}
|
|
551
|
+
export interface IObatinDetailedIncomeByUserAndDateRq {
|
|
552
|
+
token: string;
|
|
553
|
+
user_code: number;
|
|
554
|
+
start_date: Date;
|
|
555
|
+
end_date: Date;
|
|
556
|
+
}
|
|
557
|
+
export interface IObatinDetailedIncomeByUserAndDateRs {
|
|
558
|
+
income: ResponsePay;
|
|
559
|
+
expenses: ResponsePay;
|
|
560
|
+
}
|
|
561
|
+
export interface ResponsePay {
|
|
562
|
+
listPayment: IListPaymentRs[];
|
|
563
|
+
sumByMethod: ISumByMethodPayRs[];
|
|
564
|
+
totalAmount: number;
|
|
565
|
+
dateConsult: IDateConsultRs;
|
|
566
|
+
userConsulted: string;
|
|
567
|
+
}
|
|
568
|
+
export interface IDateConsultRs {
|
|
569
|
+
startDate: Date;
|
|
570
|
+
endDate: Date;
|
|
571
|
+
}
|
|
572
|
+
export interface IListPaymentRs {
|
|
573
|
+
payment_code: number;
|
|
574
|
+
method_name: string;
|
|
575
|
+
method_code: number;
|
|
576
|
+
service: string;
|
|
577
|
+
wallet: string;
|
|
578
|
+
bank: string;
|
|
579
|
+
fullname_student: string;
|
|
580
|
+
fullname_user: string;
|
|
581
|
+
total_amount: number;
|
|
582
|
+
payment_amount: number;
|
|
583
|
+
outstanding_amount: number;
|
|
584
|
+
positive_amount: number;
|
|
585
|
+
discount: number;
|
|
586
|
+
father_name: null | string;
|
|
587
|
+
pather_document: null | string;
|
|
588
|
+
academic_plan: number;
|
|
589
|
+
referenec_payment: null | string;
|
|
590
|
+
create_date: Date;
|
|
591
|
+
observation: null | string;
|
|
592
|
+
invoice_cancelled: number;
|
|
593
|
+
}
|
|
594
|
+
export interface ISumByMethodPayRs {
|
|
595
|
+
Metodo_pago_code: number;
|
|
596
|
+
Metodo_pago: string;
|
|
597
|
+
Total_por_metodo: number;
|
|
598
|
+
}
|
|
599
|
+
export interface IObtainPaymentsMadeByDatesRs {
|
|
600
|
+
amountCancel: number;
|
|
601
|
+
codCode: number;
|
|
602
|
+
creation_date: Date;
|
|
603
|
+
code: number;
|
|
604
|
+
payment_method: number;
|
|
605
|
+
payment_services: number;
|
|
606
|
+
payment_wallet: number;
|
|
607
|
+
bank: number;
|
|
608
|
+
generated_for: number;
|
|
609
|
+
generated_by: number;
|
|
610
|
+
type_movements: number;
|
|
611
|
+
common_expenses: number;
|
|
612
|
+
total_amount: number;
|
|
613
|
+
payment_amount: number;
|
|
614
|
+
outstanding_amount: number;
|
|
615
|
+
positive_amount: number;
|
|
616
|
+
discount: number;
|
|
617
|
+
payer_name: string;
|
|
618
|
+
payer_document: string;
|
|
619
|
+
academic_plan: number;
|
|
620
|
+
payment_reference: null | string;
|
|
621
|
+
payment_date: Date | null;
|
|
622
|
+
observation: null | string;
|
|
623
|
+
invoice_cancelled: number;
|
|
624
|
+
manual_receipt: null | string;
|
|
625
|
+
cod_course: number;
|
|
626
|
+
payment_method_name: string;
|
|
627
|
+
payment_services_name: string;
|
|
628
|
+
payment_wallet_name: string;
|
|
629
|
+
bank_name: string;
|
|
630
|
+
fullname_fathers: null | string;
|
|
631
|
+
generated_for_name: string;
|
|
632
|
+
generated_by_name: string;
|
|
633
|
+
type_movements_name: string;
|
|
634
|
+
academic_plan_name: string;
|
|
635
|
+
user_wallet: IUserWalletRs;
|
|
636
|
+
}
|
|
637
|
+
export interface IUserWalletRs {
|
|
638
|
+
user_code: number;
|
|
639
|
+
full_name: string;
|
|
640
|
+
email_ipt: string;
|
|
641
|
+
phone_number: string;
|
|
642
|
+
is_visible: number;
|
|
643
|
+
}
|
|
644
|
+
export interface SendEmailPayment {
|
|
645
|
+
email: string;
|
|
646
|
+
nameStudent: string;
|
|
647
|
+
phoneStudent: string;
|
|
648
|
+
paymentDate: string;
|
|
649
|
+
academicPlan: string;
|
|
650
|
+
payerDocument: string;
|
|
651
|
+
totalAmount: number;
|
|
652
|
+
paymentAmount: number;
|
|
653
|
+
outstandingAmount: number;
|
|
654
|
+
discount?: number;
|
|
655
|
+
paymentMethod: string;
|
|
656
|
+
bank?: number;
|
|
657
|
+
observation?: string;
|
|
658
|
+
codesRefers: number[];
|
|
659
|
+
codeDiscount: number;
|
|
660
|
+
code: number;
|
|
661
|
+
}
|
|
662
|
+
export interface SendEmailPaymentCancellationRS {
|
|
663
|
+
email: string;
|
|
664
|
+
studentName: string;
|
|
665
|
+
receiptCode: number;
|
|
666
|
+
cancellationDate: string;
|
|
667
|
+
amount: number;
|
|
668
|
+
concept: string;
|
|
669
|
+
}
|
|
670
|
+
export interface IPaymentCorrelativeRq {
|
|
671
|
+
token: string;
|
|
672
|
+
type_category: number;
|
|
673
|
+
start_date: Date;
|
|
674
|
+
end_date: Date;
|
|
675
|
+
}
|
|
676
|
+
export interface IPaymentCorrelativeRq {
|
|
677
|
+
code_type_consult: number | null;
|
|
678
|
+
finish_date: Date;
|
|
679
|
+
start_date: Date;
|
|
680
|
+
token: string;
|
|
681
|
+
type_category: number;
|
|
682
|
+
}
|
|
683
|
+
export interface IObtainGatewayPaymentRecordRq {
|
|
684
|
+
cod: number;
|
|
685
|
+
}
|
|
686
|
+
export interface IUpdateEpaycoPaymentRq {
|
|
687
|
+
ref_validation: string;
|
|
688
|
+
payment_ref: string;
|
|
689
|
+
x_ref_payco: number;
|
|
690
|
+
transaction_id: string;
|
|
691
|
+
status_code: number;
|
|
692
|
+
status_name: string;
|
|
693
|
+
amount: number;
|
|
694
|
+
type_payment: string;
|
|
695
|
+
bank_name: string;
|
|
696
|
+
epayco_pin: string;
|
|
697
|
+
currency_code: string;
|
|
698
|
+
}
|
|
699
|
+
export interface IEpaycoPaymentUpdateRs {
|
|
700
|
+
gatePayment: IGatePaymentRs;
|
|
701
|
+
selfManag: ISelfManagRs;
|
|
702
|
+
epaBilll: IEpaBilllRs;
|
|
703
|
+
updUser: IUpdUserRs | null;
|
|
704
|
+
}
|
|
705
|
+
export interface IEpaBilllRs {
|
|
706
|
+
code: number;
|
|
707
|
+
payment_ref: string;
|
|
708
|
+
amount: number;
|
|
709
|
+
epayco_bank: string;
|
|
710
|
+
epayco_payment_type: string;
|
|
711
|
+
epayco_pin: string;
|
|
712
|
+
epayco_status: string;
|
|
713
|
+
epayco_ref: string;
|
|
714
|
+
}
|
|
715
|
+
export interface IGatePaymentRs {
|
|
716
|
+
code: number;
|
|
717
|
+
payment_service: number;
|
|
718
|
+
cod: number;
|
|
719
|
+
payment_amount: number;
|
|
720
|
+
payment_ref: string;
|
|
721
|
+
epayco_ref: string;
|
|
722
|
+
epayco_status: number;
|
|
723
|
+
}
|
|
724
|
+
export interface ISelfManagRs {
|
|
725
|
+
code: number;
|
|
726
|
+
cod: number;
|
|
727
|
+
course: number;
|
|
728
|
+
payment_selection: number;
|
|
729
|
+
payment_ref: string;
|
|
730
|
+
epayco_ref: string;
|
|
731
|
+
need_pay: number;
|
|
732
|
+
is_pay: number;
|
|
733
|
+
}
|
|
734
|
+
export interface IUpdUserRs {
|
|
735
|
+
code: number;
|
|
736
|
+
name: string;
|
|
737
|
+
last_name: string;
|
|
738
|
+
nick_name: null;
|
|
739
|
+
email: string;
|
|
740
|
+
email_ipt: null;
|
|
741
|
+
role: number;
|
|
742
|
+
phone_indicative: number;
|
|
743
|
+
phone_number: string;
|
|
744
|
+
gender: number;
|
|
745
|
+
birthdate: Date;
|
|
746
|
+
city: number;
|
|
747
|
+
id_card_type: number;
|
|
748
|
+
id_card: string;
|
|
749
|
+
token: string;
|
|
750
|
+
user_status: number;
|
|
751
|
+
password_change: number;
|
|
752
|
+
status_asing: number;
|
|
753
|
+
footprint: null;
|
|
754
|
+
}
|
|
755
|
+
export interface IAccountsBalanceRq {
|
|
756
|
+
token: string;
|
|
757
|
+
user_code: number;
|
|
758
|
+
course_modality: number;
|
|
759
|
+
course_status: number;
|
|
760
|
+
english_level: IEnglishLevelRq[];
|
|
761
|
+
}
|
|
762
|
+
export interface IAccountsBalanceRs {
|
|
763
|
+
courseCode: number;
|
|
764
|
+
EnglishLevel: string;
|
|
765
|
+
StartDate: Date;
|
|
766
|
+
FinishDate: Date;
|
|
767
|
+
CourseType: string;
|
|
768
|
+
CourseModality: string;
|
|
769
|
+
CourseRenovation: string;
|
|
770
|
+
total_student: number;
|
|
771
|
+
ActiveStudents: number;
|
|
772
|
+
StudentsSuspendedPay: number;
|
|
773
|
+
FrozenStudents: number;
|
|
774
|
+
WithdrawnStudents: number;
|
|
775
|
+
scholarshipStudents: IScholarshipStudentRs[];
|
|
776
|
+
studentsWithCashPayments: number;
|
|
777
|
+
studentsWithCreditPayments: number;
|
|
778
|
+
studentsWithScholarships: number;
|
|
779
|
+
lumpSumPaymentsToReceived: number;
|
|
780
|
+
lumpSumPaid: number;
|
|
781
|
+
overdueLumpSum: number;
|
|
782
|
+
lumpSumReceivable: number;
|
|
783
|
+
lossLumpSumPaymentsToReceived: number;
|
|
784
|
+
overallTotalLossOfPaused: number;
|
|
785
|
+
overallTotalLossOfRetirees: number;
|
|
786
|
+
lossLumpSumPaid: number;
|
|
787
|
+
StudentsActive: IStudentsPayRs;
|
|
788
|
+
StudentsSuspendedPayment: IStudentsPayRs;
|
|
789
|
+
StudentsPausedProcess: IStudentsPayRs;
|
|
790
|
+
StudentsRetired: IStudentsPayRs;
|
|
791
|
+
}
|
|
792
|
+
export interface IStudentsPayRs {
|
|
793
|
+
count: number;
|
|
794
|
+
total_overInstallments: number;
|
|
795
|
+
total_amount_expected: number;
|
|
796
|
+
total_amount_paid: number;
|
|
797
|
+
total_amount_receivable: number;
|
|
798
|
+
total_amount_overdue: number;
|
|
799
|
+
data: IStudentsActiveRs[];
|
|
800
|
+
}
|
|
801
|
+
export interface IStudentsActiveRs {
|
|
802
|
+
cod_code: number;
|
|
803
|
+
course_code: number;
|
|
804
|
+
code: number;
|
|
805
|
+
document: string;
|
|
806
|
+
full_name: string;
|
|
807
|
+
phone: string;
|
|
808
|
+
email: string;
|
|
809
|
+
overdue_payments: IOverduePaymentsRs;
|
|
810
|
+
outstanding_payments: IOutstandingPaymentsRs;
|
|
811
|
+
payments_made: IPaymentsMadeRs;
|
|
812
|
+
previos_course: null | number;
|
|
813
|
+
color_due: string;
|
|
814
|
+
}
|
|
815
|
+
export interface IOutstandingPaymentsRs {
|
|
816
|
+
outstanding_payments: number;
|
|
817
|
+
number_installments: number;
|
|
818
|
+
}
|
|
819
|
+
export interface IPaymentsMadeRs {
|
|
820
|
+
made_payments: number;
|
|
821
|
+
number_installments: number;
|
|
822
|
+
}
|
|
823
|
+
export interface IScholarshipStudentRs {
|
|
824
|
+
code: number;
|
|
825
|
+
course: number;
|
|
826
|
+
course_type: number;
|
|
827
|
+
agreement: number;
|
|
828
|
+
english_level: number;
|
|
829
|
+
student: number;
|
|
830
|
+
parent: number;
|
|
831
|
+
aditional_information: number;
|
|
832
|
+
adviser: number;
|
|
833
|
+
cod_status: number;
|
|
834
|
+
cod_price: number;
|
|
835
|
+
cod_paid: number;
|
|
836
|
+
created_at: Date;
|
|
837
|
+
course_code: number;
|
|
838
|
+
}
|
|
839
|
+
export interface IElectronicInvoiceRS {
|
|
840
|
+
token: string;
|
|
841
|
+
start_date: Date | null;
|
|
842
|
+
end_date: Date | null;
|
|
843
|
+
}
|
|
844
|
+
export interface IGetFullPaymentInformationRq {
|
|
845
|
+
token: string;
|
|
846
|
+
page?: number;
|
|
847
|
+
}
|
|
848
|
+
export interface IGetFullPaymentInformationRs {
|
|
849
|
+
ip_applicant: string;
|
|
850
|
+
status: number;
|
|
851
|
+
message: IMessageRq;
|
|
852
|
+
data: IPaymentBillFullDataRs;
|
|
853
|
+
}
|
|
854
|
+
export interface IPaymentBillFullDataRs {
|
|
855
|
+
data: IPaymentBillFullRs[];
|
|
856
|
+
pagination: IPaginationRs;
|
|
857
|
+
}
|
|
858
|
+
export interface IPaymentBillFullRs {
|
|
859
|
+
payment_bill_code: number;
|
|
860
|
+
payment_method: number;
|
|
861
|
+
payment_services: number;
|
|
862
|
+
payment_wallet: number;
|
|
863
|
+
bank_name: string;
|
|
864
|
+
generated_for: number;
|
|
865
|
+
generated_by: number;
|
|
866
|
+
type_movements: number;
|
|
867
|
+
common_expenses: number;
|
|
868
|
+
total_amount: number;
|
|
869
|
+
payment_amount: number;
|
|
870
|
+
outstanding_amount: number;
|
|
871
|
+
positive_amount: number;
|
|
872
|
+
discount: number;
|
|
873
|
+
payer_name: string | null;
|
|
874
|
+
payer_document: string | null;
|
|
875
|
+
academic_plan: number;
|
|
876
|
+
payment_reference: string | null;
|
|
877
|
+
payment_date: string | null;
|
|
878
|
+
observation: string | null;
|
|
879
|
+
invoice_cancelled: number;
|
|
880
|
+
manual_receipt: string | null;
|
|
881
|
+
correlative: string | null;
|
|
882
|
+
transfer_code: number | null;
|
|
883
|
+
electronic_invoice: string | null;
|
|
884
|
+
payment_bill_created_at: string;
|
|
885
|
+
payment_bill_updated_at: string;
|
|
886
|
+
transfer_amount: number | null;
|
|
887
|
+
initial_amount: number | null;
|
|
888
|
+
transfer_bank_name: string | null;
|
|
889
|
+
transfer_date: string | null;
|
|
890
|
+
reference_number: string | null;
|
|
891
|
+
transfer_status: string | null;
|
|
892
|
+
transfer_created_by: number | null;
|
|
893
|
+
transfer_updated_by: number | null;
|
|
894
|
+
image_url: string | null;
|
|
895
|
+
transfer_created_at: string | null;
|
|
896
|
+
transfer_updated_at: string | null;
|
|
897
|
+
payer_code: number;
|
|
898
|
+
payer_name_user: string;
|
|
899
|
+
payer_last_name: string;
|
|
900
|
+
payer_email: string;
|
|
901
|
+
payer_role: number;
|
|
902
|
+
payer_phone: string;
|
|
903
|
+
payer_created_at: string;
|
|
904
|
+
creator_code: number;
|
|
905
|
+
creator_name: string;
|
|
906
|
+
creator_last_name: string;
|
|
907
|
+
creator_email: string;
|
|
908
|
+
creator_role: number;
|
|
909
|
+
creator_phone: string;
|
|
910
|
+
creator_created_at: string;
|
|
911
|
+
cod_code: number;
|
|
912
|
+
course: number;
|
|
913
|
+
course_type: number;
|
|
914
|
+
agreement: number;
|
|
915
|
+
english_level: number;
|
|
916
|
+
student: number;
|
|
917
|
+
cod_parent: number | null;
|
|
918
|
+
aditional_information: number;
|
|
919
|
+
adviser: number;
|
|
920
|
+
cod_status: number;
|
|
921
|
+
cod_price: number | null;
|
|
922
|
+
cod_paid: number;
|
|
923
|
+
cod_created_at: string;
|
|
924
|
+
cod_updated_at: string;
|
|
925
|
+
parent_code: number | null;
|
|
926
|
+
parent_name: string | null;
|
|
927
|
+
parent_last_name: string | null;
|
|
928
|
+
parent_id_card: string | null;
|
|
929
|
+
parent_phone: string | null;
|
|
930
|
+
occupation: string | null;
|
|
931
|
+
office_adrress: string | null;
|
|
932
|
+
parent_created_at: string | null;
|
|
933
|
+
parent_updated_at: string | null;
|
|
934
|
+
}
|
|
935
|
+
export interface IPaginationRs {
|
|
936
|
+
total: number;
|
|
937
|
+
per_page: number;
|
|
938
|
+
current_page: number;
|
|
939
|
+
last_page: number;
|
|
940
|
+
from: number;
|
|
941
|
+
to: number;
|
|
942
|
+
}
|
|
943
|
+
export interface ISearchPaymentBillRq {
|
|
944
|
+
token: string;
|
|
945
|
+
page?: number;
|
|
946
|
+
reference_number?: string;
|
|
947
|
+
payer_name?: string;
|
|
948
|
+
electronic_invoice?: string;
|
|
949
|
+
payment_bill_code?: string;
|
|
950
|
+
}
|
|
951
|
+
export interface ISearchPaymentBillRs {
|
|
952
|
+
ip_applicant: string;
|
|
953
|
+
status: number;
|
|
954
|
+
message: {
|
|
955
|
+
code: number;
|
|
956
|
+
message: string;
|
|
957
|
+
};
|
|
958
|
+
data: IPaymentBillFullDataRs;
|
|
959
|
+
}
|
|
960
|
+
export interface IGetSummaryByCoordinatorRq {
|
|
961
|
+
token: string;
|
|
962
|
+
start_date?: string;
|
|
963
|
+
end_date?: string;
|
|
964
|
+
grace_period_days?: number;
|
|
965
|
+
}
|
|
966
|
+
export {};
|