iptdevs-design-system 3.2.131 → 3.2.132

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.
@@ -1163,4 +1163,35 @@ export interface IgetStudentHasCourseChangesRq {
1163
1163
  token: string;
1164
1164
  cod: number;
1165
1165
  }
1166
+ export interface IStudentsWithOverdueFeesByCoordinatorRq {
1167
+ token: string;
1168
+ coordinator: number;
1169
+ type_filter_date: number;
1170
+ start_date?: string;
1171
+ end_date?: string;
1172
+ course_status: number;
1173
+ modality: number;
1174
+ }
1175
+ export interface IStudentsWithOverdueFeesByCoordinatorRs {
1176
+ course_code?: number;
1177
+ level_name?: string;
1178
+ cod_code?: number;
1179
+ modality?: string;
1180
+ student_document?: string;
1181
+ student_name?: string;
1182
+ student_phone?: string;
1183
+ student_email?: string;
1184
+ overdue_installments_count?: number;
1185
+ due_dates?: string;
1186
+ overdue_amounts?: string;
1187
+ total_overdue?: number;
1188
+ overdue_months?: string;
1189
+ overdue_installments_detail?: IOverdueInstallmentsDetailRq[];
1190
+ }
1191
+ export interface IOverdueInstallmentsDetailRq {
1192
+ code?: number;
1193
+ timely_date?: Date;
1194
+ amount?: number;
1195
+ month?: string;
1196
+ }
1166
1197
  export {};
@@ -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 } 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 } 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';
@@ -132,6 +132,7 @@ export declare class BudgetService extends IPTGeneralService {
132
132
  updateTransactionStatus(param: IUpdateTransactionStatusRq): Observable<any>;
133
133
  getWompiTransactionById(param: IWompiTransactionPayloadRq): Observable<any>;
134
134
  revertPendingTransactionsWithoutWompiCode(param: IGetTransactionsByUserCodeRq): Observable<any>;
135
+ studentsWithOverdueFeesByCoordinator(param: IStudentsWithOverdueFeesByCoordinatorRq): Observable<any>;
135
136
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
136
137
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
137
138
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.2.131",
3
+ "version": "3.2.132",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",