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
10b7b0b7
Commit
10b7b0b7
authored
Apr 21, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-入职登记商险待办提交
parent
11518b88
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
TEmployeeInsurancePreServiceImpl.java
...vice/insurance/impl/TEmployeeInsurancePreServiceImpl.java
+3
-3
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+1
-0
No files found.
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TEmployeeInsurancePreServiceImpl.java
View file @
10b7b0b7
...
...
@@ -251,19 +251,19 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
List
<
InsuranceReplaceParam
>
replaceParamList
=
new
ArrayList
<>();
if
(!
addParamList
.
isEmpty
())
{
R
<
List
<
InsuranceAddParam
>>
listR
=
detailService
.
addInsurance
(
addParamList
,
null
);
if
(
Common
.
isNotNull
(
listR
)
&&
!
listR
.
getData
().
isEmpty
())
{
if
(
Common
.
isNotNull
(
listR
)
&&
Common
.
isNotNull
(
listR
.
getData
())
&&
!
listR
.
getData
().
isEmpty
())
{
paramList
=
listR
.
getData
();
}
}
if
(!
batchAddParamList
.
isEmpty
())
{
R
<
List
<
InsuranceBatchParam
>>
listR
=
detailService
.
batchInsurance
(
batchAddParamList
,
null
);
if
(
Common
.
isNotNull
(
listR
)
&&
!
listR
.
getData
().
isEmpty
())
{
if
(
Common
.
isNotNull
(
listR
)
&&
Common
.
isNotNull
(
listR
.
getData
())
&&
!
listR
.
getData
().
isEmpty
())
{
batchParamList
=
listR
.
getData
();
}
}
if
(!
replaceAddParamList
.
isEmpty
())
{
R
<
List
<
InsuranceReplaceParam
>>
listR
=
detailService
.
replaceInsurance
(
replaceAddParamList
,
null
);
if
(
Common
.
isNotNull
(
listR
)
&&
!
listR
.
getData
().
isEmpty
())
{
if
(
Common
.
isNotNull
(
listR
)
&&
Common
.
isNotNull
(
listR
.
getData
())
&&
!
listR
.
getData
().
isEmpty
())
{
replaceParamList
=
listR
.
getData
();
}
}
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
10b7b0b7
...
...
@@ -8384,6 +8384,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
}
else
{
pre
=
employeeInsurancePreMapper
.
selectOne
(
Wrappers
.<
TEmployeeInsurancePre
>
query
().
lambda
()
.
eq
(
TEmployeeInsurancePre:
:
getEmpIdcard
,
insuranceDetail
.
getEmpIdcardNo
())
.
eq
(
TEmployeeInsurancePre:
:
getDeptNo
,
insuranceDetail
.
getDeptNo
())
.
eq
(
TEmployeeInsurancePre:
:
getBuyStandard
,
insuranceDetail
.
getBuyStandard
())
.
eq
(
TEmployeeInsurancePre:
:
getInsuranceTypeName
,
insuranceDetail
.
getInsuranceTypeName
())
.
eq
(
TEmployeeInsurancePre:
:
getInsuranceCompanyName
,
insuranceDetail
.
getInsuranceCompanyName
())
...
...
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