作者 王智

修复生成订单号 失败

@@ -625,12 +625,11 @@ class Index extends Api @@ -625,12 +625,11 @@ class Index extends Api
625 $Arr = Db::name('stor')->select(); 625 $Arr = Db::name('stor')->select();
626 $Code = input('battery_code'); 626 $Code = input('battery_code');
627 $battery_code = explode('-', $Code); 627 $battery_code = explode('-', $Code);
628 - $map['BatteryCode'] = ['LIKE', '%' . $battery_code[1] . '%'];  
629 if (empty($Code) || $Code == '' || $Code == "" || $Code == null) { 628 if (empty($Code) || $Code == '' || $Code == "" || $Code == null) {
630 $this->error('请先链接蓝牙', 0); 629 $this->error('请先链接蓝牙', 0);
631 die; 630 die;
632 } 631 }
633 - $map['BatteryCode'] = ['LIKE', '%' . $Code . '%']; 632 + $map['BatteryCode'] = ['LIKE', '%' . $battery_code[1] . '%'];
634 //用户电池分类ID 633 //用户电池分类ID
635 $Id = Db::name('battery_code')->where($map)->value('id'); 634 $Id = Db::name('battery_code')->where($map)->value('id');
636 if (empty($Id)) { 635 if (empty($Id)) {