Commit 3e375141 by 杨树贤

fix

parent 500cfe9f
Showing with 1 additions and 1 deletions
...@@ -785,7 +785,7 @@ class DataService ...@@ -785,7 +785,7 @@ class DataService
$isUpdate = request()->get('is_update', false); $isUpdate = request()->get('is_update', false);
ini_set('memory_limit', '2048M'); ini_set('memory_limit', '2048M');
//倒序供应商 //倒序供应商
$suppliers = SupplierChannelModel::orderBy('supplier_id', 'desc')->get()->toArray(); $suppliers = SupplierChannelModel::where('is_type', 0)->orderBy('supplier_id', 'desc')->get()->toArray();
$redis = new RedisModel(); $redis = new RedisModel();
foreach ($suppliers as $key => $supplier) { foreach ($suppliers as $key => $supplier) {
//检测cp_time是否为空 //检测cp_time是否为空
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment