Commit 89a02a4c authored by hongguangwu's avatar hongguangwu

MVP1.7.9-20

parent 7c02f5db
...@@ -991,7 +991,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -991,7 +991,7 @@ public class IcbcTransactionFlowIssueServiceImpl extends ServiceImpl<EkpSocialIn
logs.setFdTransactionFailTotal(0); logs.setFdTransactionFailTotal(0);
// 成功总笔数 // 成功总笔数
logs.setFdTransactionSuccessTotal(0); logs.setFdTransactionSuccessTotal(0);
if ("02".equals(data.getResult())) { if ("02".equals(data.getResult()) || "5".equals(data.getResult())) {
// 失败总笔数 // 失败总笔数
logs.setFdTransactionSuccessTotal(1); logs.setFdTransactionSuccessTotal(1);
logs.setFdSuccessFee(money); logs.setFdSuccessFee(money);
......
...@@ -276,6 +276,7 @@ public class SocialFriendConfig { ...@@ -276,6 +276,7 @@ public class SocialFriendConfig {
private void setEmpInfoAdd(JSONObject json, List<SociaFriendYgsAddVo> listVo, int type) { private void setEmpInfoAdd(JSONObject json, List<SociaFriendYgsAddVo> listVo, int type) {
// 参保人员名单 数组 // 参保人员名单 数组
JSONArray cbrymdArr = new JSONArray(); JSONArray cbrymdArr = new JSONArray();
JSONArray qyzgshbxzyhmclbArr = new JSONArray();
JSONObject cbrymdOne; JSONObject cbrymdOne;
// 2025-3-14 15:44:32 单个改造为批量 // 2025-3-14 15:44:32 单个改造为批量
...@@ -396,6 +397,7 @@ public class SocialFriendConfig { ...@@ -396,6 +397,7 @@ public class SocialFriendConfig {
// 企业职工社会保险增员花名册 安徽非必填! // 企业职工社会保险增员花名册 安徽非必填!
// 社保增员必填 // 社保增员必填
tszdxx.put("qyzgshbxzyhmc", vo.getQyzgshbxzyhmc()); tszdxx.put("qyzgshbxzyhmc", vo.getQyzgshbxzyhmc());
qyzgshbxzyhmclbArr.add(vo.getQyzgshbxzyhmc());
} else { } else {
// 企业职工基本医疗保险参保登记表 安徽非必填! 数组 // 企业职工基本医疗保险参保登记表 安徽非必填! 数组
String[] arr = {vo.getQyzgjbylbxcbdjb()}; String[] arr = {vo.getQyzgjbylbxcbdjb()};
...@@ -418,6 +420,7 @@ public class SocialFriendConfig { ...@@ -418,6 +420,7 @@ public class SocialFriendConfig {
// 人员名单 // 人员名单
String buyType = "cbrymd"; String buyType = "cbrymd";
json.put(buyType, cbrymdArr); json.put(buyType, cbrymdArr);
json.put("qyzgshbxzyhmclb", qyzgshbxzyhmclbArr);
} }
/** /**
...@@ -431,10 +434,12 @@ public class SocialFriendConfig { ...@@ -431,10 +434,12 @@ public class SocialFriendConfig {
// 参保人员名单 数组 // 参保人员名单 数组
// 参保人员名单 数组 // 参保人员名单 数组
JSONArray cbrymdArr = new JSONArray(); JSONArray cbrymdArr = new JSONArray();
JSONArray qyzgshbxzyhmclbArr = new JSONArray();
JSONObject cbrymdOne = new JSONObject(); JSONObject cbrymdOne = new JSONObject();
// 2025-3-14 15:44:32 单个改造为批量 // 2025-3-14 15:44:32 单个改造为批量
for (SociaFriendYgsAddVo vo : listVo) { for (SociaFriendYgsAddVo vo : listVo) {
qyzgshbxzyhmclbArr.add(vo.getQyzgshbxzyhmc());
// 姓名 // 姓名
cbrymdOne.put("xm", vo.getEmpName()); cbrymdOne.put("xm", vo.getEmpName());
// 证件类型 // 证件类型
...@@ -478,6 +483,7 @@ public class SocialFriendConfig { ...@@ -478,6 +483,7 @@ public class SocialFriendConfig {
// 人员名单 // 人员名单
String buyType = "tbrymd"; String buyType = "tbrymd";
json.put(buyType, cbrymdArr); json.put(buyType, cbrymdArr);
json.put("qyzgshbxzyhmclb", qyzgshbxzyhmclbArr);
} }
/** /**
......
...@@ -126,9 +126,11 @@ public class TSocialFriendController { ...@@ -126,9 +126,11 @@ public class TSocialFriendController {
info.setCreateUserName(user.getNickname()); info.setCreateUserName(user.getNickname());
tSocialFreindPushAndGetService.save(info); tSocialFreindPushAndGetService.save(info);
if (type == CommonConstants.ONE_INT) { if (type == CommonConstants.ONE_INT) {
doJointFriendTask.pushFriendByAsync(); //doJointFriendTask.pushFriendByAsync()
tSocialFriendPushService.pushFriend(null);
} else { } else {
doJointFriendTask.getInfoByRequestIdByAsync(); //doJointFriendTask.getInfoByRequestIdByAsync()
tSocialFriendService.getInfoByRequestId();
} }
return R.ok(); return R.ok();
} }
......
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