Compare commits
2 Commits
ce8a1f8bd7
...
2b6e10187f
| Author | SHA1 | Date |
|---|---|---|
|
|
2b6e10187f | |
|
|
a575618f8f |
|
|
@ -188,6 +188,10 @@ const ListPage: React.FC = () => {
|
|||
dataIndex: 'total',
|
||||
hideInSearch: true,
|
||||
},
|
||||
{
|
||||
title: '支付方式',
|
||||
dataIndex: 'payment_method',
|
||||
},
|
||||
{
|
||||
title: '总订单数',
|
||||
dataIndex: 'order_count',
|
||||
|
|
|
|||
|
|
@ -26,6 +26,19 @@ const ListPage: React.FC = () => {
|
|||
dataIndex: 'productSku',
|
||||
hideInSearch: true,
|
||||
},
|
||||
{
|
||||
title: '出入库',
|
||||
dataIndex: 'operationType',
|
||||
valueType: 'select',
|
||||
valueEnum: {
|
||||
'in': {
|
||||
text: '入库'
|
||||
},
|
||||
"out": {
|
||||
text: '出库'
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '库存',
|
||||
hideInSearch: true,
|
||||
|
|
@ -52,6 +65,18 @@ const ListPage: React.FC = () => {
|
|||
valueType: 'dateTime',
|
||||
hideInSearch: true,
|
||||
},
|
||||
{
|
||||
title: '起始日期',
|
||||
dataIndex: 'startDate',
|
||||
valueType: 'date',
|
||||
hideInTable: true,
|
||||
},
|
||||
{
|
||||
title: '结束日期',
|
||||
dataIndex: 'endDate',
|
||||
valueType: 'date',
|
||||
hideInTable: true,
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -331,6 +331,7 @@ declare namespace API {
|
|||
| 'after_sale_pending'
|
||||
| 'pending_reshipment'
|
||||
| 'pending_refund';
|
||||
paymentMethod?: string;
|
||||
};
|
||||
|
||||
type ordercontrollerRefundorderParams = {
|
||||
|
|
@ -853,6 +854,7 @@ declare namespace API {
|
|||
| 'after_sale_pending'
|
||||
| 'pending_reshipment'
|
||||
| 'pending_refund';
|
||||
paymentMethod?: string;
|
||||
};
|
||||
|
||||
type QueryOrderSalesDTO = {
|
||||
|
|
@ -920,6 +922,9 @@ declare namespace API {
|
|||
stockPointId?: number;
|
||||
productSku?: string;
|
||||
productName?: string;
|
||||
operationType?: string;
|
||||
startDate?: string;
|
||||
endDate?: string;
|
||||
};
|
||||
|
||||
type QueryStrengthDTO = {
|
||||
|
|
@ -1137,6 +1142,9 @@ declare namespace API {
|
|||
stockPointId?: number;
|
||||
productSku?: string;
|
||||
productName?: string;
|
||||
operationType?: string;
|
||||
startDate?: string;
|
||||
endDate?: string;
|
||||
};
|
||||
|
||||
type stockcontrollerGetstocksParams = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue