From 7d852a36a13f7f4e160f09f34f15efc4600060b8 Mon Sep 17 00:00:00 2001 From: Lemon <15040771@qq.com> Date: Mon, 26 Oct 2020 09:35:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Service/v3/Implementations/FeiePrintService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Service/v3/Implementations/FeiePrintService.php b/app/Service/v3/Implementations/FeiePrintService.php index 3b29a74..b8e82eb 100644 --- a/app/Service/v3/Implementations/FeiePrintService.php +++ b/app/Service/v3/Implementations/FeiePrintService.php @@ -227,7 +227,7 @@ class FeiePrintService implements FeiePrintServiceInterface } $orderStatistics = $this->orderStatistics->getForMarket($arr->market_id); $str = sprintf ("%05d", $orderStatistics); // 生成5位数,不足前面补0 - $orderInfo .= $arr->global_order_id.$str; + $orderInfo .= '流水号:' . $arr->global_order_id.$str; //$orderInfo .= 'http://www.feieyun.com';//把解析后的二维码生成的字符串用标签套上即可自动生成二维码 return $orderInfo; }