Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
fe559342
Commit
fe559342
authored
Dec 15, 2022
by
李灿灿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改数据,没变化不推ekp
parent
aa0572eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
51 deletions
+58
-51
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+58
-51
No files found.
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
fe559342
...
@@ -16,6 +16,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants;
...
@@ -16,6 +16,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.SecurityConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.SecurityConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.*
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.*
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.equator.HrEquator
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.dapr.config.DaprArchivesProperties
;
import
com.yifu.cloud.plus.v1.yifu.common.dapr.config.DaprArchivesProperties
;
import
com.yifu.cloud.plus.v1.yifu.common.dapr.util.*
;
import
com.yifu.cloud.plus.v1.yifu.common.dapr.util.*
;
...
@@ -2135,32 +2136,35 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -2135,32 +2136,35 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
//只有当结算id存在的时候修改数据才会推给ekp
//只有当结算id存在的时候修改数据才会推给ekp
if
(
StringUtils
.
isNotBlank
(
detail
.
getDefaultSettleId
())){
if
(
StringUtils
.
isNotBlank
(
detail
.
getDefaultSettleId
())){
try
{
String
differenceKey
=
HrEquator
.
comparisonValue
(
oldDetail
,
detail
);
//推送修改信息
if
(!
Common
.
isEmpty
(
differenceKey
)){
StringBuilder
sb
=
new
StringBuilder
();
try
{
sb
.
append
(
"操作人:"
+
user
.
getNickname
()
+
";操作时间:"
+
LocalDateTime
.
now
().
format
(
DateTimeFormatter
.
ofPattern
(
"yyyy-MM-dd HH:mm:ss"
)));
//推送修改信息
if
(!
oldDetail
.
getPolicyStart
().
toString
().
equals
(
success
.
getPolicyStartNew
()))
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
";变更前保单开始时间:"
+
oldDetail
.
getPolicyStart
()
+
";变更后保单开始时间:"
+
success
.
getPolicyStartNew
());
sb
.
append
(
"操作人:"
+
user
.
getNickname
()
+
";操作时间:"
+
LocalDateTime
.
now
().
format
(
DateTimeFormatter
.
ofPattern
(
"yyyy-MM-dd HH:mm:ss"
)));
}
if
(!
oldDetail
.
getPolicyStart
().
toString
().
equals
(
success
.
getPolicyStartNew
()))
{
if
(!
oldDetail
.
getPolicyEnd
().
toString
().
equals
(
success
.
getPolicyEndNew
()))
{
sb
.
append
(
";变更前保单开始时间:"
+
oldDetail
.
getPolicyStart
()
+
";变更后保单开始时间:"
+
success
.
getPolicyStartNew
());
sb
.
append
(
";变更前保单结束时间:"
+
oldDetail
.
getPolicyEnd
()
+
";变更后保单结束时间:"
+
success
.
getPolicyEndNew
());
}
}
if
(!
oldDetail
.
getPolicyEnd
().
toString
().
equals
(
success
.
getPolicyEndNew
()))
{
if
(!
oldDetail
.
getBuyType
().
equals
(
success
.
getBuyType
()))
{
sb
.
append
(
";变更前保单结束时间:"
+
oldDetail
.
getPolicyEnd
()
+
";变更后保单结束时间:"
+
success
.
getPolicyEndNew
());
sb
.
append
(
";变更前投保类型:"
+
getBuyType
(
oldDetail
.
getBuyType
())
+
";变更后投保类型:"
+
getBuyType
(
success
.
getBuyType
()));
}
}
if
(!
oldDetail
.
getBuyType
().
equals
(
success
.
getBuyType
()))
{
if
(
StringUtils
.
isNotBlank
(
success
.
getReason
())){
sb
.
append
(
";变更前投保类型:"
+
getBuyType
(
oldDetail
.
getBuyType
())
+
";变更后投保类型:"
+
getBuyType
(
success
.
getBuyType
()));
sb
.
append
(
";变更原因:"
+
success
.
getReason
());
}
if
(
StringUtils
.
isNotBlank
(
success
.
getReason
())){
sb
.
append
(
";变更原因:"
+
success
.
getReason
());
}
EkpUpdateParam
ekpUpdateParam
=
new
EkpUpdateParam
();
ekpUpdateParam
.
setFd_3b5bf02d3b8fc4
(
success
.
getPolicyStartNew
());
ekpUpdateParam
.
setFd_3b5bf02e1d47cc
(
success
.
getPolicyEndNew
());
ekpUpdateParam
.
setFd_3b5bf02fa14596
(
getBuyType
(
success
.
getBuyType
()));
ekpUpdateParam
.
setFd_3b5bf031b52314
(
detail
.
getBuyStandard
());
ekpUpdateParam
.
setFd_3b5bf032d7a822
(
detail
.
getId
()
+
"_"
+
detail
.
getDefaultSettleId
());
ekpUpdateParam
.
setFd_3b5bf0b7b4c058
(
sb
.
toString
());
eKPInsuranceUtil
.
sendUpdateToEkp
(
ekpUpdateParam
);
}
catch
(
Exception
e
){
log
.
error
(
"pushEkp error updateInsuranceInsured:"
,
e
.
getMessage
());
}
}
EkpUpdateParam
ekpUpdateParam
=
new
EkpUpdateParam
();
ekpUpdateParam
.
setFd_3b5bf02d3b8fc4
(
success
.
getPolicyStartNew
());
ekpUpdateParam
.
setFd_3b5bf02e1d47cc
(
success
.
getPolicyEndNew
());
ekpUpdateParam
.
setFd_3b5bf02fa14596
(
getBuyType
(
success
.
getBuyType
()));
ekpUpdateParam
.
setFd_3b5bf031b52314
(
detail
.
getBuyStandard
());
ekpUpdateParam
.
setFd_3b5bf032d7a822
(
detail
.
getId
()
+
"_"
+
detail
.
getDefaultSettleId
());
ekpUpdateParam
.
setFd_3b5bf0b7b4c058
(
sb
.
toString
());
eKPInsuranceUtil
.
sendUpdateToEkp
(
ekpUpdateParam
);
}
catch
(
Exception
e
){
log
.
error
(
"pushEkp error updateInsuranceInsured:"
,
e
.
getMessage
());
}
}
}
}
}
}
...
@@ -2245,32 +2249,35 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -2245,32 +2249,35 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
//只有当结算id存在的时候修改数据才会推给ekp
//只有当结算id存在的时候修改数据才会推给ekp
if
(
StringUtils
.
isNotBlank
(
byId
.
getDefaultSettleId
())){
if
(
StringUtils
.
isNotBlank
(
byId
.
getDefaultSettleId
())){
try
{
String
differenceKey
=
HrEquator
.
comparisonValue
(
old
,
byId
);
//推送修改信息
if
(!
Common
.
isEmpty
(
differenceKey
)){
StringBuilder
sb
=
new
StringBuilder
();
try
{
sb
.
append
(
"操作人:"
+
user
.
getNickname
()
+
";操作时间:"
+
LocalDateTime
.
now
().
format
(
DateTimeFormatter
.
ofPattern
(
"yyyy-MM-dd HH:mm:ss"
)));
//推送修改信息
if
(!
old
.
getPolicyStart
().
toString
().
equals
(
param
.
getPolicyStart
()))
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
";变更前保单开始时间:"
+
old
.
getPolicyStart
()
+
";变更后保单开始时间:"
+
param
.
getPolicyStart
());
sb
.
append
(
"操作人:"
+
user
.
getNickname
()
+
";操作时间:"
+
LocalDateTime
.
now
().
format
(
DateTimeFormatter
.
ofPattern
(
"yyyy-MM-dd HH:mm:ss"
)));
}
if
(!
old
.
getPolicyStart
().
toString
().
equals
(
param
.
getPolicyStart
()))
{
if
(!
old
.
getPolicyEnd
().
toString
().
equals
(
param
.
getPolicyEnd
()))
{
sb
.
append
(
";变更前保单开始时间:"
+
old
.
getPolicyStart
()
+
";变更后保单开始时间:"
+
param
.
getPolicyStart
());
sb
.
append
(
";变更前保单结束时间:"
+
old
.
getPolicyEnd
()
+
";变更后保单结束时间:"
+
param
.
getPolicyEnd
());
}
}
if
(!
old
.
getPolicyEnd
().
toString
().
equals
(
param
.
getPolicyEnd
()))
{
if
(!
old
.
getBuyType
().
equals
(
param
.
getBuyType
()))
{
sb
.
append
(
";变更前保单结束时间:"
+
old
.
getPolicyEnd
()
+
";变更后保单结束时间:"
+
param
.
getPolicyEnd
());
sb
.
append
(
";变更前投保类型:"
+
getBuyType
(
old
.
getBuyType
())
+
";变更后投保类型:"
+
getBuyType
(
param
.
getBuyType
()));
}
}
if
(!
old
.
getBuyType
().
equals
(
param
.
getBuyType
()))
{
if
(
StringUtils
.
isNotBlank
(
param
.
getReason
())){
sb
.
append
(
";变更前投保类型:"
+
getBuyType
(
old
.
getBuyType
())
+
";变更后投保类型:"
+
getBuyType
(
param
.
getBuyType
()));
sb
.
append
(
";变更原因:"
+
param
.
getReason
());
}
}
if
(
StringUtils
.
isNotBlank
(
param
.
getReason
())){
EkpUpdateParam
ekpUpdateParam
=
new
EkpUpdateParam
();
sb
.
append
(
";变更原因:"
+
param
.
getReason
());
ekpUpdateParam
.
setFd_3b5bf02d3b8fc4
(
param
.
getPolicyStart
());
}
ekpUpdateParam
.
setFd_3b5bf02e1d47cc
(
param
.
getPolicyEnd
());
EkpUpdateParam
ekpUpdateParam
=
new
EkpUpdateParam
();
ekpUpdateParam
.
setFd_3b5bf02fa14596
(
getBuyType
(
param
.
getBuyType
()));
ekpUpdateParam
.
setFd_3b5bf02d3b8fc4
(
param
.
getPolicyStart
());
ekpUpdateParam
.
setFd_3b5bf031b52314
(
byId
.
getBuyStandard
());
ekpUpdateParam
.
setFd_3b5bf02e1d47cc
(
param
.
getPolicyEnd
());
ekpUpdateParam
.
setFd_3b5bf032d7a822
(
byId
.
getId
()
+
"_"
+
byId
.
getDefaultSettleId
());
ekpUpdateParam
.
setFd_3b5bf02fa14596
(
getBuyType
(
param
.
getBuyType
()));
ekpUpdateParam
.
setFd_3b5bf0b7b4c058
(
sb
.
toString
());
ekpUpdateParam
.
setFd_3b5bf031b52314
(
byId
.
getBuyStandard
());
eKPInsuranceUtil
.
sendUpdateToEkp
(
ekpUpdateParam
);
ekpUpdateParam
.
setFd_3b5bf032d7a822
(
byId
.
getId
()
+
"_"
+
byId
.
getDefaultSettleId
());
}
catch
(
Exception
e
){
ekpUpdateParam
.
setFd_3b5bf0b7b4c058
(
sb
.
toString
());
log
.
error
(
"pushEkp error updateInsuranceInsuredById:"
,
e
.
getMessage
());
eKPInsuranceUtil
.
sendUpdateToEkp
(
ekpUpdateParam
);
}
catch
(
Exception
e
){
log
.
error
(
"pushEkp error updateInsuranceInsuredById:"
,
e
.
getMessage
());
}
}
}
}
}
this
.
updateById
(
byId
);
this
.
updateById
(
byId
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment