Fix: fix for api
This commit is contained in:
parent
adbc087171
commit
a8ba59ba88
|
|
@ -45,6 +45,16 @@ export async function ordercontrollerCreatenote(
|
|||
});
|
||||
}
|
||||
|
||||
/** 此处后端没有提供注释 GET /order/excel/price */
|
||||
export async function ordercontrollerGetorderspriceinexcel(options?: {
|
||||
[key: string]: any;
|
||||
}) {
|
||||
return request<any>('/order/excel/price', {
|
||||
method: 'GET',
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
/** 此处后端没有提供注释 POST /order/getOrderByNumber */
|
||||
export async function ordercontrollerGetorderbynumber(
|
||||
body: string,
|
||||
|
|
|
|||
|
|
@ -334,9 +334,9 @@ declare namespace API {
|
|||
| 'after_sale_pending'
|
||||
| 'pending_reshipment'
|
||||
| 'pending_refund'
|
||||
| 'refund_requested'
|
||||
| 'refund_approved'
|
||||
| 'refund_cancelled';
|
||||
| 'return-requested'
|
||||
| 'return-approved'
|
||||
| 'return-cancelled';
|
||||
payment_method?: string;
|
||||
};
|
||||
|
||||
|
|
@ -863,9 +863,9 @@ declare namespace API {
|
|||
| 'after_sale_pending'
|
||||
| 'pending_reshipment'
|
||||
| 'pending_refund'
|
||||
| 'refund_requested'
|
||||
| 'refund_approved'
|
||||
| 'refund_cancelled';
|
||||
| 'return-requested'
|
||||
| 'return-approved'
|
||||
| 'return-cancelled';
|
||||
payment_method?: string;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue