Commit 1af07722 by zhiwj

提交门店

parent a495487c
......@@ -388,7 +388,10 @@ public class StoreImportController {
// 验证品牌
String brands = row.get(7);
if (StringUtils.isNotBlank(brands)) {
if (StringUtils.isBlank(brands)) {
errorMessage.append("店招品牌不能为空,");
} else {
brands = brands.trim();
bean.setBrands(brands);
String errorMsg = brandsValidate(enterpriseId, brands);
......
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 to comment