Commit 043b996b authored by fangxinjiang's avatar fangxinjiang

MVP1.1:缴费库社保公积金缴纳地推送EKP

parent d56d42d9
......@@ -153,4 +153,9 @@ public class EkpPushFundParam implements Serializable {
**/
private String fd_3b43922217c6f8;
/**
* 公积金创建人姓名
**/
private String fd_3b5cc487bb46fa;
}
\ No newline at end of file
......@@ -257,4 +257,9 @@ public class EkpPushSocialParam implements Serializable {
**/
private String fd_3b438e33f37378;
/**
* 社保创建人姓名
**/
private String fd_3b5cc58d1a70fe;
}
\ No newline at end of file
......@@ -2986,6 +2986,12 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
} else {
socialParam.setFd_3b438e33f37378(CommonConstants.EMPTY_STRING);
}
// 缴纳地
if (Common.isNotNull(library.getSocialPayAddr())){
socialParam.setFd_3b5cc58d1a70fe(library.getSocialPayAddr());
}else {
socialParam.setFd_3b5cc58d1a70fe(CommonConstants.EMPTY_STRING);
}
//我司到款单位
socialParam.setFd_3b01953871b8be(CommonConstants.EMPTY_STRING);
//社保id
......@@ -3119,6 +3125,12 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
} else {
fundParam.setFd_3b43922217c6f8(CommonConstants.EMPTY_STRING);
}
//公积金缴纳地
if (Common.isNotNull(library.getProvidentPayAddr())) {
fundParam.setFd_3b5cc487bb46fa(library.getProvidentPayAddr());
} else {
fundParam.setFd_3b5cc487bb46fa(CommonConstants.EMPTY_STRING);
}
doJointSocialTask.asynchronousEkpPaymentFund(fundParam, library);
}
}catch (Exception e) {
......
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