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
2d100692
Commit
2d100692
authored
Apr 01, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商险提醒优化-fxj
parent
d4ea6ff6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
1 deletion
+77
-1
TAutoMainRelServiceImpl.java
...1/yifu/archives/service/impl/TAutoMainRelServiceImpl.java
+77
-1
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TAutoMainRelServiceImpl.java
View file @
2d100692
...
@@ -83,10 +83,15 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -83,10 +83,15 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
@Autowired
@Autowired
private
TAutoInsurRuleInfoMapper
autoInsurRuleInfoMapper
;
private
TAutoInsurRuleInfoMapper
autoInsurRuleInfoMapper
;
@Autowired
private
TAutoInsurStandardMapper
autoInsurStandardMapper
;
public
static
final
String
itemsLabel
=
"label,description,disable"
;
public
static
final
String
itemsLabel
=
"label,description,disable"
;
public
static
final
String
itemsLabelRepeat
=
"同一项目岗位名称不可重复"
;
public
static
final
String
itemsLabelRepeat
=
"同一项目岗位名称不可重复"
;
public
static
final
String
buyStandardRepeat
=
"同一保险公司+险种+购买标准+购买地不可重复"
;
/**
/**
* 项目配置表主表简单分页查询
* 项目配置表主表简单分页查询
* @param tAutoMainRel 项目配置表主表
* @param tAutoMainRel 项目配置表主表
...
@@ -286,6 +291,21 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -286,6 +291,21 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
return
R
.
failed
(
errorMessage
.
getMessage
());
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
}
}
//校验商险购买标准
List
<
TAutoInsurStandard
>
insurStandards
=
entity
.
getInsurStandards
();
if
(
Common
.
isNotNull
(
insurStandards
)){
ExcelUtil
<
TAutoInsurStandard
>
excelUtil
=
new
ExcelUtil
<>(
TAutoInsurStandard
.
class
);
ErrorMessage
errorMessage
;
for
(
TAutoInsurStandard
standard:
insurStandards
){
errorMessage
=
excelUtil
.
checkEntity
(
standard
,
0
);
if
(
Common
.
isNotNull
(
errorMessage
)){
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
}
if
(!
checkInsurStandardsForDuplicates
(
insurStandards
)){
return
R
.
failed
(
buyStandardRepeat
);
}
// 校验字典项是否有重复标签
// 校验字典项是否有重复标签
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
if
(!
checkDictItemsForDuplicates
(
autoDictItems
))
{
if
(!
checkDictItemsForDuplicates
(
autoDictItems
))
{
...
@@ -316,19 +336,40 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -316,19 +336,40 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
autoEmpRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoEmpRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoEmpRuleInfoMapper
.
insert
(
autoEmpRuleInfo
);
autoEmpRuleInfoMapper
.
insert
(
autoEmpRuleInfo
);
}
}
//新增
档案
规则
//新增
商险
规则
if
(
Common
.
isNotNull
(
autoInsurRuleInfo
)){
if
(
Common
.
isNotNull
(
autoInsurRuleInfo
)){
autoInsurRuleInfo
.
setDeptNo
(
autoMainRel
.
getDeptNo
());
autoInsurRuleInfo
.
setDeptNo
(
autoMainRel
.
getDeptNo
());
autoInsurRuleInfo
.
setDeptId
(
autoMainRel
.
getDeptId
());
autoInsurRuleInfo
.
setDeptId
(
autoMainRel
.
getDeptId
());
autoInsurRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoInsurRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoInsurRuleInfoMapper
.
insert
(
autoInsurRuleInfo
);
autoInsurRuleInfoMapper
.
insert
(
autoInsurRuleInfo
);
}
}
//新增商险购买标准
if
(
Common
.
isNotNull
(
insurStandards
)){
for
(
TAutoInsurStandard
standard:
insurStandards
){
standard
.
setMainId
(
autoInsurRuleInfo
.
getId
());
autoInsurStandardMapper
.
insert
(
standard
);
}
}
return
R
.
ok
();
return
R
.
ok
();
}
catch
(
Exception
e
){
}
catch
(
Exception
e
){
// 捕获异常并返回友好提示
// 捕获异常并返回友好提示
return
R
.
failed
(
"系统异常:"
+
e
.
getMessage
());
return
R
.
failed
(
"系统异常:"
+
e
.
getMessage
());
}
}
}
}
private
boolean
checkInsurStandardsForDuplicates
(
List
<
TAutoInsurStandard
>
insurStandards
)
{
if
(
Common
.
isNotNull
(
insurStandards
))
{
Map
<
String
,
String
>
map
=
new
HashMap
<>();
for
(
TAutoInsurStandard
standard
:
insurStandards
)
{
if
(
map
.
put
(
standard
.
getCompany
()
+
standard
.
getRiskType
()
+
standard
.
getStandard
(),
""
)
!=
null
){
return
true
;
}
}
map
.
clear
();
}
return
false
;
}
/**
/**
* 检查字典项是否有重复标签
* 检查字典项是否有重复标签
*/
*/
...
@@ -407,6 +448,41 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -407,6 +448,41 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
return
R
.
failed
(
errorMessage
.
getMessage
());
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
}
}
//校验商险规则信息
TAutoInsurRuleInfo
autoInsurRuleNew
=
entity
.
getAutoInsurRuleInfo
();
TAutoInsurRuleInfo
autoInsurRuleOld
=
null
;
if
(
Common
.
isNotNull
(
autoInsurRuleNew
)){
// 如果商险规则信息的ID为空,则返回参数错误的响应
if
(!
Common
.
isNotNull
(
autoInsurRuleNew
.
getId
())){
return
R
.
failed
(
CommonConstants
.
PARAM_IS_NOT_ERROR
);
}
// 检查商险规则信息的有效性
ExcelUtil
<
TAutoInsurRuleInfo
>
excelUtil
=
new
ExcelUtil
<>(
TAutoInsurRuleInfo
.
class
);
ErrorMessage
errorMessage
=
excelUtil
.
checkEntity
(
autoInsurRuleNew
,
0
);
if
(
Common
.
isNotNull
(
errorMessage
)){
return
R
.
failed
(
errorMessage
.
getMessage
());
}
// 根据ID查询原有的商险规则信息
autoInsurRuleOld
=
autoInsurRuleInfoMapper
.
selectById
(
autoEmpRuleNew
.
getId
());
}
//校验商险购买标准
List
<
TAutoInsurStandard
>
insurStandards
=
entity
.
getInsurStandards
();
if
(
Common
.
isNotNull
(
insurStandards
)){
ExcelUtil
<
TAutoInsurStandard
>
excelUtil
=
new
ExcelUtil
<>(
TAutoInsurStandard
.
class
);
ErrorMessage
errorMessage
;
for
(
TAutoInsurStandard
standard:
insurStandards
){
errorMessage
=
excelUtil
.
checkEntity
(
standard
,
0
);
if
(
Common
.
isNotNull
(
errorMessage
)){
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
}
if
(!
checkInsurStandardsForDuplicates
(
insurStandards
)){
return
R
.
failed
(
buyStandardRepeat
);
}
// 获取旧的商险标准
List
<
TAutoInsurStandard
>
insurStandardsOld
=
autoInsurStandardMapper
.
selectList
(
Wrappers
.<
TAutoInsurStandard
>
query
().
lambda
().
eq
(
TAutoInsurStandard:
:
getMainId
,
autoInsurRuleNew
.
getId
()));
// 更新岗位字典
// 更新岗位字典
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
Map
<
String
,
SysAutoDictItem
>
repeatItems
=
new
HashMap
<>();
Map
<
String
,
SysAutoDictItem
>
repeatItems
=
new
HashMap
<>();
...
...
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