Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
0ad54c4c
Commit
0ad54c4c
authored
May 12, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
650ae572
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionExpectedServiceImpl.java
+4
-0
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionServiceImpl.java
+3
-3
yd-csf-service/src/main/java/com/yd/csf/service/vo/CommissionExpectedNewVO.java
+12
-0
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionExpectedServiceImpl.java
View file @
0ad54c4c
...
...
@@ -255,6 +255,8 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
vo
.
setCommissionDate
(
null
);
//本次入账比例
vo
.
setRevenueRatio
(
null
);
vo
.
setRealRemark
(
expected
.
getRemark
());
vo
.
setCommissionExpectedBizId
(
expected
.
getCommissionExpectedBizId
());
// 填充保单信息
Policy
policy
=
policyMap
.
get
(
expected
.
getPolicyNo
());
...
...
@@ -358,6 +360,8 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
vo
.
setRealUpdaterName
(
commission
.
getUpdaterName
());
vo
.
setRealRemark
(
commission
.
getRemark
());
vo
.
setCommissionDate
(
commission
.
getCommissionDate
());
vo
.
setRealRemark
(
commission
.
getRemark
());
vo
.
setCommissionBizId
(
commission
.
getCommissionBizId
());
// 覆盖公共业务字段
// vo.setAmount(commission.getAmount());
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionServiceImpl.java
View file @
0ad54c4c
...
...
@@ -984,9 +984,9 @@ public class CommissionServiceImpl extends ServiceImpl<CommissionMapper, Commiss
if
(
ObjectUtils
.
isEmpty
(
request
.
getAmount
()))
{
throw
new
BusinessException
(
ResultCode
.
PARAMS_ERROR
.
getCode
(),
"入账金额不能为空"
);
}
if
(
ObjectUtils
.
isEmpty
(
request
.
getExchangeRate
()))
{
throw
new
BusinessException
(
ResultCode
.
PARAMS_ERROR
.
getCode
(),
"结算汇率不能为空"
);
}
//
if (ObjectUtils.isEmpty(request.getExchangeRate())) {
//
throw new BusinessException(ResultCode.PARAMS_ERROR.getCode(), "结算汇率不能为空");
//
}
if
(
"R"
.
equals
(
request
.
getCommissionBizType
()))
{
// 校验保单号是否存在
if
(
ObjectUtils
.
isEmpty
(
request
.
getExchangeRate
()))
{
...
...
yd-csf-service/src/main/java/com/yd/csf/service/vo/CommissionExpectedNewVO.java
View file @
0ad54c4c
...
...
@@ -16,6 +16,18 @@ import java.util.List;
@Data
@Schema
(
description
=
"预计来佣响应"
)
public
class
CommissionExpectedNewVO
implements
Serializable
{
/**
* 预计来佣业务id
*/
private
String
commissionExpectedBizId
;
/**
* 保单来佣业务id
*/
private
String
commissionBizId
;
//===========公共字段=============
/**
* 是否实收:1-预计(预计来佣记录) 2-实收(保单来佣表记录)*
...
...
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