feat(warehouse): 仓库列表增加订单类型字段

- 在仓库产品列表中添加订单类型名称字段
- 初始化订单类型名称为空字符串
- 在列表显示中添加订单类型列
This commit is contained in:
mkm 2025-03-01 10:44:26 +08:00
parent c37634af7d
commit 65f65afc50

View File

@ -92,6 +92,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt
$item->unit_name = '';
$item->store_info = '';
$item->top_cate_name = '';
$item->order_type_name = '';
if ($item->financial_pm == 0) {
$item->financial_pm_name = '出库';
} else {
@ -222,6 +223,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt
'warehouse_name' => '仓库',
'store_name' => '商品名称',
'top_cate_name' => '分类',
'order_type_name' => '订单类型',
'store_info' => '规格',
'unit_name' => '单位',
'financial_pm_name' => '出入库',