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);