mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-23 12:52:20 +01:00
43 lines
1.7 KiB
TypeScript
43 lines
1.7 KiB
TypeScript
import apiClient from './api-client';
|
|
import { AxiosResponse } from 'axios';
|
|
import {
|
|
CancelScheduleResponse,
|
|
CashCheckResponse, PayItemResponse,
|
|
PaymentSchedule,
|
|
PaymentScheduleIndexRequest, RefreshItemResponse
|
|
} from '../models/payment-schedule';
|
|
import wrapPromise, { IWrapPromise } from '../lib/wrap-promise';
|
|
|
|
export default class PaymentScheduleAPI {
|
|
async list (query: PaymentScheduleIndexRequest): Promise<Array<PaymentSchedule>> {
|
|
const res: AxiosResponse = await apiClient.post(`/api/payment_schedules/list`, query);
|
|
return res?.data;
|
|
}
|
|
|
|
async index (query: PaymentScheduleIndexRequest): Promise<Array<PaymentSchedule>> {
|
|
const res: AxiosResponse = await apiClient.get(`/api/payment_schedules?page=${query.query.page}&size=${query.query.size}`);
|
|
return res?.data;
|
|
}
|
|
|
|
async cashCheck(paymentScheduleItemId: number): Promise<CashCheckResponse> {
|
|
const res: AxiosResponse = await apiClient.post(`/api/payment_schedules/items/${paymentScheduleItemId}/cash_check`);
|
|
return res?.data;
|
|
}
|
|
|
|
async refreshItem(paymentScheduleItemId: number): Promise<RefreshItemResponse> {
|
|
const res: AxiosResponse = await apiClient.post(`/api/payment_schedules/items/${paymentScheduleItemId}/refresh_item`);
|
|
return res?.data;
|
|
}
|
|
|
|
async payItem(paymentScheduleItemId: number): Promise<PayItemResponse> {
|
|
const res: AxiosResponse = await apiClient.post(`/api/payment_schedules/items/${paymentScheduleItemId}/pay_item`);
|
|
return res?.data;
|
|
}
|
|
|
|
async cancel (paymentScheduleId: number): Promise<CancelScheduleResponse> {
|
|
const res: AxiosResponse = await apiClient.put(`/api/payment_schedules/${paymentScheduleId}/cancel`);
|
|
return res?.data;
|
|
}
|
|
}
|
|
|