iptdevs-design-system 3.2.122 → 3.2.126
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/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/course/courses.model.mjs +1 -1
- package/esm2020/lib/core/models/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +6 -1
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +10 -0
- package/lib/core/models/course/course-rq.model.d.ts +8 -0
- package/lib/core/models/course/courses.model.d.ts +11 -6
- package/lib/core/models/payment/payment-rq.model.d.ts +26 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +2 -1
- package/lib/core/services/course-service/course-service.model.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1104,6 +1104,7 @@ export interface IPreviewModifyPaymentPlanRs {
|
|
|
1104
1104
|
datapay: IPreviewNewPaymentPlanRs[];
|
|
1105
1105
|
new_cod_price: IPreviewNewCodPriceRs[];
|
|
1106
1106
|
new_cod_payment_level: IPreviewNewCodPaymentLevelRs;
|
|
1107
|
+
contado: boolean;
|
|
1107
1108
|
}
|
|
1108
1109
|
export interface IPreviewNewPaymentPlanRs {
|
|
1109
1110
|
status: number;
|
|
@@ -1142,6 +1143,7 @@ export interface ISaveModifiedPaymentPlanRq {
|
|
|
1142
1143
|
fee_value: number;
|
|
1143
1144
|
amount_fees_generate: number;
|
|
1144
1145
|
fees_attended: number;
|
|
1146
|
+
contado: boolean;
|
|
1145
1147
|
}
|
|
1146
1148
|
export interface ISaveModifiedPaymentPlanRs {
|
|
1147
1149
|
cod: number;
|
|
@@ -1151,4 +1153,12 @@ export interface ISaveModifiedPaymentPlanRs {
|
|
|
1151
1153
|
created: number;
|
|
1152
1154
|
deleted: number;
|
|
1153
1155
|
}
|
|
1156
|
+
export interface IgetStudentHasCourseChangesRs {
|
|
1157
|
+
code: number;
|
|
1158
|
+
has_audit: number;
|
|
1159
|
+
}
|
|
1160
|
+
export interface IgetStudentHasCourseChangesRq {
|
|
1161
|
+
token: string;
|
|
1162
|
+
cod: number;
|
|
1163
|
+
}
|
|
1154
1164
|
export {};
|
|
@@ -507,3 +507,11 @@ export interface ICourseDisableByCodeRq {
|
|
|
507
507
|
token: string;
|
|
508
508
|
course: number[];
|
|
509
509
|
}
|
|
510
|
+
export interface IObtainStudentHasCourseChangesRq {
|
|
511
|
+
token: string;
|
|
512
|
+
code_student: number;
|
|
513
|
+
}
|
|
514
|
+
export interface IObtainCourseChangeAuditByCodCodeRq {
|
|
515
|
+
token: string;
|
|
516
|
+
cod_code: number;
|
|
517
|
+
}
|
|
@@ -149,14 +149,10 @@ export interface ICourseTypeAllFieldsRs {
|
|
|
149
149
|
club_classes: number;
|
|
150
150
|
category: number;
|
|
151
151
|
}
|
|
152
|
-
export interface IObtainCourseChangeAuditByCodCodeRq {
|
|
153
|
-
token: string;
|
|
154
|
-
cod_code: number;
|
|
155
|
-
}
|
|
156
152
|
export interface IObtainCourseChangeAuditByCodCodeRs {
|
|
157
153
|
code: number;
|
|
158
154
|
made_by: number;
|
|
159
|
-
requested_by:
|
|
155
|
+
requested_by: string;
|
|
160
156
|
old_course: number;
|
|
161
157
|
new_course: number;
|
|
162
158
|
type_action: number;
|
|
@@ -186,7 +182,7 @@ export interface IObtainAttendanceAuditRs {
|
|
|
186
182
|
export interface IObtainNotesCourseAuditRs {
|
|
187
183
|
code: number;
|
|
188
184
|
note_code: number;
|
|
189
|
-
note_type:
|
|
185
|
+
note_type: IObtainNoteTypeAuditRs;
|
|
190
186
|
note_value: number;
|
|
191
187
|
observation: string;
|
|
192
188
|
created_at: Date;
|
|
@@ -197,3 +193,12 @@ export interface IObtainUserCourseAuditRs {
|
|
|
197
193
|
course_code: number;
|
|
198
194
|
notes: number;
|
|
199
195
|
}
|
|
196
|
+
export interface IObtainNoteTypeAuditRs {
|
|
197
|
+
code: number;
|
|
198
|
+
note_name: string;
|
|
199
|
+
percent: number;
|
|
200
|
+
}
|
|
201
|
+
export interface IObtainStudentHasCourseChangesRs {
|
|
202
|
+
code: number;
|
|
203
|
+
has_audit: number;
|
|
204
|
+
}
|
|
@@ -145,6 +145,32 @@ export interface GetDiscountCouponsRq {
|
|
|
145
145
|
academic_plan: number;
|
|
146
146
|
code_student: number;
|
|
147
147
|
}
|
|
148
|
+
export interface IGetDiscountCouponInformationRq {
|
|
149
|
+
token: string;
|
|
150
|
+
code_student: number;
|
|
151
|
+
discount_ref: string;
|
|
152
|
+
fee_codes: number[];
|
|
153
|
+
}
|
|
154
|
+
export interface IGetDiscountCouponInformationRs {
|
|
155
|
+
exists: boolean;
|
|
156
|
+
applicable: boolean;
|
|
157
|
+
description: string;
|
|
158
|
+
discount: IDiscountInfoRs | null;
|
|
159
|
+
discount_type_name: string | null;
|
|
160
|
+
type_label: string | null;
|
|
161
|
+
}
|
|
162
|
+
export interface IDiscountInfoRs {
|
|
163
|
+
code: number;
|
|
164
|
+
discount_ref: string;
|
|
165
|
+
name: string;
|
|
166
|
+
type: number;
|
|
167
|
+
discount_type: number;
|
|
168
|
+
percentage: number;
|
|
169
|
+
start_date: string;
|
|
170
|
+
end_date: string;
|
|
171
|
+
state: number;
|
|
172
|
+
description: string;
|
|
173
|
+
}
|
|
148
174
|
export interface SearchDiscountCouponsRq {
|
|
149
175
|
code: number;
|
|
150
176
|
discountRef: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IgetCoursesFinishAndunassignedRq } from './../../models/reports/reports.model';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { GetDiscountCouponsRq } from '../../models/payment/payment-rq.model';
|
|
4
|
+
import { GetDiscountCouponsRq, IGetDiscountCouponInformationRq } from '../../models/payment/payment-rq.model';
|
|
5
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, IGetPosibleStudentByDateRq, IGetUserAdviserCommercialByTypeAssingContactsRq, AssingCustomersByTypeAssingContactForAdviserRq, ICreateTypePaymentRq, ICreateCommissionAreaRq, IAssignCourseTypesToAreaRq, ICreatePaymentAreaCommissionRq, ICreateTypeUserCommissionRq, IAssignCommissionModelToUserRq, ITokenRq, IGetSummaryByCommercialAdvisorRq, IGetCodStudentDetailsByAdviserRq, IUpdatePaymentAreaCommissionRq, IAddConditionToRuleRq, IUpdateTypePaymentRq, IAssignSubordinateRq, IRemoveSubordinateRq, IUpdateTypeUserCommissionRq, IPayAdvisorBonusesRq, IPaySelectedCommissionsRq, IAssignSubordinatesMassiveRq, IDeleteTypeUserCommissionRq } from '../../models/commercial/commercial.model';
|
|
@@ -21,6 +21,7 @@ export declare class CommercialService extends IPTGeneralService {
|
|
|
21
21
|
getCodHistoryByCourse(request: any): Observable<any>;
|
|
22
22
|
getCodHistoryByCourseExport(request: any): Observable<any>;
|
|
23
23
|
getDiscountCoupons(params: GetDiscountCouponsRq): Observable<any>;
|
|
24
|
+
getDiscountCouponInformation(params: IGetDiscountCouponInformationRq): Observable<any>;
|
|
24
25
|
getCodPricesByAgreement(code: number): Observable<any>;
|
|
25
26
|
getCodParentByCode(params: ParentByCodeRq): Observable<any>;
|
|
26
27
|
getAdicInfoByCode(params: AdicInfoByCodeRq): Observable<any>;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IPTGeneralService } from '../service-enviroments';
|
|
4
|
-
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq, CreateCourseEventRq, IUpdateCourseEventByCodeNewRq, DeleteCourseEventRq, GetEventEditDataRq, GetCourseScheduleRq, GetLastEventByCourseCodeRq, GetCourseAssignedByCourseCodeRq, EnableCourseByRequestAndCodeRq, ICourseDisableByCodeRq } from '../../models/course/course-rq.model';
|
|
4
|
+
import { IObtainCourseChangeAuditByCodCodeRq, IObtainStudentHasCourseChangesRq, CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq, CreateCourseEventRq, IUpdateCourseEventByCodeNewRq, DeleteCourseEventRq, GetEventEditDataRq, GetCourseScheduleRq, GetLastEventByCourseCodeRq, GetCourseAssignedByCourseCodeRq, EnableCourseByRequestAndCodeRq, ICourseDisableByCodeRq } from '../../models/course/course-rq.model';
|
|
5
5
|
import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
|
|
6
6
|
import { ITokenRq } from '../../models/commercial/commercial.model';
|
|
7
7
|
import { ICourseChangeAuditRq } from '../../models/course/courses.model';
|
|
8
8
|
import { ITransferGetAllRq } from '../../models/payment/payment-rq.model';
|
|
9
|
-
import { IObtainCourseChangeAuditByCodCodeRq } from '../../models/course/courses.model';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class CourseService extends IPTGeneralService {
|
|
12
11
|
private http;
|
|
@@ -49,6 +48,7 @@ export declare class CourseService extends IPTGeneralService {
|
|
|
49
48
|
postDisableCourseByCode(params: ICourseDisableByCodeRq): Observable<any>;
|
|
50
49
|
getAllCourseTypes(request: ITokenRq): Observable<any>;
|
|
51
50
|
getAvailableCoursesTheRenovationByCourse(params: any): Observable<any>;
|
|
51
|
+
obtainStudentHasCourseChanges(params: IObtainStudentHasCourseChangesRq): Observable<any>;
|
|
52
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
53
53
|
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
54
54
|
}
|