From 53dfa80a6885cb2392c25761e41a51f540c75bd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 28 Jan 2021 11:26:56 +0800 Subject: [PATCH] Update ShopOrder.php --- app/data/controller/ShopOrder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/controller/ShopOrder.php b/app/data/controller/ShopOrder.php index eb80f8ff4..db1cb6549 100644 --- a/app/data/controller/ShopOrder.php +++ b/app/data/controller/ShopOrder.php @@ -123,7 +123,7 @@ class ShopOrder extends Controller $map = ['order_no' => $vo['order_no']]; $order = $this->app->db->name('ShopOrder')->where($map)->find(); if (empty($order)) $this->error('订单查询异常,请稍候再试!'); - // 配送快递公司信息填写 + // 配送快递公司填写 $map = ['code_1|code_2|code_3' => $vo['company_code']]; $company = $this->app->db->name('ShopTruckCompany')->where($map)->find(); if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!');