Commit 5c97a9b6 by zhiwj

修改bug

parent 0fb00265
......@@ -46,6 +46,9 @@ public class ProblemDTO implements Serializable {
* 会员ecuId
*/
private Long ecuId;
private Long areaId;
private String unionId;
/**
* 会员名
*/
......@@ -320,4 +323,20 @@ public class ProblemDTO implements Serializable {
public void setMaliciousStatusTime(Date maliciousStatusTime) {
this.maliciousStatusTime = maliciousStatusTime;
}
public Long getAreaId() {
return areaId;
}
public void setAreaId(Long areaId) {
this.areaId = areaId;
}
public String getUnionId() {
return unionId;
}
public void setUnionId(String unionId) {
this.unionId = unionId;
}
}
\ No newline at end of file
......@@ -79,7 +79,7 @@ public class ProblemOutApiServiceImpl implements ProblemOutApiService {
problemDTO.setMemberName(memberUserDTO.getName());
problemDTO.setMemberPhone(memberUserDTO.getMobile());
// 门店
ServiceResponse<String> serviceStoreId = cuDetailService.getServiceStoreId(problemDTO.getMemberId(), problemDTO.getEnterpriseId(), problemDTO.getEcuId());
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();
......
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