Merge pull request 'feat(admin): 为仓库订单和产品列表添加代码搜索功能' (#297) from dev into main

Reviewed-on: #297
This commit is contained in:
mkm 2024-10-30 16:24:07 +08:00
commit ed6b2debc1
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class WarehouseOrderLists extends BaseAdminDataLists implements ListsSearchInter
public function setSearch(): array
{
return [
'=' => ['financial_pm', 'supplier_id', 'warehouse_id', 'store_id'],
'=' => ['financial_pm', 'supplier_id', 'warehouse_id', 'store_id','code'],
'between_time' => 'create_time'
];
}

View File

@ -35,7 +35,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt
public function setSearch(): array
{
return [
'=' => ['warehouse_id', 'financial_pm', 'store_id','oid','supplier_id','is_pay'],
'=' => ['warehouse_id', 'financial_pm', 'store_id','oid','supplier_id','is_pay','code'],
'between_time' => 'create_time'
];
}