iptdevs-design-system 3.2.98 → 3.2.100
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.
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +50 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1013,4 +1013,54 @@ export interface IHistoryProcessPaymentRs {
|
|
|
1013
1013
|
produced_by: number;
|
|
1014
1014
|
code: number;
|
|
1015
1015
|
}
|
|
1016
|
+
export interface ICoursePaymentRangeReportRq {
|
|
1017
|
+
token: string;
|
|
1018
|
+
user_code: number;
|
|
1019
|
+
start_date: string;
|
|
1020
|
+
end_date: string;
|
|
1021
|
+
course_code: number;
|
|
1022
|
+
}
|
|
1023
|
+
export interface ICoursePaymentRangeReportRs {
|
|
1024
|
+
ip_applicant: string;
|
|
1025
|
+
status: number;
|
|
1026
|
+
message: ICoursePaymentRangeReportMessage;
|
|
1027
|
+
data: ICoursePaymentRangeReportData;
|
|
1028
|
+
}
|
|
1029
|
+
export interface ICoursePaymentRangeReportMessage {
|
|
1030
|
+
code: number;
|
|
1031
|
+
message: string;
|
|
1032
|
+
}
|
|
1033
|
+
export interface ICoursePaymentRangeReportData {
|
|
1034
|
+
filters: ICoursePaymentRangeReportFilters;
|
|
1035
|
+
summary_by_course: ICoursePaymentRangeReportSummary[];
|
|
1036
|
+
cod_detail_by_course: ICoursePaymentRangeReportCodDetail[];
|
|
1037
|
+
}
|
|
1038
|
+
export interface ICoursePaymentRangeReportFilters {
|
|
1039
|
+
user_code: number;
|
|
1040
|
+
course_code: number;
|
|
1041
|
+
start_date: string;
|
|
1042
|
+
end_date: string;
|
|
1043
|
+
}
|
|
1044
|
+
export interface ICoursePaymentRangeReportSummary {
|
|
1045
|
+
course_code: number;
|
|
1046
|
+
cod_count_status_le_3: number;
|
|
1047
|
+
total_amount_to_collect_in_range: number;
|
|
1048
|
+
total_installments_in_range: number;
|
|
1049
|
+
paid_installments_in_range: string;
|
|
1050
|
+
unpaid_installments_in_range: string;
|
|
1051
|
+
paid_installments_amount_in_range: number;
|
|
1052
|
+
unpaid_installments_amount_in_range: number;
|
|
1053
|
+
}
|
|
1054
|
+
export interface ICoursePaymentRangeReportCodDetail {
|
|
1055
|
+
cod_code: number;
|
|
1056
|
+
cod_status: number;
|
|
1057
|
+
cod_price: number;
|
|
1058
|
+
student_code: number;
|
|
1059
|
+
document: string;
|
|
1060
|
+
first_name: string;
|
|
1061
|
+
last_name: string;
|
|
1062
|
+
installments_in_range: number;
|
|
1063
|
+
total_amount_in_range: number;
|
|
1064
|
+
payment_dates: string;
|
|
1065
|
+
}
|
|
1016
1066
|
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 } 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 } 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';
|
|
@@ -119,6 +119,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
119
119
|
studentPaymentPlanByCod(codeCod: number): Observable<any>;
|
|
120
120
|
getPaymentsByMadeExport(params: any): Observable<any>;
|
|
121
121
|
searchForStudentsByDifferentParameters(param: IObtainStudentPaymentByDiffParamRq): Observable<any>;
|
|
122
|
+
obtainCoursePaymentRangeReport(param: ICoursePaymentRangeReportRq): Observable<ICoursePaymentRangeReportRs>;
|
|
122
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
123
124
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
124
125
|
}
|