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
7906387f
Commit
7906387f
authored
Jan 23, 2026
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新单跟进v2
parent
9446a37a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
yd-csf-api/src/main/java/com/yd/csf/api/controller/ApiPolicyFollowController.java
+2
-5
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/controller/ApiPolicyFollowController.java
View file @
7906387f
...
@@ -528,6 +528,7 @@ public class ApiPolicyFollowController {
...
@@ -528,6 +528,7 @@ public class ApiPolicyFollowController {
*/
*/
@PostMapping
(
"/change_status"
)
@PostMapping
(
"/change_status"
)
@Operation
(
summary
=
"修改跟进状态"
)
@Operation
(
summary
=
"修改跟进状态"
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
Result
<
Boolean
>
changePolicyFollowStatus
(
@RequestBody
ChangePolicyFollowStatusRequest
changePolicyFollowStatusRequest
,
public
Result
<
Boolean
>
changePolicyFollowStatus
(
@RequestBody
ChangePolicyFollowStatusRequest
changePolicyFollowStatusRequest
,
HttpServletRequest
request
)
{
HttpServletRequest
request
)
{
if
(
changePolicyFollowStatusRequest
==
null
||
StringUtils
.
isBlank
(
changePolicyFollowStatusRequest
.
getPolicyBizId
()))
{
if
(
changePolicyFollowStatusRequest
==
null
||
StringUtils
.
isBlank
(
changePolicyFollowStatusRequest
.
getPolicyBizId
()))
{
...
@@ -727,11 +728,7 @@ public class ApiPolicyFollowController {
...
@@ -727,11 +728,7 @@ public class ApiPolicyFollowController {
generateExpectedFortuneRequest
.
setPolicyNo
(
policyNo
);
generateExpectedFortuneRequest
.
setPolicyNo
(
policyNo
);
log
.
info
(
"生成预计发佣generateSyncWithLogAndRedis——>PolicyNo:{}"
,
policyNo
);
log
.
info
(
"生成预计发佣generateSyncWithLogAndRedis——>PolicyNo:{}"
,
policyNo
);
Result
<
ApiGenerateExpectedFortuneResponse
>
result
=
apiExpectedFortuneService
.
generateSyncWithLogAndRedis
(
generateExpectedFortuneRequest
);
Result
<
ApiGenerateExpectedFortuneResponse
>
result
=
apiExpectedFortuneService
.
generateSyncWithLogAndRedis
(
generateExpectedFortuneRequest
);
if
(
result
==
null
||
result
.
getCode
()
!=
200
)
{
if
(
result
!=
null
&&
result
.
getCode
()
==
200
)
{
log
.
error
(
"新单跟进-同步生成预计出账记录失败:保单号={}, 响应结果={}"
,
policyNo
,
result
);
throw
new
BusinessException
(
"生成预计出账记录失败:保单号="
+
policyNo
+
", 错误信息="
+
result
.
getMsg
());
}
else
{
log
.
info
(
"新单跟进-同步生成预计出账记录成功:保单号={}"
,
policyNo
);
log
.
info
(
"新单跟进-同步生成预计出账记录成功:保单号={}"
,
policyNo
);
}
}
}
}
...
...
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