forked from yoone/WEB
1
0
Fork 0

Compare commits

..

No commits in common. "2b6e10187ffd44bb5bce5cabfa35ccdfe60f9a7d" and "ce8a1f8bd7661b0e937e69e38b703e6486a35550" have entirely different histories.

3 changed files with 0 additions and 37 deletions

View File

@ -188,10 +188,6 @@ const ListPage: React.FC = () => {
dataIndex: 'total',
hideInSearch: true,
},
{
title: '支付方式',
dataIndex: 'payment_method',
},
{
title: '总订单数',
dataIndex: 'order_count',

View File

@ -26,19 +26,6 @@ const ListPage: React.FC = () => {
dataIndex: 'productSku',
hideInSearch: true,
},
{
title: '出入库',
dataIndex: 'operationType',
valueType: 'select',
valueEnum: {
'in': {
text: '入库'
},
"out": {
text: '出库'
}
},
},
{
title: '库存',
hideInSearch: true,
@ -65,18 +52,6 @@ const ListPage: React.FC = () => {
valueType: 'dateTime',
hideInSearch: true,
},
{
title: '起始日期',
dataIndex: 'startDate',
valueType: 'date',
hideInTable: true,
},
{
title: '结束日期',
dataIndex: 'endDate',
valueType: 'date',
hideInTable: true,
},
];
return (

View File

@ -331,7 +331,6 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund';
paymentMethod?: string;
};
type ordercontrollerRefundorderParams = {
@ -854,7 +853,6 @@ declare namespace API {
| 'after_sale_pending'
| 'pending_reshipment'
| 'pending_refund';
paymentMethod?: string;
};
type QueryOrderSalesDTO = {
@ -922,9 +920,6 @@ declare namespace API {
stockPointId?: number;
productSku?: string;
productName?: string;
operationType?: string;
startDate?: string;
endDate?: string;
};
type QueryStrengthDTO = {
@ -1142,9 +1137,6 @@ declare namespace API {
stockPointId?: number;
productSku?: string;
productName?: string;
operationType?: string;
startDate?: string;
endDate?: string;
};
type stockcontrollerGetstocksParams = {