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
c8cc065d
Commit
c8cc065d
authored
Jan 27, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.19' into MVP1.7.19
parents
e32fe410
cd2044a3
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
120 additions
and
11 deletions
+120
-11
BigDecimalUtils.java
.../cloud/plus/v1/yifu/common/core/util/BigDecimalUtils.java
+21
-0
LocalDateUtil.java
...ifu/cloud/plus/v1/yifu/insurances/util/LocalDateUtil.java
+44
-0
EkpSettleMapper.java
...d/plus/v1/yifu/insurances/mapper/ekp/EkpSettleMapper.java
+4
-0
EkpSettleService.java
...plus/v1/yifu/insurances/service/ekp/EkpSettleService.java
+4
-0
EkpSettleServiceImpl.java
...ifu/insurances/service/ekp/impl/EkpSettleServiceImpl.java
+13
-0
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+15
-6
DoJointInsuranceTask.java
...ud/plus/v1/yifu/insurances/util/DoJointInsuranceTask.java
+12
-5
EkpSettleMapper.xml
...ces-biz/src/main/resources/mapper/ekp/EkpSettleMapper.xml
+7
-0
No files found.
yifu-common/yifu-common-core/src/main/java/com/yifu/cloud/plus/v1/yifu/common/core/util/BigDecimalUtils.java
View file @
c8cc065d
...
@@ -87,6 +87,27 @@ public class BigDecimalUtils {
...
@@ -87,6 +87,27 @@ public class BigDecimalUtils {
return
isZero
?
(
r
.
compareTo
(
BigDecimal
.
ZERO
)
==
-
1
?
BigDecimal
.
ZERO
:
r
)
:
r
;
return
isZero
?
(
r
.
compareTo
(
BigDecimal
.
ZERO
)
==
-
1
?
BigDecimal
.
ZERO
:
r
)
:
r
;
}
}
/**
* BigDecimal的减法运算,允许返回负数值
* @author : Lingma
* 2026年1月26日
* @param b1 被减数
* @param bn 需要减的减数数组
* @return 返回实际减法结果,如果结果为负数也会返回
*/
public
static
BigDecimal
subtractAllowNegative
(
BigDecimal
b1
,
BigDecimal
...
bn
)
{
if
(
null
==
b1
)
{
b1
=
BigDecimal
.
ZERO
;
}
BigDecimal
r
=
b1
;
if
(
null
!=
bn
)
{
for
(
BigDecimal
b
:
bn
)
{
r
=
r
.
subtract
((
null
==
b
?
BigDecimal
.
ZERO
:
b
));
}
}
return
r
;
}
/**
/**
* 整型的减法运算,小于0时返回0
* 整型的减法运算,小于0时返回0
* @author : shijing
* @author : shijing
...
...
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/util/LocalDateUtil.java
View file @
c8cc065d
...
@@ -356,6 +356,50 @@ public class LocalDateUtil {
...
@@ -356,6 +356,50 @@ public class LocalDateUtil {
}
}
return
dif
;
return
dif
;
}
}
/**
* 计算两个日期之间的月数(Excel DATEDIF逻辑)
* @param startDateStr 开始日期,格式:yyyy/MM/dd
* @param endDateStr 结束日期,格式:yyyy/MM/dd
* @return 月数(整月数 + 1)
*/
public
static
int
calculateMonths
(
String
startDateStr
,
String
endDateStr
)
{
// 定义日期格式
DateTimeFormatter
formatter
=
DateTimeFormatter
.
ofPattern
(
"yyyy-MM-dd"
);
// 解析日期
LocalDate
startDate
=
LocalDate
.
parse
(
startDateStr
,
formatter
);
LocalDate
endDate
=
LocalDate
.
parse
(
endDateStr
,
formatter
);
// 计算整月数(Excel DATEDIF的"m"参数逻辑)
int
monthsBetween
=
calculateFullMonths
(
startDate
,
endDate
);
// 加1(根据Excel公式要求)
return
monthsBetween
+
1
;
}
/**
* 计算两个日期之间的整月数(模仿Excel DATEDIF的"m"参数)
*/
private
static
int
calculateFullMonths
(
LocalDate
startDate
,
LocalDate
endDate
)
{
// 如果开始日期晚于结束日期,返回0
if
(
startDate
.
isAfter
(
endDate
))
{
return
0
;
}
// 计算年份和月份的差值
int
years
=
endDate
.
getYear
()
-
startDate
.
getYear
();
int
months
=
endDate
.
getMonthValue
()
-
startDate
.
getMonthValue
();
int
totalMonths
=
years
*
12
+
months
;
// 如果结束日的日份小于开始日的日份,减1个月
// 这是Excel DATEDIF的规则:不足整月的不计入
if
(
endDate
.
getDayOfMonth
()
<
startDate
.
getDayOfMonth
())
{
totalMonths
--;
}
return
totalMonths
;
}
/**
/**
* 判断两个时间段是否有交集
* 判断两个时间段是否有交集
*
*
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/mapper/ekp/EkpSettleMapper.java
View file @
c8cc065d
...
@@ -89,4 +89,8 @@ public interface EkpSettleMapper {
...
@@ -89,4 +89,8 @@ public interface EkpSettleMapper {
void
deleteEkpInsuranceDetailAsso
(
@Param
(
"id"
)
String
id
);
void
deleteEkpInsuranceDetailAsso
(
@Param
(
"id"
)
String
id
);
void
callBackBalance
(
@Param
(
"id"
)
String
id
);
void
callBackBalance
(
@Param
(
"id"
)
String
id
);
void
deleteEkpManagerInfo
(
@Param
(
"id"
)
String
id
);
void
deleteEkpEkpRiskInfo
(
@Param
(
"id"
)
String
id
);
}
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/ekp/EkpSettleService.java
View file @
c8cc065d
...
@@ -77,6 +77,10 @@ public interface EkpSettleService extends IService<TInsuranceTypeRate> {
...
@@ -77,6 +77,10 @@ public interface EkpSettleService extends IService<TInsuranceTypeRate> {
void
deleteEkpInsuranceDetail
(
String
id
);
void
deleteEkpInsuranceDetail
(
String
id
);
void
deleteEkpManagerInfo
(
String
id
);
void
deleteEkpEkpRiskInfo
(
String
id
);
List
<
EkpSettleStatusVo
>
getBalanceByInsuranceId
(
String
id
);
List
<
EkpSettleStatusVo
>
getBalanceByInsuranceId
(
String
id
);
void
deleteEkpInsuranceDetailAsso
(
String
id
);
void
deleteEkpInsuranceDetailAsso
(
String
id
);
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/ekp/impl/EkpSettleServiceImpl.java
View file @
c8cc065d
...
@@ -136,9 +136,22 @@ public class EkpSettleServiceImpl implements EkpSettleService {
...
@@ -136,9 +136,22 @@ public class EkpSettleServiceImpl implements EkpSettleService {
@Override
@Override
public
void
deleteEkpInsuranceDetail
(
String
id
)
{
public
void
deleteEkpInsuranceDetail
(
String
id
)
{
//删除商险明细数据
ekpSettleMapper
.
deleteEkpInsuranceDetail
(
id
);
ekpSettleMapper
.
deleteEkpInsuranceDetail
(
id
);
}
}
@Override
public
void
deleteEkpManagerInfo
(
String
id
)
{
//删除管理费明细数据
ekpSettleMapper
.
deleteEkpManagerInfo
(
id
);
}
@Override
public
void
deleteEkpEkpRiskInfo
(
String
id
)
{
//删除风险金明细数据
ekpSettleMapper
.
deleteEkpEkpRiskInfo
(
id
);
}
@Override
@Override
public
List
<
EkpSettleStatusVo
>
getBalanceByInsuranceId
(
String
id
)
{
public
List
<
EkpSettleStatusVo
>
getBalanceByInsuranceId
(
String
id
)
{
return
ekpSettleMapper
.
getBalanceByInsuranceId
(
id
);
return
ekpSettleMapper
.
getBalanceByInsuranceId
(
id
);
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
c8cc065d
...
@@ -516,7 +516,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -516,7 +516,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
private
void
initJfcdInfo
(
Date
preDispatchDate
,
TInsuranceDetail
detail
,
List
<
TInsuranceSettle
>
settleList
)
{
private
void
initJfcdInfo
(
Date
preDispatchDate
,
TInsuranceDetail
detail
,
List
<
TInsuranceSettle
>
settleList
)
{
//购买周期
//购买周期
String
purchaseCycle
=
"0"
;
long
purchaseCycle
=
0
;
LocalDate
buyStartDate
;
LocalDate
buyStartDate
;
if
(
CommonConstants
.
ZERO_STRING
.
equals
(
detail
.
getIsJfcd
())){
if
(
CommonConstants
.
ZERO_STRING
.
equals
(
detail
.
getIsJfcd
())){
//计算预计办理日期:若派单当日为工作日3点20之前,则预计办理日期为派单日期,若为3点20之后或派单日为非工作日,则预计办理日期为派单日后最近的一个工作日
//计算预计办理日期:若派单当日为工作日3点20之前,则预计办理日期为派单日期,若为3点20之后或派单日为非工作日,则预计办理日期为派单日后最近的一个工作日
...
@@ -527,10 +527,12 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -527,10 +527,12 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
}
else
{
}
else
{
buyStartDate
=
detail
.
getPreHandleTime
().
plusDays
(
1
);
buyStartDate
=
detail
.
getPreHandleTime
().
plusDays
(
1
);
}
}
if
(
null
!=
detail
.
getPolicyEnd
()
&&
null
!=
buyStartDate
){
purchaseCycle
=
LocalDateUtil
.
betweenMonth
(
buyStartDate
.
toString
(),
detail
.
getPolicyEnd
().
toString
());
}
//计算购买周期:购买周期=保单结束日期-参保开始日期+1(天数);购买周期=保单结束日期-参保开始日期+1(天数)推算出月数;
//计算购买周期:购买周期=保单结束日期-参保开始日期+1(天数);购买周期=保单结束日期-参保开始日期+1(天数)推算出月数;
//按天计费方式
//按天计费方式
if
(
null
!=
detail
.
getBillingType
()
&&
CommonConstants
.
ZERO_INT
==
detail
.
getBillingType
().
intValue
()){
if
(
null
!=
detail
.
getBillingType
()
&&
CommonConstants
.
ZERO_INT
==
detail
.
getBillingType
().
intValue
()){
purchaseCycle
=
String
.
valueOf
(
LocalDateUtil
.
betweenDay
(
buyStartDate
.
toString
(),
detail
.
getPolicyEnd
().
toString
())+
1
);
//计算预计保费:根据计费方式、购买标准、购买天数/月数等计算:
//计算预计保费:根据计费方式、购买标准、购买天数/月数等计算:
//“计费方式”为“按天”的,预估保费=购买周期天数/365*购买标准+5元;
//“计费方式”为“按天”的,预估保费=购买周期天数/365*购买标准+5元;
//“计费方式”为“按月”的,预估保费=购买周期月数对应的费率*购买标准+5元
//“计费方式”为“按月”的,预估保费=购买周期月数对应的费率*购买标准+5元
...
@@ -541,15 +543,14 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -541,15 +543,14 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
.
add
(
new
BigDecimal
(
"5.00"
)));
.
add
(
new
BigDecimal
(
"5.00"
)));
//按月计费方式
//按月计费方式
}
else
if
(
null
!=
detail
.
getBillingType
()
&&
CommonConstants
.
ONE_INT
==
detail
.
getBillingType
().
intValue
()){
}
else
if
(
null
!=
detail
.
getBillingType
()
&&
CommonConstants
.
ONE_INT
==
detail
.
getBillingType
().
intValue
()){
purchaseCycle
=
String
.
valueOf
(
LocalDateUtil
.
betweenMonthTwo
(
buyStartDate
.
toString
(),
detail
.
getPolicyEnd
().
toString
())+
1
);
detail
.
setEstimatePremium
(
new
BigDecimal
(
detail
.
getBuyStandard
())
detail
.
setEstimatePremium
(
new
BigDecimal
(
detail
.
getBuyStandard
())
.
multiply
(
new
BigDecimal
(
purchaseCycle
))
.
multiply
(
new
BigDecimal
(
purchaseCycle
))
.
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"
)));
}
}
long
day
=
LocalDateUtil
.
betweenDay
(
buyStartDate
.
toString
().
toString
(),
detail
.
getPolicyEnd
().
toString
());
//购买周期
//购买周期
detail
.
setPurchaseCycle
(
purchaseCycle
);
detail
.
setPurchaseCycle
(
purchaseCycle
+
"个月|"
+
day
+
"天"
);
//预估缴费状态 0待缴费、1已缴费
//预估缴费状态 0待缴费、1已缴费
detail
.
setPaymentStatus
(
CommonConstants
.
ZERO_STRING
);
detail
.
setPaymentStatus
(
CommonConstants
.
ZERO_STRING
);
detail
.
setBuyHandleStatus
(
CommonConstants
.
SIX_INT
);
detail
.
setBuyHandleStatus
(
CommonConstants
.
SIX_INT
);
...
@@ -1747,6 +1748,8 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -1747,6 +1748,8 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
detail
.
setPolicyEffect
(
null
);
detail
.
setPolicyEffect
(
null
);
detail
.
setIsEffect
(
null
);
detail
.
setIsEffect
(
null
);
detail
.
setIsOverdue
(
null
);
detail
.
setIsOverdue
(
null
);
detail
.
setPaymentTime
(
CommonConstants
.
EMPTY_STRING
);
detail
.
setPaymentStatus
(
CommonConstants
.
ZERO_STRING
);
}
}
detail
.
setUpdateBy
(
user
.
getId
());
detail
.
setUpdateBy
(
user
.
getId
());
detail
.
setUpdateTime
(
LocalDateTime
.
now
());
detail
.
setUpdateTime
(
LocalDateTime
.
now
());
...
@@ -2490,7 +2493,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -2490,7 +2493,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
if
(
StringUtils
.
isNotBlank
(
success
.
getActualPremium
())){
if
(
StringUtils
.
isNotBlank
(
success
.
getActualPremium
())){
bigDecimalAct
=
new
BigDecimal
(
success
.
getActualPremium
());
bigDecimalAct
=
new
BigDecimal
(
success
.
getActualPremium
());
//如果当前保单为合并结算
//如果当前保单为合并结算
if
(
detail
.
getSettleType
()
==
CommonConstants
.
ZERO_INT
&&
if
(
(
detail
.
getSettleType
()
==
CommonConstants
.
ZERO_INT
||
CommonConstants
.
ZERO_STRING
.
equals
(
detail
.
getIsJfcd
())
)
&&
StringUtils
.
isNotBlank
(
detail
.
getDefaultSettleId
()))
{
StringUtils
.
isNotBlank
(
detail
.
getDefaultSettleId
()))
{
settle
=
tInsuranceSettleService
.
getById
(
detail
.
getDefaultSettleId
());
settle
=
tInsuranceSettleService
.
getById
(
detail
.
getDefaultSettleId
());
if
(
Optional
.
ofNullable
(
settle
).
isPresent
())
{
if
(
Optional
.
ofNullable
(
settle
).
isPresent
())
{
...
@@ -3397,6 +3400,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -3397,6 +3400,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
.
eq
(
TInsuranceTypeRate:
:
getDeleteFlag
,
CommonConstants
.
ZERO_INT
)
.
eq
(
TInsuranceTypeRate:
:
getDeleteFlag
,
CommonConstants
.
ZERO_INT
)
.
last
(
CommonConstants
.
LAST_ONE_SQL
)
.
last
(
CommonConstants
.
LAST_ONE_SQL
)
);
);
param
.
setPurchaseCycle
(
month
+
CommonConstants
.
EMPTY_STRING
);
if
(!
Optional
.
ofNullable
(
typeRate
).
isPresent
())
{
if
(!
Optional
.
ofNullable
(
typeRate
).
isPresent
())
{
param
.
setErrorMessage
(
InsurancesConstants
.
INSURANCE_TYPE_RATE_NOT_EXIST
);
param
.
setErrorMessage
(
InsurancesConstants
.
INSURANCE_TYPE_RATE_NOT_EXIST
);
listResult
.
add
(
param
);
listResult
.
add
(
param
);
...
@@ -4006,6 +4010,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -4006,6 +4010,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
.
eq
(
TInsuranceTypeRate:
:
getDeleteFlag
,
CommonConstants
.
ZERO_INT
)
.
eq
(
TInsuranceTypeRate:
:
getDeleteFlag
,
CommonConstants
.
ZERO_INT
)
.
last
(
CommonConstants
.
LAST_ONE_SQL
)
.
last
(
CommonConstants
.
LAST_ONE_SQL
)
);
);
param
.
setPurchaseCycle
(
month
+
CommonConstants
.
EMPTY_STRING
);
if
(!
Optional
.
ofNullable
(
typeRate
).
isPresent
()){
if
(!
Optional
.
ofNullable
(
typeRate
).
isPresent
()){
param
.
setErrorMessage
(
InsurancesConstants
.
INSURANCE_TYPE_RATE_NOT_EXIST
);
param
.
setErrorMessage
(
InsurancesConstants
.
INSURANCE_TYPE_RATE_NOT_EXIST
);
listResult
.
add
(
param
);
listResult
.
add
(
param
);
...
@@ -9726,6 +9731,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
...
@@ -9726,6 +9731,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
BigDecimal
sumMoney
=
BigDecimal
.
ZERO
;
BigDecimal
sumMoney
=
BigDecimal
.
ZERO
;
for
(
TIncomeDetail
income
:
incomeDetailList
)
{
for
(
TIncomeDetail
income
:
incomeDetailList
)
{
socialDaprUtils
.
deleteById
(
income
);
socialDaprUtils
.
deleteById
(
income
);
//删除管理费
ekpSettleService
.
deleteEkpManagerInfo
(
income
.
getId
());
//删除风险金
ekpSettleService
.
deleteEkpEkpRiskInfo
(
income
.
getId
());
}
}
}
}
//未结算更新自动化测的状态为待派单 temployeeinsurancepre
//未结算更新自动化测的状态为待派单 temployeeinsurancepre
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/util/DoJointInsuranceTask.java
View file @
c8cc065d
...
@@ -578,8 +578,9 @@ public class DoJointInsuranceTask {
...
@@ -578,8 +578,9 @@ public class DoJointInsuranceTask {
public
void
pushEstime
(
List
<
TInsuranceDetail
>
successList
)
{
public
void
pushEstime
(
List
<
TInsuranceDetail
>
successList
)
{
//根据结算类型是合并结算,推送预估保费到ekp(上面已经算好,这里直接判断有预估保费的就推送)
//根据结算类型是合并结算,推送预估保费到ekp(上面已经算好,这里直接判断有预估保费的就推送)
for
(
TInsuranceDetail
tInsuranceDetail
:
successList
)
{
for
(
TInsuranceDetail
tInsuranceDetail
:
successList
)
{
//如果是合并计算则推送至EKP
//如果是合并计算或见费出单则推送至EKP
if
(
CommonConstants
.
ZERO_INT
==
tInsuranceDetail
.
getSettleType
())
{
if
(
CommonConstants
.
ZERO_INT
==
tInsuranceDetail
.
getSettleType
()
||
CommonConstants
.
ZERO_STRING
.
equals
(
tInsuranceDetail
.
getIsJfcd
()))
{
//存储成功后发送给EKP
//存储成功后发送给EKP
String
s
=
pushEstimate
(
tInsuranceDetail
,
CommonConstants
.
ONE_INT
);
String
s
=
pushEstimate
(
tInsuranceDetail
,
CommonConstants
.
ONE_INT
);
if
(
StringUtils
.
isNotBlank
(
s
))
{
if
(
StringUtils
.
isNotBlank
(
s
))
{
...
@@ -669,6 +670,10 @@ public class DoJointInsuranceTask {
...
@@ -669,6 +670,10 @@ public class DoJointInsuranceTask {
ys
=
null
==
param
.
getEstimatePremium
()?
0.00
:
param
.
getEstimatePremium
().
doubleValue
();
ys
=
null
==
param
.
getEstimatePremium
()?
0.00
:
param
.
getEstimatePremium
().
doubleValue
();
//应支=0
//应支=0
pushParam
.
setFd_3adfe6e3911ffe
(
0.00
);
pushParam
.
setFd_3adfe6e3911ffe
(
0.00
);
pushParam
.
setFd_3adfe6af71a1cc
(
"预估"
);
//见费出单 是否全部结算 都是 是
pushParam
.
setFd_3b13b2ecc164aa
(
"是"
);
}
}
if
(
InsurancesConstants
.
ACTUAL_SETTLE_BILL
.
equals
(
param
.
getSettleType
())){
if
(
InsurancesConstants
.
ACTUAL_SETTLE_BILL
.
equals
(
param
.
getSettleType
())){
ys
=
0L
;
ys
=
0L
;
...
@@ -676,16 +681,18 @@ public class DoJointInsuranceTask {
...
@@ -676,16 +681,18 @@ public class DoJointInsuranceTask {
//差额
//差额
if
(
InsurancesConstants
.
BALANCE_SETTLE_BILL
.
equals
(
param
.
getSettleType
())){
if
(
InsurancesConstants
.
BALANCE_SETTLE_BILL
.
equals
(
param
.
getSettleType
())){
//应收=实缴的应支-预估的应收
//应收=实缴的应支-预估的应收
ys
=
BigDecimalUtils
.
s
afeSubtract
(
param
.
getActualPremium
(),
param
.
getEstimatePremium
()).
doubleValue
();
ys
=
BigDecimalUtils
.
s
ubtractAllowNegative
(
param
.
getActualPremium
(),
param
.
getEstimatePremium
()).
doubleValue
();
//应支=0
//应支=0
pushParam
.
setFd_3adfe6e3911ffe
(
0.00
);
pushParam
.
setFd_3adfe6e3911ffe
(
0.00
);
//是否全部结算
//是否全部结算
pushParam
.
setFd_3b13b2ecc164aa
(
"是"
);
pushParam
.
setFd_3b13b2ecc164aa
(
"是"
);
//实际保费设置为0.0
//实际保费设置为0.0
pushParam
.
setFd_3adfe6610c0d2c
(
0.00
);
pushParam
.
setFd_3adfe6610c0d2c
(
null
==
param
.
getActualPremium
()?
0.00
:
param
.
getActualPremium
().
doubleValue
());
//见费出单 是否全部结算 都是 是
pushParam
.
setFd_3b13b2ecc164aa
(
"是"
);
}
}
}
}
}
}
/*if (!"是".equals(deptInfoVo.getIsBpo())) {
/*if (!"是".equals(deptInfoVo.getIsBpo())) {
...
...
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/ekp/EkpSettleMapper.xml
View file @
c8cc065d
...
@@ -113,6 +113,13 @@
...
@@ -113,6 +113,13 @@
<delete
id=
"callBackBalance"
>
<delete
id=
"callBackBalance"
>
delete from ekp_insurances_info where fd_3b0a5743acab7e like CONCAT(#{id},'%') and fd_jfcd='是' and fd_3adfe6af71a1cc = '差额'
delete from ekp_insurances_info where fd_3b0a5743acab7e like CONCAT(#{id},'%') and fd_jfcd='是' and fd_3adfe6af71a1cc = '差额'
</delete>
</delete>
<delete
id=
"deleteEkpManagerInfo"
>
delete from ekp_manager_info where fd_3b13dc864a3052 = #{id}
</delete>
<delete
id=
"deleteEkpEkpRiskInfo"
>
delete from ekp_risk_info where fd_3b13db120a8224 = #{id}
</delete>
<select
id=
"getDeptSettle"
resultMap=
"BaseDeptResultMap"
>
<select
id=
"getDeptSettle"
resultMap=
"BaseDeptResultMap"
>
select
select
<include
refid=
"Base_Column_Dept"
></include>
<include
refid=
"Base_Column_Dept"
></include>
...
...
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