iptdevs-design-system 3.1.851 → 3.1.852
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 +49 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -477,3 +477,52 @@ export interface IUpdateElectronicInvoiceRq {
|
|
|
477
477
|
payment_bill_code: number;
|
|
478
478
|
electronic_invoice: string;
|
|
479
479
|
}
|
|
480
|
+
export interface IValidationOfTransfersByNumberRq {
|
|
481
|
+
token: string;
|
|
482
|
+
reference_number?: string;
|
|
483
|
+
}
|
|
484
|
+
export interface IValidationOfTransfersByNumberRs {
|
|
485
|
+
ref_transfers: IRefTransferRs[];
|
|
486
|
+
ref_invoices: IRefInvoiceRs[];
|
|
487
|
+
}
|
|
488
|
+
export interface IRefInvoiceRs {
|
|
489
|
+
invoices: IInvoicesRs;
|
|
490
|
+
summary: ISummaryRs;
|
|
491
|
+
}
|
|
492
|
+
export interface IInvoicesRs {
|
|
493
|
+
cancelled?: IStrPaymentBillRs[];
|
|
494
|
+
normal?: IStrPaymentBillRs[];
|
|
495
|
+
}
|
|
496
|
+
export interface IStrPaymentBillRs {
|
|
497
|
+
code: number;
|
|
498
|
+
payment_amount: number;
|
|
499
|
+
method: string;
|
|
500
|
+
service: string;
|
|
501
|
+
created_at: Date;
|
|
502
|
+
user_stude: string;
|
|
503
|
+
user_admin: string;
|
|
504
|
+
name_bank: string;
|
|
505
|
+
wallet: string;
|
|
506
|
+
}
|
|
507
|
+
export interface ISummaryRs {
|
|
508
|
+
facturas_canceladas: IInvoiceRs;
|
|
509
|
+
facturas_normales: IInvoiceRs;
|
|
510
|
+
}
|
|
511
|
+
export interface IInvoiceRs {
|
|
512
|
+
total_fact: number;
|
|
513
|
+
total_amount: number;
|
|
514
|
+
}
|
|
515
|
+
export interface IRefTransferRs {
|
|
516
|
+
code: number;
|
|
517
|
+
transfer_amount: number;
|
|
518
|
+
bank_code: number;
|
|
519
|
+
transfer_date: Date;
|
|
520
|
+
reference_number: string;
|
|
521
|
+
status: string;
|
|
522
|
+
initial_amount: number;
|
|
523
|
+
created_by: string;
|
|
524
|
+
updated_by: string;
|
|
525
|
+
image_url: null;
|
|
526
|
+
updated_at: Date;
|
|
527
|
+
created_at: Date;
|
|
528
|
+
}
|
|
@@ -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 } 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 } 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 } 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';
|
|
@@ -101,6 +101,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
101
101
|
updateTransferStatusByCode(params: ITransferStatusUpdateRequestRq): Observable<any>;
|
|
102
102
|
updateElectronicInvoice(params: IUpdateElectronicInvoiceRq): Observable<any>;
|
|
103
103
|
searchPaymentBill(params: ISearchPaymentBillRq): Observable<ISearchPaymentBillRs>;
|
|
104
|
+
getValidationOfTransfersByNumber(params: IValidationOfTransfersByNumberRq): Observable<any>;
|
|
104
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
105
106
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
106
107
|
}
|