Commit 15f37875 by zhiwj

门店

parent a4fdeb40
......@@ -693,6 +693,12 @@ public class StoreApiServiceImpl implements StoreApiService {
}
storeDTO.setStoreGroupName(processBatchStoreDTO.getStoreGroupName());
TabStoreGroup group = storeGroupService.getStoreGroupByName(processBatchStoreDTO.getStoreGroupName(), processBatchStoreDTO.getEnterpriseId());
if (group != null) {
storeDTO.setStoreGroupId(group.getStoreGroupId());
}
List<StoreFieldDTO> fieldList = storeFieldService.listStoreFieldByRegionId(processBatchStoreDTO.getRegionId());
String customField = processBatchStoreDTO.getCustomField();
if (StringUtils.isBlank(customField)) {
......
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