Commit fddf1ef2 by zhiwj

修改

parent 60e1f417
......@@ -197,8 +197,10 @@ public class StoreApiServiceImpl implements StoreApiService {
sb.append("门店名称").append("【").append(oldStore.getStoreName()).append("】")
.append("变更为【").append(newStore.getStoreName()).append("】");
}
if (!CollectionUtils.isEqualCollection(oldStore.getPhotoList(), newStore.getPhotoList())) {
sb.append("门店照片变更");
if (CollectionUtils.isNotEmpty(oldStore.getPhotoList()) && CollectionUtils.isNotEmpty(newStore.getPhotoList())) {
if (!CollectionUtils.isEqualCollection(oldStore.getPhotoList(), newStore.getPhotoList())) {
sb.append("门店照片变更");
}
}
if (newStore.getStoreType() != null && !newStore.getStoreType().equals(oldStore.getStoreType())) {
ServiceResponse<StoreDictDTO> oldStoreType = this.storeDictApiService.getStoreDict("storeType", oldStore.getStoreType().toString());
......
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