Commit 8bca6054 by wusiyi

feat: 工厂订单增加查询客户交运单号 #1009553

parent 43afc7c9
...@@ -46,6 +46,7 @@ export interface SearchForm { ...@@ -46,6 +46,7 @@ export interface SearchForm {
prop?: string prop?: string
/** list_page 排序方向:asc 正序,desc 倒序 */ /** list_page 排序方向:asc 正序,desc 倒序 */
order?: 'asc' | 'desc' order?: 'asc' | 'desc'
customerNo?: string // 客户交运单号
} }
export interface FactoryOrderNewListData { export interface FactoryOrderNewListData {
......
...@@ -49,7 +49,7 @@ export interface SearchForm { ...@@ -49,7 +49,7 @@ export interface SearchForm {
prop?: string prop?: string
/** list_page 排序方向:asc 正序,desc 倒序 */ /** list_page 排序方向:asc 正序,desc 倒序 */
order?: 'asc' | 'desc' order?: 'asc' | 'desc'
customerNo?: string customerNo?: string // 客户交运单号
} }
export interface FactoryOrderNewListData { export interface FactoryOrderNewListData {
......
...@@ -8,6 +8,7 @@ export const FACTORY_ORDER_LIST_SEARCH_FIELD_RULES: Record< ...@@ -8,6 +8,7 @@ export const FACTORY_ORDER_LIST_SEARCH_FIELD_RULES: Record<
operationNo: (c) => c.isCardLayout, operationNo: (c) => c.isCardLayout,
receiverCountry: (c) => !c.isCardLayout, receiverCountry: (c) => !c.isCardLayout,
logisticsWayId: (c) => c.status === 'ALL', logisticsWayId: (c) => c.status === 'ALL',
customerNo: (c) => c.status === 'ALL',
} }
export function filterFactoryOrderListSearchPayload( export function filterFactoryOrderListSearchPayload(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment