From c80d5586b630e9699e69064c820bcf22121ed195 Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Fri, 8 Sep 2023 12:48:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=98=9F=E5=88=97=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crmeb/jobs/SendGoodsCodeJob.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/crmeb/jobs/SendGoodsCodeJob.php b/crmeb/jobs/SendGoodsCodeJob.php index 18f4860a..749f33b1 100644 --- a/crmeb/jobs/SendGoodsCodeJob.php +++ b/crmeb/jobs/SendGoodsCodeJob.php @@ -58,16 +58,17 @@ class SendGoodsCodeJob implements JobInterface 'street_code' => $addressInfo[3] ?? '', 'village_code' => $addressInfo[4] ?? '', 'brigade_id' => $addressInfo[5] ?? 0, + 'product_id' => 0, + 'product_price' => 0, + 'total_price' => $order['pay_price'] ?? 0, + 'product_num' => $order['total_num'] ?? 0, 'status' => 1, 'create_time' => date('Y-m-d H:i:s') ]; //商品信息 $productInfo = Db::name('store_order_product')->where('order_id', $order['order_id'] ?? 0)->find(); if ($productInfo) { - $productOrder['product_id'] = $productInfo['product_id'] ?? 0; - $productOrder['product_price'] = $productInfo['product_price'] ?? 0; - $productOrder['total_price'] = $productInfo['total_price'] ?? 0; - $productOrder['product_num'] = $productInfo['product_num'] ?? 0; + } //商户信息 $merchantInfo = Db::name('merchant')->where('mer_id', $order['mer_id'] ?? 0)->find();