iptdevs-design-system 3.2.174 → 3.2.176

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.
@@ -1282,4 +1282,39 @@ export interface IObtainCampusSummaryByUserCodeRs {
1282
1282
  campus_name: string;
1283
1283
  total_courses: number;
1284
1284
  }
1285
+ export interface IGetCoursesNotAssignedByCampusRq {
1286
+ token: string;
1287
+ campus: number[];
1288
+ }
1289
+ export interface IGetCoursesNotAssignedByCampusRs {
1290
+ code: number;
1291
+ course_code: number;
1292
+ course_wallet_status_code: number;
1293
+ campus: number;
1294
+ course_data: ICourseDataWalletRs;
1295
+ }
1296
+ export interface ICourseDataWalletRs {
1297
+ code: number;
1298
+ course_schedule: number;
1299
+ teacher: string;
1300
+ course_type: string;
1301
+ to_start: Date;
1302
+ start_date: Date | null;
1303
+ finish_date: Date | null;
1304
+ capacity: number;
1305
+ more_days: null;
1306
+ english_level: number;
1307
+ agreement: string;
1308
+ course_modality: number;
1309
+ is_renovation: number;
1310
+ is_from: number | null;
1311
+ is_club: number;
1312
+ is_visible: number;
1313
+ campus: number;
1314
+ created_at: Date;
1315
+ }
1316
+ export interface IGetCoursesAssignedByTheCoordinatorRq {
1317
+ token: string;
1318
+ codeUser: number;
1319
+ }
1285
1320
  export {};
@@ -378,3 +378,9 @@ export interface IGetAllUserByRollValidatedAndCampusRq {
378
378
  token: string;
379
379
  campus: number;
380
380
  }
381
+ export interface IGetByRolesAndCampusesRq {
382
+ token: string;
383
+ user_role: number[];
384
+ campus_code: number[];
385
+ parameter: string | null;
386
+ }
@@ -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 } 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 } 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';
@@ -143,6 +143,8 @@ export declare class BudgetService extends IPTGeneralService {
143
143
  searchForStudentsByDifferentParametersAndCampus(param: ISearchForStudentsByDifferentParametersAndCampusRq): Observable<any>;
144
144
  obtainCourseWalletSummaryByCampusAndUserStatus(param: IObtainCourseWalletSummaryByCampusAndUserStatusRq): Observable<any>;
145
145
  obtainCampusSummaryByUserCode(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
146
+ getCoursesNotAssignedByCampus(param: IGetCoursesNotAssignedByCampusRq): Observable<any>;
147
+ getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
146
148
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
147
149
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
148
150
  }
@@ -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, IGetByRoleUserAndCampusRq, IGetAllUserByRollValidatedAndCampusRq } 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, IGetByRoleUserAndCampusRq, IGetAllUserByRollValidatedAndCampusRq, IGetByRolesAndCampusesRq } 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';
@@ -62,6 +62,7 @@ export declare class UserService extends IPTGeneralService {
62
62
  getByRoleUserAndCampus(params: IGetByRoleUserAndCampusRq): Observable<any>;
63
63
  obtainTeachersAvailableToTeachByCourseCampus(code_campus: number): Observable<any>;
64
64
  getAllUserByRollValidatedAndCampus(params: IGetAllUserByRollValidatedAndCampusRq): Observable<any>;
65
+ getByRolesAndCampuses(params: IGetByRolesAndCampusesRq): Observable<any>;
65
66
  static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
66
67
  static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
67
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.2.174",
3
+ "version": "3.2.176",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",