iptdevs-design-system 3.2.25 → 3.2.27
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/models/cod/cod-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/course/courses.model.mjs +1 -1
- package/esm2020/lib/core/models/parameters/parameters-rs.model.mjs +1 -1
- package/esm2020/lib/core/models/student/student.interface.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +16 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +22 -0
- package/lib/core/models/cod/cod-rq.model.d.ts +41 -0
- package/lib/core/models/course/courses.model.d.ts +31 -0
- package/lib/core/models/parameters/parameters-rs.model.d.ts +6 -0
- package/lib/core/models/student/student.interface.d.ts +22 -0
- package/lib/core/services/budget-service/budget-service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -963,4 +963,26 @@ export interface IGetSummaryByCoordinatorRq {
|
|
|
963
963
|
end_date?: string;
|
|
964
964
|
grace_period_days?: number;
|
|
965
965
|
}
|
|
966
|
+
export interface IAddNewQuotaWithCommentsRq {
|
|
967
|
+
token: string;
|
|
968
|
+
cod: number;
|
|
969
|
+
fee_number: number;
|
|
970
|
+
valueAmount: number;
|
|
971
|
+
timely_date: string;
|
|
972
|
+
observation: string;
|
|
973
|
+
}
|
|
974
|
+
export interface IDeleteQuotaRecordWithCommentsRq {
|
|
975
|
+
token: string;
|
|
976
|
+
cod_payment: number;
|
|
977
|
+
observation: string;
|
|
978
|
+
}
|
|
979
|
+
export interface IModifyQuotaDataWithCommentsRq {
|
|
980
|
+
token: string;
|
|
981
|
+
cod_payment: number;
|
|
982
|
+
fee_number: number | null;
|
|
983
|
+
type_modification: number;
|
|
984
|
+
value_amount: number | null;
|
|
985
|
+
timely_date: string | null;
|
|
986
|
+
observation: string;
|
|
987
|
+
}
|
|
966
988
|
export {};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { MessageRq } from "../attendance/attendance.interface";
|
|
2
|
+
import { ICourseRsAllFields, ICourseTypeAllFieldsRs } from "../course/courses.model";
|
|
3
|
+
import { UserStudent } from "../student/student.interface";
|
|
2
4
|
export interface CodRq {
|
|
3
5
|
course: CourseInformationCOD;
|
|
4
6
|
student: StudentCOD;
|
|
@@ -264,6 +266,7 @@ export interface AgreementCodRq {
|
|
|
264
266
|
name: string;
|
|
265
267
|
end_time: Date;
|
|
266
268
|
category: number | null;
|
|
269
|
+
status: number | null;
|
|
267
270
|
}
|
|
268
271
|
export interface CodPriceCodRq {
|
|
269
272
|
code: number;
|
|
@@ -274,6 +277,9 @@ export interface CodPriceCodRq {
|
|
|
274
277
|
financed_price: number;
|
|
275
278
|
fee_number: number;
|
|
276
279
|
quota_price: number;
|
|
280
|
+
paid_level: number | null;
|
|
281
|
+
campus_enterprise: number | null;
|
|
282
|
+
is_active: number | null;
|
|
277
283
|
}
|
|
278
284
|
export interface CodStatusCodRq {
|
|
279
285
|
code: number;
|
|
@@ -557,3 +563,38 @@ export interface ICodInfRs {
|
|
|
557
563
|
cod_paid: number;
|
|
558
564
|
created_at: Date;
|
|
559
565
|
}
|
|
566
|
+
export interface ICodPaymentRs {
|
|
567
|
+
code: number;
|
|
568
|
+
cod: number;
|
|
569
|
+
timely_date: Date;
|
|
570
|
+
amount: number;
|
|
571
|
+
fee_number: number;
|
|
572
|
+
status: number;
|
|
573
|
+
updated_amount_by: null;
|
|
574
|
+
updated_by: null;
|
|
575
|
+
deleted_at: null;
|
|
576
|
+
}
|
|
577
|
+
export interface ICodBystudentsRs {
|
|
578
|
+
code: number;
|
|
579
|
+
course: ICourseRsAllFields;
|
|
580
|
+
course_type: ICourseTypeAllFieldsRs;
|
|
581
|
+
agreement: AgreementCodRq;
|
|
582
|
+
english_level: EnglishLevelCodRq;
|
|
583
|
+
student: UserStudent;
|
|
584
|
+
parent: IDataParentInfRs | null;
|
|
585
|
+
aditional_information: AditionalInformationCodRq;
|
|
586
|
+
adviser: string;
|
|
587
|
+
cod_status: CodStatusRq;
|
|
588
|
+
cod_price: CodPriceCodRq;
|
|
589
|
+
cod_paid: number;
|
|
590
|
+
accept_terms_code: null;
|
|
591
|
+
updated_at: Date;
|
|
592
|
+
created_at: Date;
|
|
593
|
+
cod_payment: ICodPaymentRs[] | null;
|
|
594
|
+
cod_renovation: boolean;
|
|
595
|
+
level_of_english_to_be_taken: EnglishLevelCodRq[];
|
|
596
|
+
is_final_scoreValid: boolean;
|
|
597
|
+
is_total_absences_valid: boolean;
|
|
598
|
+
current_payment_plan_valid: boolean;
|
|
599
|
+
cod_is_Progress: boolean;
|
|
600
|
+
}
|
|
@@ -118,3 +118,34 @@ export interface ICourseChangeAuditRs {
|
|
|
118
118
|
student_phone_number: string;
|
|
119
119
|
cod_code_value: number;
|
|
120
120
|
}
|
|
121
|
+
export interface ICourseRsAllFields {
|
|
122
|
+
code: number;
|
|
123
|
+
course_schedule: number;
|
|
124
|
+
teacher: number;
|
|
125
|
+
course_type: number;
|
|
126
|
+
to_start: string;
|
|
127
|
+
start_date: string;
|
|
128
|
+
finish_date: string;
|
|
129
|
+
english_level: number;
|
|
130
|
+
course_modality: number;
|
|
131
|
+
capacity: number;
|
|
132
|
+
campus: number;
|
|
133
|
+
agreement: number;
|
|
134
|
+
is_club: number;
|
|
135
|
+
is_from: number;
|
|
136
|
+
is_renovation: number;
|
|
137
|
+
is_visible: number;
|
|
138
|
+
more_days: string | null;
|
|
139
|
+
created_at: string;
|
|
140
|
+
}
|
|
141
|
+
export interface ICourseTypeAllFieldsRs {
|
|
142
|
+
code: number;
|
|
143
|
+
name: string;
|
|
144
|
+
label: string;
|
|
145
|
+
number_class: number;
|
|
146
|
+
number_class_club: number;
|
|
147
|
+
academic_plan: string;
|
|
148
|
+
theory_classes: number;
|
|
149
|
+
club_classes: number;
|
|
150
|
+
category: number;
|
|
151
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ICityByState } from "../parameters/parameters-rs.model";
|
|
1
2
|
export interface GetStudentsByCourseRq {
|
|
2
3
|
token: string;
|
|
3
4
|
course_code: number;
|
|
@@ -20,3 +21,24 @@ export interface IStudentRsTwo {
|
|
|
20
21
|
id_card: string;
|
|
21
22
|
token: string;
|
|
22
23
|
}
|
|
24
|
+
export interface UserStudent {
|
|
25
|
+
code: number;
|
|
26
|
+
name: string;
|
|
27
|
+
last_name: string;
|
|
28
|
+
nick_name?: string;
|
|
29
|
+
id_card: string;
|
|
30
|
+
id_card_type: number;
|
|
31
|
+
email: string;
|
|
32
|
+
email_ipt?: string;
|
|
33
|
+
phone_number: string;
|
|
34
|
+
phone_indicative: number;
|
|
35
|
+
gender: number;
|
|
36
|
+
birthdate: string;
|
|
37
|
+
role: number;
|
|
38
|
+
user_status: number;
|
|
39
|
+
status_asing: number;
|
|
40
|
+
password_change: number;
|
|
41
|
+
token: string;
|
|
42
|
+
city: ICityByState[];
|
|
43
|
+
updated_at: string;
|
|
44
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse } 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, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq, IObatinDetailedIncomeByUserAndDateRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs, ISearchPaymentBillRq, ISearchPaymentBillRs, IGetSummaryByCoordinatorRq } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq, IObatinDetailedIncomeByUserAndDateRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS, IAccountsBalanceRq, IGetFullPaymentInformationRq, IGetFullPaymentInformationRs, ISearchPaymentBillRq, ISearchPaymentBillRs, IGetSummaryByCoordinatorRq, IAddNewQuotaWithCommentsRq, IDeleteQuotaRecordWithCommentsRq, IModifyQuotaDataWithCommentsRq } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq, IDeleteCodPaymentsRq, ICreateCodPaymentsRq, ITransferStatusUpdateRequestRq, IUpdateElectronicInvoiceRq, IValidationOfTransfersByNumberRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -112,6 +112,9 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
112
112
|
obtainPaymentPlanByCodeCod(codeCod: number): Observable<any>;
|
|
113
113
|
receivePaymentsMadeToCod(codeCod: number): Observable<any>;
|
|
114
114
|
newRegistePaymentBillPreassignedCod(params: PaymentBillRq2): Observable<any>;
|
|
115
|
+
addNewQuotaWithComments(params: IAddNewQuotaWithCommentsRq): Observable<any>;
|
|
116
|
+
deleteQuotaRecordWithComments(params: IDeleteQuotaRecordWithCommentsRq): Observable<any>;
|
|
117
|
+
modifyQuotaDataWithComments(params: IModifyQuotaDataWithCommentsRq): Observable<any>;
|
|
115
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
116
119
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
117
120
|
}
|