Commit 93e9c8f9 authored by hongguangwu's avatar hongguangwu

MVP1.7.3-shuiyou 增减接口

parent 71759fb9
......@@ -64,7 +64,6 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
private final TSocialDeadlineInfoService tSocialDeadlineInfoService;
private final TSocialSoldierLogService tSocialSoldierLogService;
private final TSocialFriendBackLogService tSocialFriendBackLogService;
private final TDispatchInfoService tDispatchInfoService;
/**
* @Description: 推送到税友
......@@ -140,7 +139,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
backLog = new TSocialFriendBackLog();
backLog.setSocialId(vo.getSocialId());
// 房工接口,获取 企业职工社会保险增员花名册 url
urlR = tDispatchInfoService.doExportRoster(vo.getSocialId(), String.valueOf(type), vo.getUnitCreditCode());
urlR = doExportRoster(vo.getSocialId(), String.valueOf(type), vo.getUnitCreditCode());
if (urlR != null && urlR.getCode()==200 && Common.isNotNull(urlR.getData())) {
vo.setQyzgshbxzyhmc(urlR.getData().toString());
}
......@@ -218,7 +217,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
backLog = new TSocialFriendBackLog();
backLog.setSocialId(vo.getSocialId());
// 房工接口,获取 企业职工基本医疗保险参保登记表 url
urlR = tDispatchInfoService.doExportRoster(vo.getSocialId(), String.valueOf(type), vo.getUnitCreditCode());
urlR = doExportRoster(vo.getSocialId(), String.valueOf(type), vo.getUnitCreditCode());
if (urlR != null && urlR.getCode()==200 && Common.isNotNull(urlR.getData())) {
vo.setQyzgjbylbxcbdjb(urlR.getData().toString());
}
......
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