iptdevs-design-system 3.2.115 → 3.2.118

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.
@@ -1084,4 +1084,71 @@ export interface obtainPendingGatewayPaymentsForProcessingRs {
1084
1084
  dayVenc?: number;
1085
1085
  colorDay?: string;
1086
1086
  }
1087
+ export interface IPreviewModifyPaymentPlanRq {
1088
+ token: string;
1089
+ cod: number;
1090
+ old_course: number;
1091
+ new_course: number;
1092
+ keep_old_values: boolean;
1093
+ number_old_fees_keep: number;
1094
+ number_fees_create: number;
1095
+ }
1096
+ export interface IPreviewModifyPaymentPlanRs {
1097
+ cod: number;
1098
+ enrrollmet_value: number;
1099
+ fee_value: number;
1100
+ amount_fees_generate: number;
1101
+ fees_attended: null;
1102
+ old_corse: number;
1103
+ new_corse: number;
1104
+ datapay: IPreviewNewPaymentPlanRs[];
1105
+ new_cod_price: IPreviewNewCodPriceRs[];
1106
+ new_cod_payment_level: IPreviewNewCodPaymentLevelRs;
1107
+ }
1108
+ export interface IPreviewNewPaymentPlanRs {
1109
+ status: number;
1110
+ fee_number: number;
1111
+ amount: number;
1112
+ timely_date: Date;
1113
+ }
1114
+ export interface IPreviewNewCodPaymentLevelRs {
1115
+ code: number;
1116
+ type_course: number;
1117
+ english_level: number;
1118
+ level_order: number;
1119
+ fees_for_level: number;
1120
+ }
1121
+ export interface IPreviewNewCodPriceRs {
1122
+ code: number;
1123
+ name: string;
1124
+ agreement: number;
1125
+ type_course: number;
1126
+ course_modality: number;
1127
+ enrollment: number;
1128
+ normal_price: number;
1129
+ financed_price: number;
1130
+ fee_number: number;
1131
+ quota_price: number;
1132
+ paid_level: number;
1133
+ campus_enterprise: number;
1134
+ is_active: number;
1135
+ }
1136
+ export interface ISaveModifiedPaymentPlanRq {
1137
+ token: string;
1138
+ cod: number;
1139
+ old_course: number;
1140
+ new_course: number;
1141
+ enrollment_value: number;
1142
+ fee_value: number;
1143
+ amount_fees_generate: number;
1144
+ fees_attended: number;
1145
+ }
1146
+ export interface ISaveModifiedPaymentPlanRs {
1147
+ cod: number;
1148
+ new_min_fee: number;
1149
+ new_max_fee: number;
1150
+ updated: number;
1151
+ created: number;
1152
+ deleted: number;
1153
+ }
1087
1154
  export {};
@@ -149,3 +149,51 @@ 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
+ export interface IObtainCourseChangeAuditByCodCodeRs {
157
+ code: number;
158
+ made_by: number;
159
+ requested_by: number;
160
+ old_course: number;
161
+ new_course: number;
162
+ type_action: number;
163
+ type_reason: number;
164
+ cod_code: number;
165
+ user_course: IObtainUserCourseAuditRs;
166
+ notes_course: IObtainNotesCourseAuditRs[];
167
+ attendance_course: IObtainAttendanceCourseAuditRs;
168
+ final_score: string;
169
+ other_observations: string;
170
+ updated_at: Date;
171
+ created_at: Date;
172
+ }
173
+ export interface IObtainAttendanceCourseAuditRs {
174
+ theory: IObtainAttendanceAuditRs[];
175
+ club: IObtainAttendanceAuditRs[];
176
+ }
177
+ export interface IObtainAttendanceAuditRs {
178
+ attendance: number;
179
+ is_attended: number;
180
+ course_event: number;
181
+ name_event: string;
182
+ date_event: Date;
183
+ cod: number;
184
+ course: number;
185
+ }
186
+ export interface IObtainNotesCourseAuditRs {
187
+ code: number;
188
+ note_code: number;
189
+ note_type: number;
190
+ note_value: number;
191
+ observation: string;
192
+ created_at: Date;
193
+ }
194
+ export interface IObtainUserCourseAuditRs {
195
+ code: number;
196
+ student_code: number;
197
+ course_code: number;
198
+ notes: number;
199
+ }
@@ -152,3 +152,7 @@ export interface IObtainAllTypesOfDocumentsRs {
152
152
  acronym?: string;
153
153
  name?: string;
154
154
  }
155
+ export interface IgetCourseTypeAndLevelsByAcademicPlanRs {
156
+ course_type: IMulticulturalismRs;
157
+ levels: IMulticulturalismRs[];
158
+ }
@@ -318,3 +318,34 @@ export interface ICodStudentDuplicatRs {
318
318
  cod_paid: number;
319
319
  created_at: string;
320
320
  }
321
+ export interface ISearchUsersForTeamAssignmentRq {
322
+ token: string;
323
+ param: string;
324
+ departments: number[];
325
+ roles: number[];
326
+ roll_not_authorize: number[];
327
+ page: number;
328
+ per_page: number;
329
+ }
330
+ export interface ISearchUsersForTeamAssignmentRs {
331
+ data: IDatumRs[];
332
+ pagination: IPaginationSearchRs;
333
+ }
334
+ export interface IDatumRs {
335
+ code: number;
336
+ role: number;
337
+ id_card: string;
338
+ name: string;
339
+ last_name: string;
340
+ email: string;
341
+ phone_number: string;
342
+ user_status: number;
343
+ }
344
+ export interface IPaginationSearchRs {
345
+ current_page: number;
346
+ last_page: number;
347
+ per_page: number;
348
+ total: number;
349
+ next_page_url: null;
350
+ prev_page_url: null;
351
+ }
@@ -45,10 +45,12 @@ export declare class AcademicService extends IPTGeneralService {
45
45
  getAttendanceByCod(param: IAttendanceCodRq): Observable<any>;
46
46
  getInfoStudentCourseByCod(param: IAttendanceCodRq): Observable<any>;
47
47
  getCourseTypeByAcademicPlan(codeAcademic: number): Observable<any>;
48
+ getCourseTypeAndLevelsByAcademicPlan(codeAcademic: number): Observable<any>;
48
49
  getAvailableCoursesByModalityStatusAndLevel(param: IgetAvailableCoursesByLevStaModalRq): Observable<any>;
49
50
  obtainCoursesAvailableSpacesAndClassesViewed(param: IgetAvailableCoursesByLevStaModalRq): Observable<any>;
50
51
  getCoursesAvailableForStudentChange(param: IGetCoursesAvailableForExchangeRq): Observable<any>;
51
52
  changeOfStudentGroup(param: IChangeOfStudentGroupRq): Observable<any>;
53
+ previewChangeOfStudentToNewCourse(param: IChangeOfStudentGroupRq): Observable<any>;
52
54
  obtainCourseStatusByCode(courseCode: number): Observable<any>;
53
55
  ObtainAttendanceForCodHistoryByStudent(param: IParamsObtainAttendanceForCodHistoryByStudentRq): Observable<any>;
54
56
  static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
@@ -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, IAddNewQuotaWithCommentsRq, IDeleteQuotaRecordWithCommentsRq, IModifyQuotaDataWithCommentsRq, IEditInstallmentAmounWithCommentsRq, ICoursePaymentRangeReportRq, ICoursePaymentRangeReportRs } 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, IEditInstallmentAmounWithCommentsRq, ICoursePaymentRangeReportRq, ICoursePaymentRangeReportRs, IPreviewModifyPaymentPlanRq, ISaveModifiedPaymentPlanRq } 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';
@@ -115,6 +115,8 @@ export declare class BudgetService extends IPTGeneralService {
115
115
  newRegistePaymentBillPreassignedCod(params: PaymentBillRq2): Observable<any>;
116
116
  addNewQuotaWithComments(params: IAddNewQuotaWithCommentsRq): Observable<any>;
117
117
  deleteQuotaRecordWithComments(params: IDeleteQuotaRecordWithCommentsRq): Observable<any>;
118
+ saveModifiedPaymentPlan(params: ISaveModifiedPaymentPlanRq): Observable<any>;
119
+ previewModifyPaymentPlan(params: IPreviewModifyPaymentPlanRq): Observable<any>;
118
120
  modifyQuotaDataWithComments(params: IModifyQuotaDataWithCommentsRq): Observable<any>;
119
121
  editInstallmentAmountWithComments(params: IEditInstallmentAmounWithCommentsRq): Observable<any>;
120
122
  studentPaymentPlanByCod(codeCod: number): Observable<any>;
@@ -6,6 +6,7 @@ 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';
9
10
  import * as i0 from "@angular/core";
10
11
  export declare class CourseService extends IPTGeneralService {
11
12
  private http;
@@ -42,6 +43,7 @@ export declare class CourseService extends IPTGeneralService {
42
43
  getRecordOfAuditedCoursesByDate(params: ITransferGetAllRq): Observable<any>;
43
44
  confirmationOfStudentCourseChange(params: any): Observable<any>;
44
45
  acceptanceOfStudentCourseChange(params: any): Observable<any>;
46
+ obtainCourseChangeAuditByCodCode(params: IObtainCourseChangeAuditByCodCodeRq): Observable<any>;
45
47
  getCoursesByStateRefactor(params: GetCoursesFilterRq): Observable<any>;
46
48
  postEnableCourseByRequestAndCode(params: EnableCourseByRequestAndCodeRq): Observable<any>;
47
49
  postDisableCourseByCode(params: ICourseDisableByCodeRq): Observable<any>;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq, userTokenRq, IUpdtaeUserValidatedRq, IObtainUserByEmailDocRq, IStudentOrUserEktByConceptRq, UserTokenRq2, ParamsUser, IusersRq, IDeleteTeacherRq, IUpdateDataTeacherRq, IObtainDataFromSuppliersStudentRq, IGeUsersFromDepartmentsRq, ISearchForStudentToEditRq } from '../../models/user/user-rq.model';
3
+ import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq, userTokenRq, IUpdtaeUserValidatedRq, IObtainUserByEmailDocRq, IStudentOrUserEktByConceptRq, UserTokenRq2, ParamsUser, IusersRq, IDeleteTeacherRq, IUpdateDataTeacherRq, IObtainDataFromSuppliersStudentRq, IGeUsersFromDepartmentsRq, ISearchForStudentToEditRq, ISearchUsersForTeamAssignmentRq } from '../../models/user/user-rq.model';
4
4
  import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.model';
5
5
  import { IPTGeneralService } from '../service-enviroments';
6
6
  import { GetStudentByCodeRq, tokenAdministrativeRq } from '../../models/payment/payment-rq.model';
@@ -55,6 +55,7 @@ export declare class UserService extends IPTGeneralService {
55
55
  searchForStudentToEdit(params: ISearchForStudentToEditRq): Observable<any>;
56
56
  searchStudentByCode(codeUser: number): Observable<any>;
57
57
  searchStudentByIdcard(id_card: number): Observable<any>;
58
+ searchUsersForTeamAssignment(params: ISearchUsersForTeamAssignmentRq): Observable<any>;
58
59
  static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
59
60
  static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
60
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.2.115",
3
+ "version": "3.2.118",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",