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
863085e1
Commit
863085e1
authored
May 15, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出账检核-增加币种61
parent
bef5353a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
yd-csf-feign/src/main/java/com/yd/csf/feign/response/expectedfortune/ApiExpectedFortunePageResponse.java
+0
-6
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/ExpectedFortuneServiceImpl.java
+5
-2
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/response/expectedfortune/ApiExpectedFortunePageResponse.java
View file @
863085e1
...
@@ -42,12 +42,6 @@ public class ApiExpectedFortunePageResponse {
...
@@ -42,12 +42,6 @@ public class ApiExpectedFortunePageResponse {
private
String
payableNo
;
private
String
payableNo
;
/**
/**
* 关联业务编号
*/
@Schema
(
description
=
"关联业务编号"
)
private
String
associatedPayableNo
;
/**
* 保单号
* 保单号
*/
*/
@Schema
(
description
=
"policy no"
)
@Schema
(
description
=
"policy no"
)
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/ExpectedFortuneServiceImpl.java
View file @
863085e1
...
@@ -158,8 +158,11 @@ public class ExpectedFortuneServiceImpl extends ServiceImpl<ExpectedFortuneMappe
...
@@ -158,8 +158,11 @@ public class ExpectedFortuneServiceImpl extends ServiceImpl<ExpectedFortuneMappe
// 查找对应的实际发佣
// 查找对应的实际发佣
List
<
ApiExpectedFortunePageResponse
>
matchedList
=
actualMap
.
get
(
expected
.
getExpectedFortuneBizId
());
List
<
ApiExpectedFortunePageResponse
>
matchedList
=
actualMap
.
get
(
expected
.
getExpectedFortuneBizId
());
if
(
CollUtil
.
isNotEmpty
(
matchedList
))
{
if
(
CollUtil
.
isNotEmpty
(
matchedList
))
{
// 设置实际发佣的关联业务编号
// 设置实际发佣的已出账比例、未出账比例 为 expected 的已出账比例、未出账比例
matchedList
.
forEach
(
actual
->
actual
.
setAssociatedPayableNo
(
expected
.
getPayableNo
()));
matchedList
.
forEach
(
actual
->
{
actual
.
setPaidRatio
(
expected
.
getPaidRatio
());
actual
.
setUnpaidRatio
(
expected
.
getUnpaidRatio
());
});
sortedList
.
addAll
(
matchedList
);
sortedList
.
addAll
(
matchedList
);
matchedActualPayableNos
.
add
(
expected
.
getExpectedFortuneBizId
());
matchedActualPayableNos
.
add
(
expected
.
getExpectedFortuneBizId
());
...
...
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