From f9a93b1e1809ca5364af0f4e9ecdedef0341cd71 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sun, 13 Oct 2024 11:43:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BB=93=E5=BA=93=E8=A1=A5?= =?UTF-8?q?=E8=B4=A7=E8=AE=A2=E5=8D=95=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在BeforehandOrderLists类的订单类型名称映射中添加了新的订单类型"仓库补货",对应订单类型ID为5。这一变更使系统能够正确显示和处理仓库补货订单。 --- app/admin/lists/beforehand_order/BeforehandOrderLists.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/admin/lists/beforehand_order/BeforehandOrderLists.php b/app/admin/lists/beforehand_order/BeforehandOrderLists.php index 0a8258efe..e5121912e 100644 --- a/app/admin/lists/beforehand_order/BeforehandOrderLists.php +++ b/app/admin/lists/beforehand_order/BeforehandOrderLists.php @@ -60,6 +60,8 @@ class BeforehandOrderLists extends BaseAdminDataLists implements ListsSearchInte $item->order_type_name='一条龙订单'; }elseif($item->order_type==4){ $item->order_type_name='线上订单'; + }elseif($item->order_type==5){ + $item->order_type_name='仓库补货'; } }) ->toArray();