Compare commits
No commits in common. "2b6e10187ffd44bb5bce5cabfa35ccdfe60f9a7d" and "ce8a1f8bd7661b0e937e69e38b703e6486a35550" have entirely different histories.
2b6e10187f
...
ce8a1f8bd7
|
|
@ -188,10 +188,6 @@ 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,19 +26,6 @@ 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,
|
||||||
|
|
@ -65,18 +52,6 @@ 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,7 +331,6 @@ declare namespace API {
|
||||||
| 'after_sale_pending'
|
| 'after_sale_pending'
|
||||||
| 'pending_reshipment'
|
| 'pending_reshipment'
|
||||||
| 'pending_refund';
|
| 'pending_refund';
|
||||||
paymentMethod?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type ordercontrollerRefundorderParams = {
|
type ordercontrollerRefundorderParams = {
|
||||||
|
|
@ -854,7 +853,6 @@ declare namespace API {
|
||||||
| 'after_sale_pending'
|
| 'after_sale_pending'
|
||||||
| 'pending_reshipment'
|
| 'pending_reshipment'
|
||||||
| 'pending_refund';
|
| 'pending_refund';
|
||||||
paymentMethod?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type QueryOrderSalesDTO = {
|
type QueryOrderSalesDTO = {
|
||||||
|
|
@ -922,9 +920,6 @@ 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 = {
|
||||||
|
|
@ -1142,9 +1137,6 @@ 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