Commit a7b99c3b by huangZW

Merge branch 'developer' of http://115.159.76.241/haoban3.0/haoban-manage3.0.git into developer

parents af7b2c52 987438fe
...@@ -193,6 +193,7 @@ public class MessageApiServiceImpl implements MessageApiService { ...@@ -193,6 +193,7 @@ public class MessageApiServiceImpl implements MessageApiService {
String response = this.departmentService.add(departmentDTO); String response = this.departmentService.add(departmentDTO);
log.info("微信同步新增部门:{}", JSON.toJSONString(response)); log.info("微信同步新增部门:{}", JSON.toJSONString(response));
}else { }else {
departmentDTO.setIsStore(department.getIsStore());
departmentDTO.setDepartmentId(department.getDepartmentId()); departmentDTO.setDepartmentId(department.getDepartmentId());
this.departmentService.edit(departmentDTO); this.departmentService.edit(departmentDTO);
log.info("企业微信更新同步完成"); log.info("企业微信更新同步完成");
......
...@@ -36,6 +36,8 @@ import com.gic.haoban.manage.web.auth.AuthRequestUtil; ...@@ -36,6 +36,8 @@ import com.gic.haoban.manage.web.auth.AuthRequestUtil;
import com.gic.haoban.manage.web.errCode.HaoBanErrCode; import com.gic.haoban.manage.web.errCode.HaoBanErrCode;
import com.gic.haoban.manage.web.vo.LoginVO; import com.gic.haoban.manage.web.vo.LoginVO;
import com.gic.haoban.manage.web.vo.StoreVo; import com.gic.haoban.manage.web.vo.StoreVo;
import com.gic.wechat.api.service.qywx.QywxCorpApiService;
import com.gic.wechat.api.service.qywx.QywxSuiteApiService;
@RestController @RestController
public class WxEnterpriseController extends WebBaseController{ public class WxEnterpriseController extends WebBaseController{
...@@ -49,6 +51,8 @@ public class WxEnterpriseController extends WebBaseController{ ...@@ -49,6 +51,8 @@ public class WxEnterpriseController extends WebBaseController{
private DepartmentApiService departmentApiService; private DepartmentApiService departmentApiService;
@Autowired @Autowired
private StoreService storeService; private StoreService storeService;
@Autowired
private QywxCorpApiService qywxCorpApiService;
//授权企业列表 //授权企业列表
@HttpLimit @HttpLimit
...@@ -85,6 +89,19 @@ public class WxEnterpriseController extends WebBaseController{ ...@@ -85,6 +89,19 @@ public class WxEnterpriseController extends WebBaseController{
WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseApiService.getOne(wxEnterpriseId); WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseApiService.getOne(wxEnterpriseId);
return resultResponse(HaoBanErrCode.ERR_1,wxEnterpriseDTO); return resultResponse(HaoBanErrCode.ERR_1,wxEnterpriseDTO);
} }
//企业信息
@IgnoreLogin
@RequestMapping("wxEnterprise-refresh")
public HaobanResponse enterpriseRefresh(String wxEnterpriseId) {
if(StringUtils.isEmpty(wxEnterpriseId)){
return resultResponse(HaoBanErrCode.ERR_1);
}
//qywxCorpApiService.
WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseApiService.getOne(wxEnterpriseId);
return resultResponse(HaoBanErrCode.ERR_1,wxEnterpriseDTO);
}
//gic企业列表 //gic企业列表
@IgnoreLogin @IgnoreLogin
@RequestMapping("enterprise-search") @RequestMapping("enterprise-search")
......
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