iptdevs-design-system 3.1.923 → 3.1.925
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/cod/cod-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.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/cod/cod-rq.model.d.ts +174 -0
- package/lib/core/models/user/user-rq.model.d.ts +27 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -383,3 +383,177 @@ export interface ICodPaymentRq {
|
|
|
383
383
|
token: string;
|
|
384
384
|
cod_code: number;
|
|
385
385
|
}
|
|
386
|
+
export interface IAllCodInformationForExportingRs {
|
|
387
|
+
data_cod: IDataCodInfRs;
|
|
388
|
+
data_parent: IDataParentInfRs;
|
|
389
|
+
data_referral: IDataReferralRs[];
|
|
390
|
+
data_payment: IDataPaymentInfRs[];
|
|
391
|
+
data_course: IDataCourseInfRs;
|
|
392
|
+
}
|
|
393
|
+
export interface IDataCodInfRs {
|
|
394
|
+
code: number;
|
|
395
|
+
course: number;
|
|
396
|
+
course_type: number;
|
|
397
|
+
agreement: number;
|
|
398
|
+
english_level: number;
|
|
399
|
+
student: number;
|
|
400
|
+
parent: number | null;
|
|
401
|
+
aditional_information: number;
|
|
402
|
+
adviser: number;
|
|
403
|
+
cod_status: number;
|
|
404
|
+
cod_price: number;
|
|
405
|
+
cod_paid: number;
|
|
406
|
+
updated_at: Date;
|
|
407
|
+
created_at: Date;
|
|
408
|
+
course_code: number;
|
|
409
|
+
course_type_name: string;
|
|
410
|
+
course_modality_name: number;
|
|
411
|
+
course_type_label: string;
|
|
412
|
+
course_start: Date;
|
|
413
|
+
course_finish: Date;
|
|
414
|
+
teacher_code: number;
|
|
415
|
+
english_level_name: string;
|
|
416
|
+
teacher_name: string;
|
|
417
|
+
agreement_name: string;
|
|
418
|
+
student_name: string;
|
|
419
|
+
student_type_idcard: string;
|
|
420
|
+
student_idcard: string;
|
|
421
|
+
student_email: string;
|
|
422
|
+
phone_prefix: string;
|
|
423
|
+
student_phone: string;
|
|
424
|
+
student_gender: number;
|
|
425
|
+
student_birthdate: Date;
|
|
426
|
+
student_occupation: string;
|
|
427
|
+
student_disability: string;
|
|
428
|
+
student_health_regimen: string;
|
|
429
|
+
student_observation: string;
|
|
430
|
+
student_stratum: string;
|
|
431
|
+
student_civil_status: string;
|
|
432
|
+
student_mkt_reason: string;
|
|
433
|
+
student_hofamily: number;
|
|
434
|
+
student_afro_descendant: number;
|
|
435
|
+
student_displaced: number;
|
|
436
|
+
student_indigenous: number;
|
|
437
|
+
student_reinserted: number;
|
|
438
|
+
student_rom_population: number;
|
|
439
|
+
adviser_name: string;
|
|
440
|
+
cod_status_name: string;
|
|
441
|
+
cod_price_name: string;
|
|
442
|
+
}
|
|
443
|
+
export interface IDataCourseInfRs {
|
|
444
|
+
theory: ICourseDetailRs;
|
|
445
|
+
club: ICourseDetailRs;
|
|
446
|
+
}
|
|
447
|
+
export interface ICourseDetailRs {
|
|
448
|
+
course_code: number;
|
|
449
|
+
schedule_code: number;
|
|
450
|
+
classroom_code: number;
|
|
451
|
+
course_modality: number;
|
|
452
|
+
classroom_name: string;
|
|
453
|
+
classroom_capacity: number;
|
|
454
|
+
classroom_email: string;
|
|
455
|
+
classroom_adress: string;
|
|
456
|
+
classroom_status: number;
|
|
457
|
+
campus_name: string;
|
|
458
|
+
detail_schedule: IDetailScheduleInfRs;
|
|
459
|
+
}
|
|
460
|
+
export interface IDetailScheduleInfRs {
|
|
461
|
+
ClassDays: string;
|
|
462
|
+
Times: ITimesInfRs;
|
|
463
|
+
}
|
|
464
|
+
export interface ITimesInfRs {
|
|
465
|
+
StarTime: string;
|
|
466
|
+
EndTime: string;
|
|
467
|
+
}
|
|
468
|
+
export interface IDataParentInfRs {
|
|
469
|
+
code: number;
|
|
470
|
+
name: string;
|
|
471
|
+
last_name: string;
|
|
472
|
+
id_card_type: number;
|
|
473
|
+
id_card: string;
|
|
474
|
+
phone_indicative: number;
|
|
475
|
+
phone_number: string;
|
|
476
|
+
occupation: string;
|
|
477
|
+
office_adrress: string;
|
|
478
|
+
email: string | null;
|
|
479
|
+
updated_at: Date;
|
|
480
|
+
created_at: Date;
|
|
481
|
+
phone_indicative_prefix: string;
|
|
482
|
+
type_id_card_acronym: string;
|
|
483
|
+
}
|
|
484
|
+
export interface IDataPaymentInfRs {
|
|
485
|
+
code: number;
|
|
486
|
+
cod: number;
|
|
487
|
+
timely_date: Date;
|
|
488
|
+
amount: number;
|
|
489
|
+
fee_number: number;
|
|
490
|
+
status: number;
|
|
491
|
+
updated_amount_by: null;
|
|
492
|
+
updated_by: null;
|
|
493
|
+
updated_at: Date;
|
|
494
|
+
payment_bills_count?: number;
|
|
495
|
+
credit_payment_installment?: number | null;
|
|
496
|
+
payment_bills?: IPaymentBillInfRs[];
|
|
497
|
+
}
|
|
498
|
+
export interface IPaymentBillInfRs {
|
|
499
|
+
code: number;
|
|
500
|
+
cod_payment: number;
|
|
501
|
+
amount: number;
|
|
502
|
+
created_at: Date;
|
|
503
|
+
invoice_cancelled: number;
|
|
504
|
+
payment_bill: number;
|
|
505
|
+
}
|
|
506
|
+
export interface IDataReferralRs {
|
|
507
|
+
code: number;
|
|
508
|
+
amount_payable: number;
|
|
509
|
+
payment_status: number;
|
|
510
|
+
transaction_number: null;
|
|
511
|
+
code_tiket: null;
|
|
512
|
+
cod_code: number;
|
|
513
|
+
student_code: number;
|
|
514
|
+
student_id_card: string;
|
|
515
|
+
student_role_code: number;
|
|
516
|
+
student_role: string;
|
|
517
|
+
student_name: string;
|
|
518
|
+
student_last_name: string;
|
|
519
|
+
student_phone_number: string;
|
|
520
|
+
student_email: string;
|
|
521
|
+
student_enrollment_status: string;
|
|
522
|
+
student_course_type: string;
|
|
523
|
+
student_adviser: string;
|
|
524
|
+
referred_code: number;
|
|
525
|
+
referred_id_card: string;
|
|
526
|
+
referred_role_code: number;
|
|
527
|
+
referred_role: string;
|
|
528
|
+
referred_name: string;
|
|
529
|
+
referred_last_name: string;
|
|
530
|
+
referred_phone_number: string;
|
|
531
|
+
referred_email: string;
|
|
532
|
+
is_redeemable: IDataPaymentInfRs | null;
|
|
533
|
+
all_dates_valid: IAllDatesValidRs;
|
|
534
|
+
}
|
|
535
|
+
export interface IAllDatesValidRs {
|
|
536
|
+
cod: ICodInfRs;
|
|
537
|
+
allPayments: number;
|
|
538
|
+
paymentCod: IDataPaymentInfRs[];
|
|
539
|
+
status: string;
|
|
540
|
+
timelyPayment: boolean;
|
|
541
|
+
allDatesValid: boolean;
|
|
542
|
+
statementRequiredPayments: string;
|
|
543
|
+
requiredPayments: boolean;
|
|
544
|
+
}
|
|
545
|
+
export interface ICodInfRs {
|
|
546
|
+
code: number;
|
|
547
|
+
course: number;
|
|
548
|
+
course_type: number;
|
|
549
|
+
agreement: number;
|
|
550
|
+
english_level: number;
|
|
551
|
+
student: number;
|
|
552
|
+
parent: null;
|
|
553
|
+
aditional_information: number;
|
|
554
|
+
adviser: number;
|
|
555
|
+
cod_status: number;
|
|
556
|
+
cod_price: number;
|
|
557
|
+
cod_paid: number;
|
|
558
|
+
created_at: Date;
|
|
559
|
+
}
|
|
@@ -215,3 +215,30 @@ export interface IGeUsersFromDepartmentsRq {
|
|
|
215
215
|
departments: number[];
|
|
216
216
|
roll_not_authorize: number[];
|
|
217
217
|
}
|
|
218
|
+
export interface IFormDataRq {
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
name: string;
|
|
221
|
+
last_name: string;
|
|
222
|
+
email: string;
|
|
223
|
+
id_card_type: string;
|
|
224
|
+
id_card: string;
|
|
225
|
+
phone_indicative: string;
|
|
226
|
+
phone_number: string;
|
|
227
|
+
country: string;
|
|
228
|
+
state: string;
|
|
229
|
+
city: string;
|
|
230
|
+
role: string;
|
|
231
|
+
service_hour: string;
|
|
232
|
+
changePassword: boolean;
|
|
233
|
+
password: string;
|
|
234
|
+
re_password: string;
|
|
235
|
+
parent_name?: string;
|
|
236
|
+
parent_last_name?: string;
|
|
237
|
+
parent_id_card_type?: string;
|
|
238
|
+
parent_id_card?: string;
|
|
239
|
+
parent_phone_indicative?: string;
|
|
240
|
+
parent_phone_number?: string;
|
|
241
|
+
parent_occupation?: string;
|
|
242
|
+
parent_office_adrress?: string;
|
|
243
|
+
parent_email?: string;
|
|
244
|
+
}
|
|
@@ -2,7 +2,7 @@ import { IgetCoursesFinishAndunassignedRq } from './../../models/reports/reports
|
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { GetDiscountCouponsRq } from '../../models/payment/payment-rq.model';
|
|
5
|
-
import { CreateCODRq, FullDataCODRq, GetCodByCourseRq, IUpdateCODRq, IobtaincodCurrrentAndLevelFullDataRenovationsRq } from '../../models/cod/cod-rq.model';
|
|
5
|
+
import { CreateCODRq, FullDataCODRq, GetCodByCourseRq, IUpdateCODRq, IobtaincodCurrrentAndLevelFullDataRenovationsRq, ICodPaymentRq } from '../../models/cod/cod-rq.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
7
7
|
import { AdicInfoByCodeRq, CodPricesRq, IGoalInterfaceRq, ParentByCodeRq, IObtainRefersByUserRq, IAssignPosibleStudentForValueRq, IGetContactsadviserRq, IObtainCodPricesRq, IAssigningAdvisorGoalsRq, IReportCodForAdviserRq, ICreateTicketReferralRq, ICodDetailsbyAdviser, IGetPosibleStudentByDateRq, IGetUserAdviserCommercialByTypeAssingContactsRq, AssingCustomersByTypeAssingContactForAdviserRq, getSummaryByCommercialAdvisorRq } from '../../models/commercial/commercial.model';
|
|
8
8
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
@@ -64,6 +64,7 @@ export declare class CommercialService extends IPTGeneralService {
|
|
|
64
64
|
obtainAdditionalUserDataByCourse(params: IgetCoursesFinishAndunassignedRq): Observable<any>;
|
|
65
65
|
obtainAllReferralsByUser(params: IObtainAllReferralsByUserRq): Observable<any>;
|
|
66
66
|
getSummaryByCommercialAdvisor(params: getSummaryByCommercialAdvisorRq): Observable<any>;
|
|
67
|
+
getAllCodInformationForExporting(params: ICodPaymentRq): Observable<any>;
|
|
67
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
|
|
68
69
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
|
|
69
70
|
}
|