From 81f98409935fccb1fb93982de558bd7016eee8b1 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 6 Feb 2025 10:14:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(inventory=5Ftransfer=5Forder):=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=A4=87=E6=B3=A8=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在库存转移订单列表中添加了 mark 字段,以便显示备注信息 - 此修改有助于管理员更好地了解订单的详细情况和特殊说明 --- .../inventory_transfer_order/InventoryTransferOrderLists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php b/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php index 5d6230c84..ce8b0e39c 100644 --- a/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php +++ b/app/admin/lists/inventory_transfer_order/InventoryTransferOrderLists.php @@ -45,7 +45,7 @@ class InventoryTransferOrderLists extends BaseAdminDataLists implements ListsSea public function lists(): array { return InventoryTransferOrder::where($this->searchWhere) - ->field(['id', 'order_id', 'one_id', 'one_type', 'two_id', 'two_type', 'types', 'total_nums', 'total_price']) + ->field(['id', 'order_id', 'one_id', 'one_type', 'two_id', 'two_type', 'types', 'total_nums', 'total_price','mark']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function ($item) {