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
f85b53b1
Commit
f85b53b1
authored
Mar 13, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商险投保列表查询、导出、待缴费查询-fxj
parent
f4462039
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
InsuranceListParam.java
.../cloud/plus/v1/yifu/insurances/vo/InsuranceListParam.java
+6
-0
InsuranceListVO.java
...ifu/cloud/plus/v1/yifu/insurances/vo/InsuranceListVO.java
+1
-1
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+17
-0
No files found.
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceListParam.java
View file @
f85b53b1
...
@@ -169,4 +169,10 @@ public class InsuranceListParam extends BaseEntity {
...
@@ -169,4 +169,10 @@ public class InsuranceListParam extends BaseEntity {
@Schema
(
description
=
"预估保费--截止"
)
@Schema
(
description
=
"预估保费--截止"
)
private
BigDecimal
estimatePremiumEnd
;
private
BigDecimal
estimatePremiumEnd
;
/**
* 派单人
*/
@Schema
(
description
=
"派单人"
)
private
String
createName
;
}
}
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceListVO.java
View file @
f85b53b1
...
@@ -62,7 +62,7 @@ public class InsuranceListVO implements Serializable {
...
@@ -62,7 +62,7 @@ public class InsuranceListVO implements Serializable {
/**
/**
* 项目编码
* 项目编码
*/
*/
@
JsonIgnore
@
Schema
(
description
=
"项目编码"
)
private
String
deptNo
;
private
String
deptNo
;
/**
/**
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
f85b53b1
...
@@ -569,6 +569,23 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -569,6 +569,23 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
.
multiply
(
null
==
detail
.
getRate
()?
BigDecimal
.
ZERO
:
detail
.
getRate
())
.
multiply
(
null
==
detail
.
getRate
()?
BigDecimal
.
ZERO
:
detail
.
getRate
())
.
add
(
new
BigDecimal
(
"5.00"
)));
.
add
(
new
BigDecimal
(
"5.00"
)));
}
}
//v1.7.21 如果预估报废大于购买标准,则预估保费=购买标准
if
(
detail
.
getEstimatePremium
()
!=
null
&&
detail
.
getBuyStandard
()
!=
null
)
{
try
{
String
buyStandardStr
=
detail
.
getBuyStandard
().
trim
();
if
(!
buyStandardStr
.
isEmpty
())
{
BigDecimal
buyStandard
=
new
BigDecimal
(
buyStandardStr
);
if
(
detail
.
getEstimatePremium
().
compareTo
(
buyStandard
)
>
0
)
{
detail
.
setEstimatePremium
(
buyStandard
);
}
}
else
{
log
.
warn
(
"购买标准为空字符串,跳过设置预估保费"
);
}
}
catch
(
NumberFormatException
e
)
{
log
.
error
(
"设置预估保费时发生异常,购买标准格式无效:{}, 预估保费:{}"
,
detail
.
getBuyStandard
(),
detail
.
getEstimatePremium
(),
e
);
}
}
//购买周期
//购买周期
detail
.
setPurchaseCycle
(
purchaseCycle
+
"个月/"
+
day
+
"天"
);
detail
.
setPurchaseCycle
(
purchaseCycle
+
"个月/"
+
day
+
"天"
);
...
...
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