iptdevs-design-system 3.2.192 → 3.2.194

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.
@@ -56,7 +56,7 @@ export declare class CodFormStepOneComponent extends CodFormSteps implements OnC
56
56
  selectAcademicPlan(academic_plan: string): void;
57
57
  selectCampus(campus: string): void;
58
58
  getCourseType(plan: number): void;
59
- getAgreementByPlan(plan: number): void;
59
+ getAgreementByPlan(plan: number, campus: number): void;
60
60
  selectCoursesTypesByPlan(coursesTypes: any): void;
61
61
  selectAgreementByCategory(agreementByCategories: any): void;
62
62
  selectLevel(levels: any): void;
@@ -1290,6 +1290,16 @@ export interface IObtainCampusSummaryByUserCodeRs {
1290
1290
  campus_name: string;
1291
1291
  total_courses: number;
1292
1292
  }
1293
+ export interface IObtainCampusCoursesByAdvisorRq {
1294
+ user_code: number;
1295
+ courses: boolean;
1296
+ all_campuses: boolean;
1297
+ }
1298
+ export interface IObtainCampusCoursesByAdvisorRs {
1299
+ campus_code: number;
1300
+ campus_name: string;
1301
+ total: number;
1302
+ }
1293
1303
  export interface IGetCoursesNotAssignedByCampusRq {
1294
1304
  token: string;
1295
1305
  campus: number[];
@@ -141,6 +141,7 @@ export interface IAgreementRs {
141
141
  status: number;
142
142
  updated_at: Date;
143
143
  created_at: Date;
144
+ campus?: number;
144
145
  }
145
146
  export interface ICityByState {
146
147
  code: number;
@@ -215,7 +215,7 @@ export interface IGeUsersFromDepartmentsRq {
215
215
  token: string;
216
216
  departments: number[];
217
217
  roll_not_authorize: number[];
218
- campus?: number;
218
+ campus_code?: number;
219
219
  }
220
220
  export interface IFormDataRq {
221
221
  [key: string]: any;
@@ -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, IGetCoursesNotAssignedByCampusWithAvailableCapacityRq } 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, IObtainCampusCoursesByAdvisorRq } 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, ICreatePaymentBillByCampusRq } from '../../models/payment/payment-rq.model';
5
5
  import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
6
6
  import { IPTGeneralService } from '../service-enviroments';
@@ -144,7 +144,7 @@ export declare class BudgetService extends IPTGeneralService {
144
144
  searchForStudentsByDifferentParametersAndCampus(param: ISearchForStudentsByDifferentParametersAndCampusRq): Observable<any>;
145
145
  obtainCourseWalletSummaryByCampusAndUserStatus(param: IObtainCourseWalletSummaryByCampusAndUserStatusRq): Observable<any>;
146
146
  obtainCampusSummaryByUserCode(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
147
- obtainCampusCoursesByAdvisor(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
147
+ obtainCampusCoursesByAdvisor(param: IObtainCampusCoursesByAdvisorRq): Observable<any>;
148
148
  getCoursesNotAssignedByCampus(param: IGetCoursesNotAssignedByCampusRq): Observable<any>;
149
149
  getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
150
150
  paymentsMadeByDateAndPortfolioCoordinatorReport(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.2.192",
3
+ "version": "3.2.194",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",