iptdevs-design-system 3.1.746 → 3.1.747
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 +40 -15
- package/fesm2015/iptdevs-design-system.mjs +39 -14
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +39 -14
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +25 -2
- package/lib/core/services/budget-service/budget-service.d.ts +6 -6
- package/package.json +1 -1
|
@@ -375,6 +375,31 @@ export interface IFertilizerRs {
|
|
|
375
375
|
date: Date;
|
|
376
376
|
receipt_number: number;
|
|
377
377
|
}
|
|
378
|
+
export interface ITransferBase {
|
|
379
|
+
payment_bill_code: number;
|
|
380
|
+
transfer_amount: number;
|
|
381
|
+
bank_code: number;
|
|
382
|
+
transfer_date: Date;
|
|
383
|
+
reference_number: string;
|
|
384
|
+
}
|
|
385
|
+
export interface ITransferCreateRq extends ITransferBase {
|
|
386
|
+
token: string;
|
|
387
|
+
}
|
|
388
|
+
export interface ITransferUpdateRq extends ITransferBase {
|
|
389
|
+
token: string;
|
|
390
|
+
code: number;
|
|
391
|
+
}
|
|
392
|
+
export interface ITransferGetRq {
|
|
393
|
+
token: string;
|
|
394
|
+
code: number;
|
|
395
|
+
}
|
|
396
|
+
export interface ITransferDeleteRq {
|
|
397
|
+
token: string;
|
|
398
|
+
code: number;
|
|
399
|
+
}
|
|
400
|
+
export interface ITransferGetAllRq {
|
|
401
|
+
token: string;
|
|
402
|
+
}
|
|
378
403
|
export interface ITransfer {
|
|
379
404
|
code?: number;
|
|
380
405
|
payment_bill_code: number;
|
|
@@ -382,6 +407,4 @@ export interface ITransfer {
|
|
|
382
407
|
bank_code: number;
|
|
383
408
|
transfer_date: Date;
|
|
384
409
|
reference_number: string;
|
|
385
|
-
paymentBill?: IPaymentBillRs;
|
|
386
|
-
bank?: BanksRq;
|
|
387
410
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } 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, IObatinBalacesByCoodinatorRq, SendEmailPayment } from '../../models/budget/budget.model';
|
|
4
|
-
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq,
|
|
4
|
+
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, 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';
|
|
7
7
|
import { ICodPaymentRq } from '../../models/cod/cod-rq.model';
|
|
@@ -78,11 +78,11 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
78
78
|
obtainPaymentsByCod(param: ICodPaymentRq): Observable<any>;
|
|
79
79
|
obtainPaymentsMadeByDates(params: ICancelledReceiptByDateRq): Observable<any>;
|
|
80
80
|
sendEmailPayment(params: SendEmailPayment): Observable<any>;
|
|
81
|
-
getAllTransfers(): Observable<
|
|
82
|
-
getTransferByCode(
|
|
83
|
-
createTransfer(
|
|
84
|
-
updateTransfer(
|
|
85
|
-
deleteTransfer(
|
|
81
|
+
getAllTransfers(params: ITransferGetAllRq): Observable<any>;
|
|
82
|
+
getTransferByCode(params: ITransferGetRq): Observable<any>;
|
|
83
|
+
createTransfer(params: ITransferCreateRq): Observable<any>;
|
|
84
|
+
updateTransfer(params: ITransferUpdateRq): Observable<any>;
|
|
85
|
+
deleteTransfer(params: ITransferDeleteRq): Observable<any>;
|
|
86
86
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
87
87
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
88
88
|
}
|