iptdevs-design-system 3.1.796 → 3.1.797
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 +16 -4
- package/fesm2015/iptdevs-design-system.mjs +15 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +8 -0
- package/lib/core/services/budget-service/budget-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -410,6 +410,14 @@ export interface ITransferCreateRq extends ITransferBase {
|
|
|
410
410
|
token: string;
|
|
411
411
|
image?: File;
|
|
412
412
|
}
|
|
413
|
+
export interface ITransferShowImageRq {
|
|
414
|
+
code: number;
|
|
415
|
+
}
|
|
416
|
+
export interface ITransferAssignImage {
|
|
417
|
+
token: string;
|
|
418
|
+
code: number;
|
|
419
|
+
image: File;
|
|
420
|
+
}
|
|
413
421
|
export interface ITransferUpdateRq extends ITransferBase {
|
|
414
422
|
token: string;
|
|
415
423
|
code: number;
|
|
@@ -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, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq, IElectronicInvoiceRS } from '../../models/budget/budget.model';
|
|
4
|
-
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
4
|
+
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferAssignImage, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferShowImageRq, ITransferStatusUpdateRq, 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';
|
|
@@ -82,6 +82,8 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
82
82
|
getAllTransfers(params: ITransferGetAllRq): Observable<any>;
|
|
83
83
|
getTransferByCode(params: ITransferGetRq): Observable<any>;
|
|
84
84
|
createTransfer(params: ITransferCreateRq): Observable<any>;
|
|
85
|
+
showTransferImage(params: ITransferShowImageRq): Observable<Blob>;
|
|
86
|
+
assignImageToTransfer(params: ITransferAssignImage): Observable<any>;
|
|
85
87
|
updateTransfer(params: ITransferUpdateRq): Observable<any>;
|
|
86
88
|
updateTransferStatus(params: ITransferStatusUpdateRq): Observable<any>;
|
|
87
89
|
deleteTransfer(params: ITransferDeleteRq): Observable<any>;
|