iptdevs-design-system 3.2.182 → 3.2.184

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.
@@ -1,6 +1,7 @@
1
1
  import { ICourseTypeCluAndTheRs, IMessageRq } from "../budget/budget.model";
2
2
  import { English_Levels } from "../course/courses.model";
3
3
  import { UserCourse } from "../notes/notes.interface";
4
+ import { EnglishLevel } from "../payment/payment-rq.model";
4
5
  export interface GetCourseByTypeRq {
5
6
  token: string;
6
7
  course_type: number;
@@ -256,3 +257,10 @@ export interface IGetStudentByUserAndCampusRq {
256
257
  user_code: number;
257
258
  campus_code: number | null;
258
259
  }
260
+ export interface IGetAvailableCoursesByModalityStatusAndLevelMultiCampusRq {
261
+ token: string;
262
+ modality: number;
263
+ status: number;
264
+ campus: number[];
265
+ english_level: EnglishLevel[];
266
+ }
@@ -1,4 +1,5 @@
1
1
  import { IEventCourseRq } from "../classroom/classroom-rq.model";
2
+ import { CourseModalityRq } from "../cod/cod-rq.model";
2
3
  import { CourseTypeCRq } from "../course/course-rq.model";
3
4
  import { English_Levels } from "../course/courses.model";
4
5
  export interface getdiscountAllRq {
@@ -1373,4 +1374,83 @@ export interface ISummaryByMethodRs {
1373
1374
  total_discount: number;
1374
1375
  count: number;
1375
1376
  }
1377
+ export interface IGetCoursesNotAssignedByCampusWithAvailableCapacityRq {
1378
+ token: string;
1379
+ modality: number;
1380
+ status: number;
1381
+ campus: number[];
1382
+ }
1383
+ export interface IGetCoursesNotAssignedByCampusWithAvailableCapacityRs {
1384
+ code: number;
1385
+ course_code: number;
1386
+ course_wallet_status_code: number;
1387
+ campus: number;
1388
+ available_capacity: number;
1389
+ course_theory: ICourseTheoryRs;
1390
+ course_club: ICourseClubTwoRs;
1391
+ }
1392
+ export interface ICourseClubTwoRs {
1393
+ code: number;
1394
+ course_schedule: string[];
1395
+ teacher: string;
1396
+ course_type: ICourseClubCourseTypeTwoRs;
1397
+ to_start: Date;
1398
+ start_date: Date;
1399
+ finish_date: Date;
1400
+ capacity: number;
1401
+ more_days: null;
1402
+ english_level: string;
1403
+ agreement: string;
1404
+ course_modality: CourseModalityRq;
1405
+ is_renovation: number;
1406
+ is_from: null;
1407
+ is_club: number;
1408
+ is_visible: number;
1409
+ campus: number;
1410
+ course_scheduleDetails: ICourseScheduleDetailTwoRs[];
1411
+ }
1412
+ export interface ICourseScheduleDetailTwoRs {
1413
+ ClassDay: string;
1414
+ StarTime: string;
1415
+ EndTime: string;
1416
+ ClassRoomName: string;
1417
+ ClassRoomAdress: string;
1418
+ }
1419
+ export interface ICourseClubCourseTypeTwoRs {
1420
+ code: number;
1421
+ name: string;
1422
+ label: string;
1423
+ number_class: number;
1424
+ number_class_club: number;
1425
+ academic_plan: string;
1426
+ theory_classes: number;
1427
+ club_classes: number;
1428
+ campus: number;
1429
+ category: number;
1430
+ }
1431
+ export interface ICourseTheoryRs {
1432
+ code: number;
1433
+ course_schedule: string[];
1434
+ teacher: string;
1435
+ course_type: ICourseTheoryCourseTypeRs;
1436
+ to_start: Date;
1437
+ start_date: Date;
1438
+ finish_date: Date;
1439
+ capacity: number;
1440
+ more_days: null;
1441
+ english_level: number;
1442
+ agreement: string;
1443
+ course_modality: number;
1444
+ is_renovation: number;
1445
+ is_from: null;
1446
+ is_club: number;
1447
+ is_visible: number;
1448
+ campus: number;
1449
+ created_at: Date;
1450
+ course_schedule_details: ICourseScheduleDetailTwoRs[];
1451
+ }
1452
+ export interface ICourseTheoryCourseTypeRs {
1453
+ name: string;
1454
+ label: string;
1455
+ }
1376
1456
  export {};
@@ -1,7 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { IPTGeneralService } from '../service-enviroments';
4
- import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs, IgetAvailableCoursesByLevStaModalRq, IGetCoursesAvailableForExchangeRq, IParamsObtainAttendanceForCodHistoryByStudentRq, IGetStudentByUserAndCampusRq } from '../../models/academic/academic.component';
4
+ import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq, ClassRoomRQI, IManageCreatedScherduleEventsRq, IParamsObtainCoursesByTypeCourseInCreatedCoursesRs, IgetAvailableCoursesByLevStaModalRq, IGetCoursesAvailableForExchangeRq, IParamsObtainAttendanceForCodHistoryByStudentRq, IGetStudentByUserAndCampusRq, IGetAvailableCoursesByModalityStatusAndLevelMultiCampusRq } from '../../models/academic/academic.component';
5
5
  import { UserTokenRq } from '../../models/user/user-rq.model';
6
6
  import { GetStudentsByCourseRq } from '../../models/student/student.interface';
7
7
  import { GetCodByStudentCourseRq } from '../../models/cod/cod-rq.model';
@@ -55,6 +55,7 @@ export declare class AcademicService extends IPTGeneralService {
55
55
  obtainCourseStatusByCode(courseCode: number): Observable<any>;
56
56
  ObtainAttendanceForCodHistoryByStudent(param: IParamsObtainAttendanceForCodHistoryByStudentRq): Observable<any>;
57
57
  getStudentByUserAndCampus(param: IGetStudentByUserAndCampusRq): Observable<any>;
58
+ getAvailableCoursesByModalityStatusAndLevelMultiCampus(param: IGetAvailableCoursesByModalityStatusAndLevelMultiCampusRq): Observable<any>;
58
59
  static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
59
60
  static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
60
61
  }
@@ -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, IPreviewModifyPaymentPlanRq, ISaveModifiedPaymentPlanRq, IStudentsWithOverdueFeesByCoordinatorRq, IGetAllDiscountWithModalityBySegmentRq, ICreateDiscountWithSegmentRq, IObtainStudentInfoSerchRq, ISearchForStudentsByDifferentParametersAndCampusRq, IObtainCampusSummaryByUserCodeRq, IObtainCourseWalletSummaryByCampusAndUserStatusRq, IGetCoursesNotAssignedByCampusRq, IGetCoursesAssignedByTheCoordinatorRq, IGetAllDiscountWithModalityBySegmentCampusDateRq } 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, IStudentsWithOverdueFeesByCoordinatorRq, IGetAllDiscountWithModalityBySegmentRq, ICreateDiscountWithSegmentRq, IObtainStudentInfoSerchRq, ISearchForStudentsByDifferentParametersAndCampusRq, IObtainCampusSummaryByUserCodeRq, IObtainCourseWalletSummaryByCampusAndUserStatusRq, IGetCoursesNotAssignedByCampusRq, IGetCoursesAssignedByTheCoordinatorRq, IGetAllDiscountWithModalityBySegmentCampusDateRq, IGetCoursesNotAssignedByCampusWithAvailableCapacityRq } 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, IGetDiscountCouponInformationRq } from '../../models/payment/payment-rq.model';
5
5
  import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
6
6
  import { IPTGeneralService } from '../service-enviroments';
@@ -147,6 +147,7 @@ export declare class BudgetService extends IPTGeneralService {
147
147
  getCoursesNotAssignedByCampus(param: IGetCoursesNotAssignedByCampusRq): Observable<any>;
148
148
  getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
149
149
  paymentsMadeByDateAndPortfolioCoordinatorReport(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
150
+ getCoursesNotAssignedByCampusWithAvailableCapacity(param: IGetCoursesNotAssignedByCampusWithAvailableCapacityRq): Observable<any>;
150
151
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
151
152
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
152
153
  }
@@ -134,6 +134,7 @@ export declare class CommercialService extends IPTGeneralService {
134
134
  getBonusRuleCommercialByCampus(params: IgetBonusRuleCommercialByCampusRq): Observable<any>;
135
135
  obtainPreviewTransactionExportData(params: IobtainPreviewTransactionExportDataRq): Observable<any>;
136
136
  getMonthlyBonusStatus(params: any): Observable<any>;
137
+ obtainBonusRuleByUser(params: any): Observable<any>;
137
138
  static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
138
139
  static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
139
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.2.182",
3
+ "version": "3.2.184",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",