Commit 07e7d18e authored by fangxinjiang's avatar fangxinjiang

Merge branch 'develop' into MVP1.2

parents 5fdb92e7 043b996b
...@@ -153,4 +153,9 @@ public class EkpPushFundParam implements Serializable { ...@@ -153,4 +153,9 @@ public class EkpPushFundParam implements Serializable {
**/ **/
private String fd_3b43922217c6f8; private String fd_3b43922217c6f8;
/**
* 公积金创建人姓名
**/
private String fd_3b5cc487bb46fa;
} }
\ No newline at end of file
...@@ -257,4 +257,9 @@ public class EkpPushSocialParam implements Serializable { ...@@ -257,4 +257,9 @@ public class EkpPushSocialParam implements Serializable {
**/ **/
private String fd_3b438e33f37378; 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 ...@@ -2986,6 +2986,12 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
} else { } else {
socialParam.setFd_3b438e33f37378(CommonConstants.EMPTY_STRING); 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); socialParam.setFd_3b01953871b8be(CommonConstants.EMPTY_STRING);
//社保id //社保id
...@@ -3119,6 +3125,12 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa ...@@ -3119,6 +3125,12 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
} else { } else {
fundParam.setFd_3b43922217c6f8(CommonConstants.EMPTY_STRING); 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); doJointSocialTask.asynchronousEkpPaymentFund(fundParam, library);
} }
}catch (Exception e) { }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