Commit 99293ffb by fudahua

会员标签同步-审核门店判断

parent 48e22ac8
...@@ -173,7 +173,11 @@ public class AuditApiServiceImpl implements AuditApiService{ ...@@ -173,7 +173,11 @@ public class AuditApiServiceImpl implements AuditApiService{
String oldValue = tab.getOldValue(); String oldValue = tab.getOldValue();
String newValue = tab.getNewValue(); String newValue = tab.getNewValue();
String changeField = tab.getChangeField(); String changeField = tab.getChangeField();
this.editStoreInfo(storeId, changeField, oldValue, newValue); StoreDTO store = storeService.getStore(storeId);
if (store != null) {
return "门店不存在";
}
this.editStoreInfo(storeId, changeField, oldValue, newValue);
//发送消息 //发送消息
String title = "门店信息修改通知"; String title = "门店信息修改通知";
String content = StoreFieldEnum.getValueName(changeField); String content = StoreFieldEnum.getValueName(changeField);
......
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