feat(OrderLogic): 移除了生成核销码的代码,以优化订单处理流程

This commit is contained in:
mkm 2024-08-02 20:50:03 +08:00
parent 1151b8fb4e
commit 3f9bda6bef

View File

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