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
7b41b49d
Commit
7b41b49d
authored
Jan 22, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
是否BPO结算模式字段同步-fxj
parent
bfe5d0ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
InsurancesConstants.java
...lus/v1/yifu/insurances/constants/InsurancesConstants.java
+5
-0
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+9
-0
No files found.
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/constants/InsurancesConstants.java
View file @
7b41b49d
...
...
@@ -227,6 +227,11 @@ public class InsurancesConstants {
* 商险减员中,无法退回
*/
public
static
final
String
REDUCE_ROLLBACK_REDUCE_IS_NOT_ALLOW
=
"商险减员中,无法退回"
;
/**
* 实缴数据支出中或已支出,若要退回,请撤回支出结算后尝试!
*/
public
static
final
String
REDUCE_ROLLBACK_PAY_IS_NOT_ALLOW
=
"实缴数据支出中或已支出,若要退回,请撤回支出结算后尝试!"
;
/**
* 员工姓名不能为空
*/
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
7b41b49d
...
...
@@ -1730,6 +1730,15 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
sourceIdCardList
.
add
(
detail
.
getEmpIdcardNo
());
replaceIdList
.
add
(
detail
.
getId
());
}
//判断是否已支出或支出中
EkpSettleStatusVo
vo
=
ekpSettleService
.
getSettleStatusFromEkpInsuranceDetail
(
detail
.
getId
());
if
(
vo
!=
null
&&
(
vo
.
getPayStatus
().
equals
(
"已结算"
)
||
vo
.
getPayStatus
().
equals
(
"结算中"
)))
{
InsuranceListVO
listVO
=
new
InsuranceListVO
();
BeanCopyUtils
.
copyProperties
(
detail
,
listVO
);
listVO
.
setProjectName
(
detail
.
getDeptName
());
listVO
.
setErrorMessage
(
InsurancesConstants
.
REDUCE_ROLLBACK_PAY_IS_NOT_ALLOW
);
}
}
//批量更新商险和替换表
if
(!
updList
.
isEmpty
())
{
...
...
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