Commit 1a8a0a33 by 朱继来

添加导入检查

parent efd0a2e7
Showing with 3 additions and 1 deletions
......@@ -906,6 +906,8 @@ Class AddOrderController extends Controller
array_shift($excel); // 删除第一行
if (count($excel[0]) != 2) return ['errcode' => 2, 'errmsg' => '导入模板错误,请检查模板'];
$BrandBlackListModel = new BrandBlackListModel;
$err = [];
......@@ -917,7 +919,7 @@ Class AddOrderController extends Controller
$err[] = '第'.($k+1).'行导入失败,原因:'.$res[1];
}
if (!empty($err)) return ['errcode' => 2, 'errmsg' => '请检查导入表格,'.implode('; ', $err)];
if (!empty($err)) return ['errcode' => 3, 'errmsg' => '请检查导入表格,'.implode('; ', $err)];
return ['errcode' => 0, 'errmsg' => '导入成功'];
}
......
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