Commit 31f001da by zhiwj

修改bug

parent 4b80ad50
......@@ -82,8 +82,10 @@ public class ProblemOutApiServiceImpl implements ProblemOutApiService {
ServiceResponse<String> serviceStoreId = cuDetailService.getServiceStoreId(problemDTO.getAreaId(), problemDTO.getMemberId(), problemDTO.getUnionId(), problemDTO.getEnterpriseId(), problemDTO.getEcuId());
if (serviceStoreId != null && StringUtils.isNotBlank(serviceStoreId.getResult())) {
StoreDTO storeDTO = storeApiService.getStoreById(memberUserDTO.getEnterpriseId(), Integer.valueOf(serviceStoreId.getResult())).getResult();
problemDTO.setStoreName(storeDTO.getStoreName());
StoreDTO storeDTO = storeApiService.getStoreByStoreInfoId(memberUserDTO.getEnterpriseId(), Integer.valueOf(serviceStoreId.getResult())).getResult();
if (storeDTO != null) {
problemDTO.setStoreName(storeDTO.getStoreName());
}
}
if (problemDTO.getAcuId() != null) {
......
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