Commit ff94c938 by 徐高华

好办过期

parent 07517804
...@@ -358,6 +358,16 @@ public class WxEnterpriseInfoController extends WebBaseController { ...@@ -358,6 +358,16 @@ public class WxEnterpriseInfoController extends WebBaseController {
public HaobanResponse getInfoByMemberCode(GetUserByMemberCodeQo qo) { public HaobanResponse getInfoByMemberCode(GetUserByMemberCodeQo qo) {
logger.info("会员小程序={}", JSON.toJSONString(qo)); logger.info("会员小程序={}", JSON.toJSONString(qo));
String gicEnterpriseId = qo.getGicEnterpriseId(); String gicEnterpriseId = qo.getGicEnterpriseId();
if(StringUtils.isNotEmpty(gicEnterpriseId)) {
if(this.wxEnterpriseApiService.haobanIsStop(gicEnterpriseId)) {
HaobanResponse response = new HaobanResponse() ;
response.setErrorCode(-1);
String msg = this.wxEnterpriseApiService.getEndDate(gicEnterpriseId) ;
response.setMessage(msg);
response.setDetailError(msg);
return response;
}
}
WxEnterpriseDTO enterpriseDTO = null; WxEnterpriseDTO enterpriseDTO = null;
if (StringUtils.isNotBlank(qo.getCorpId())) { if (StringUtils.isNotBlank(qo.getCorpId())) {
enterpriseDTO = wxEnterpriseApiService.getEnterpriseBycorpId(qo.getCorpId()); enterpriseDTO = wxEnterpriseApiService.getEnterpriseBycorpId(qo.getCorpId());
......
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