iptdevs-design-system 3.1.780 → 3.1.782
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 +16 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +16 -0
- package/lib/core/services/budget-service/budget-service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -667,4 +667,20 @@ export interface SendEmailPaymentCancellationRS {
|
|
|
667
667
|
amount: number;
|
|
668
668
|
concept: string;
|
|
669
669
|
}
|
|
670
|
+
export interface IPaymentCorrelativeRq {
|
|
671
|
+
token: string;
|
|
672
|
+
type_category: number;
|
|
673
|
+
start_date: Date;
|
|
674
|
+
end_date: Date;
|
|
675
|
+
}
|
|
676
|
+
export interface IPaymentCorrelativeRq {
|
|
677
|
+
code_type_consult: number | null;
|
|
678
|
+
finish_date: Date;
|
|
679
|
+
start_date: Date;
|
|
680
|
+
token: string;
|
|
681
|
+
type_category: number;
|
|
682
|
+
}
|
|
683
|
+
export interface IObtainGatewayPaymentRecordRq {
|
|
684
|
+
cod: number;
|
|
685
|
+
}
|
|
670
686
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } 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, IObatinBalacesByCoodinatorRq, SendEmailPayment, SendEmailPaymentCancellationRS } 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, IObatinBalacesByCoodinatorRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -85,6 +85,9 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
85
85
|
updateTransfer(params: ITransferUpdateRq): Observable<any>;
|
|
86
86
|
deleteTransfer(params: ITransferDeleteRq): Observable<any>;
|
|
87
87
|
searchTransfer(params: ITransferSearchRq): Observable<any>;
|
|
88
|
+
exportPaymentCorrelativeeHistoryData(param: IPaymentCorrelativeRq): Observable<any>;
|
|
89
|
+
obtainPaymentsMadeByFilter(param: IPaymentCorrelativeRq): Observable<any>;
|
|
90
|
+
obtainGatewayPaymentRecord(param: IObtainGatewayPaymentRecordRq): Observable<any>;
|
|
88
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
89
92
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
90
93
|
}
|