From 3f9bda6bef1658bebcba8842600678fee71ffd34 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 2 Aug 2024 20:50:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(OrderLogic):=20=E7=A7=BB=E9=99=A4=E4=BA=86?= =?UTF-8?q?=E7=94=9F=E6=88=90=E6=A0=B8=E9=94=80=E7=A0=81=E7=9A=84=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=EF=BC=8C=E4=BB=A5=E4=BC=98=E5=8C=96=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E5=A4=84=E7=90=86=E6=B5=81=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/logic/order/OrderLogic.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index 36690433..2196187d 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -315,12 +315,12 @@ class OrderLogic extends BaseLogic throw new \Exception('余额不足'); } //生成核销码 - $generator = new BarcodeGeneratorPNG(); - $barcode = $generator->getBarcode($verify_code, $generator::TYPE_CODE_128); - $findPath = '/image/barcode/' . time() . '.png'; - $savePath = public_path() . $findPath; - file_put_contents($savePath, $barcode); - $_order['verify_img'] = $findPath; + // $generator = new BarcodeGeneratorPNG(); + // $barcode = $generator->getBarcode($verify_code, $generator::TYPE_CODE_128); + // $findPath = '/image/barcode/' . time() . '.png'; + // $savePath = public_path() . $findPath; + // file_put_contents($savePath, $barcode); + // $_order['verify_img'] = $findPath; Db::startTrans(); try { $order = StoreOrder::create($_order);