From afc5defd6f0196ddce0ddfaf6ef022b69cd7da87 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 25 May 2024 18:09:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=A0=B9=E6=8D=AEPID=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E5=8F=91=E9=80=81=E5=B9=B3=E5=8F=B0=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/queue/redis/PushPlatformPrintSend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/queue/redis/PushPlatformPrintSend.php b/app/queue/redis/PushPlatformPrintSend.php index 084c6b6..3ef7415 100644 --- a/app/queue/redis/PushPlatformPrintSend.php +++ b/app/queue/redis/PushPlatformPrintSend.php @@ -45,7 +45,7 @@ class PushPlatformPrintSend implements Consumer $find['mer_user_mobile'] = $mer_user_info['mobile']; $find['nickname'] = $user['nickname']; $find['user_mobile'] = $user['mobile']; - $find['info'] = Cashierinfo::where('pid', 445)->field('goods,nums,price,total')->select()->each(function ($item) { + $find['info'] = Cashierinfo::where('pid', $find['id'])->field('goods,nums,price,total')->select()->each(function ($item) { $goods = Goods::where('id', $item['goods'])->field('name,unit')->find(); $item['unit_name'] = Unit::where('id', $goods['unit'])->value('name'); $item['goods_name'] = $goods['name'];