From 7c5605842484eb1c64e0d9f6de756d5be3495b08 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sun, 13 Oct 2024 19:13:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E6=AE=B5=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E4=BB=A5=E6=8F=90=E9=AB=98=E5=8F=AF=E8=AF=BB=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将'outbound_id'字段改为'outbound',以更清晰地表示其含义,并与'warehousing'字段保持一致。此次修改旨在提高代码的可读性和维护性。 --- app/admin/lists/beforehand_order/BeforehandOrderLists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/admin/lists/beforehand_order/BeforehandOrderLists.php b/app/admin/lists/beforehand_order/BeforehandOrderLists.php index 4f8693612..77da3c764 100644 --- a/app/admin/lists/beforehand_order/BeforehandOrderLists.php +++ b/app/admin/lists/beforehand_order/BeforehandOrderLists.php @@ -75,7 +75,7 @@ class BeforehandOrderLists extends BaseAdminDataLists implements ListsSearchInte } } $item['warehousing']=''; - $item['outbound_id']=''; + $item['outbound']=''; if($item['warehousing_id']>0){ $item->warehousing='已入库|'.$item['warehousing_id']; }