forked from yoone/WEB
1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
黄珑 2b6e10187f Improvement: 订单页面增加payment_method相关内容 2025-09-22 12:10:20 +08:00
黄珑 a575618f8f Improvement: 库存记录增加筛选 2025-09-19 16:54:04 +08:00
3 changed files with 37 additions and 0 deletions

View File

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

View File

@ -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 (

View File

@ -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 = {