iptdevs-design-system 3.2.187 → 3.2.188
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/payment/payment-rq.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/payment/payment-rq.model.d.ts +27 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -553,3 +553,30 @@ export interface IRefTransferRs {
|
|
|
553
553
|
updated_at: Date;
|
|
554
554
|
created_at: Date;
|
|
555
555
|
}
|
|
556
|
+
export interface ICreatePaymentBillByCampusRq {
|
|
557
|
+
payment_method: number;
|
|
558
|
+
payment_services: number;
|
|
559
|
+
payment_wallet: number;
|
|
560
|
+
bank: number;
|
|
561
|
+
generated_for: number;
|
|
562
|
+
campus: number;
|
|
563
|
+
payment_campus: number;
|
|
564
|
+
correlative_campus: number;
|
|
565
|
+
generated_by: string;
|
|
566
|
+
total_amount: number;
|
|
567
|
+
payment_amount: number;
|
|
568
|
+
outstanding_amount: number;
|
|
569
|
+
positive_amount: number;
|
|
570
|
+
discount: number;
|
|
571
|
+
codeDiscount: number;
|
|
572
|
+
payer_name: string;
|
|
573
|
+
payer_document: string;
|
|
574
|
+
observation: string;
|
|
575
|
+
codeAcademic_plan: number;
|
|
576
|
+
cod_payment: number;
|
|
577
|
+
code?: number;
|
|
578
|
+
ref_payment: string;
|
|
579
|
+
date_payment: string;
|
|
580
|
+
codes_refers: number[];
|
|
581
|
+
reference_number: string;
|
|
582
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient, HttpResponse } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
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
|
-
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';
|
|
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';
|
|
7
7
|
import { ICodPaymentRq } from '../../models/cod/cod-rq.model';
|
|
@@ -148,6 +148,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
148
148
|
getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
149
149
|
paymentsMadeByDateAndPortfolioCoordinatorReport(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
150
150
|
getCoursesNotAssignedByCampusWithAvailableCapacity(param: IGetCoursesNotAssignedByCampusWithAvailableCapacityRq): Observable<any>;
|
|
151
|
+
createPaymentBillByCampus(params: ICreatePaymentBillByCampusRq): Observable<any>;
|
|
151
152
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
152
153
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
153
154
|
}
|