Commit cd1417b2 by zhiwj

修改bug

parent 10d377a1
......@@ -315,7 +315,15 @@ public class StoreController extends DownloadUtils {
if (storeArr.length > 3) {
storeName += "等" + storeArr.length + "家门店";
}
LogUtils.createLog(type == 1 ? "修改启用状态" : "批量编辑", storeName);
String content;
if (type == 1) {
content = "修改启用状态";
} else if (type == 7) {
content = "批量修改分组";
} else {
content = "批量编辑";
}
LogUtils.createLog(content, storeName);
}
}
return RestResponse.success();
......
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