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