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
3a47b15b
Commit
3a47b15b
authored
Dec 25, 2025
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户表,fna表单表字段修改2
parent
6419a025
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
yd-csf-api/src/main/java/com/yd/csf/api/controller/ApiPolicyFollowController.java
+2
-2
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
+1
-1
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FnaServiceImpl.java
+1
-1
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/controller/ApiPolicyFollowController.java
View file @
3a47b15b
...
@@ -236,11 +236,11 @@ public class ApiPolicyFollowController {
...
@@ -236,11 +236,11 @@ public class ApiPolicyFollowController {
.
collect
(
Collectors
.
toSet
());
.
collect
(
Collectors
.
toSet
());
// 根据保单持有人名称查询用户业务ID
// 根据保单持有人名称查询用户业务ID
List
<
Customer
>
customerList
=
customerService
.
lambdaQuery
()
List
<
Customer
>
customerList
=
customerService
.
lambdaQuery
()
.
in
(
Customer:
:
getName
,
customerNames
)
.
in
(
Customer:
:
getName
PyEn
,
customerNames
)
.
list
();
.
list
();
// 构建保单持有人名称到用户业务ID的映射
// 构建保单持有人名称到用户业务ID的映射
Map
<
String
,
String
>
customerNameToBizIdMap
=
customerList
.
stream
()
Map
<
String
,
String
>
customerNameToBizIdMap
=
customerList
.
stream
()
.
collect
(
Collectors
.
toMap
(
Customer:
:
getName
,
Customer:
:
getCustomerBizId
,
(
oldValue
,
newValue
)
->
oldValue
));
.
collect
(
Collectors
.
toMap
(
Customer:
:
getName
PyEn
,
Customer:
:
getCustomerBizId
,
(
oldValue
,
newValue
)
->
oldValue
));
for
(
PolicyExcelDTO
policyExcelDTO
:
list
)
{
for
(
PolicyExcelDTO
policyExcelDTO
:
list
)
{
String
policyNo
=
policyExcelDTO
.
getPolicyNo
();
String
policyNo
=
policyExcelDTO
.
getPolicyNo
();
...
...
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
View file @
3a47b15b
...
@@ -597,7 +597,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -597,7 +597,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
follow
.
setCustomerBizId
(
appointment
.
getCustomerBizId
());
follow
.
setCustomerBizId
(
appointment
.
getCustomerBizId
());
if
(
customer
!=
null
)
{
if
(
customer
!=
null
)
{
//客户名称
//客户名称
follow
.
setCustomerName
(
customer
.
get
FirstNamePinyi
n
());
follow
.
setCustomerName
(
customer
.
get
NamePyE
n
());
}
}
//待跟进
//待跟进
follow
.
setStatus
(
PolicyFollowStatusEnum
.
FOLLOW_UP
.
getItemValue
());
follow
.
setStatus
(
PolicyFollowStatusEnum
.
FOLLOW_UP
.
getItemValue
());
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/FnaServiceImpl.java
View file @
3a47b15b
...
@@ -289,7 +289,7 @@ public class FnaServiceImpl extends ServiceImpl<FnaMapper, Fna> implements FnaSe
...
@@ -289,7 +289,7 @@ public class FnaServiceImpl extends ServiceImpl<FnaMapper, Fna> implements FnaSe
if
(
StringUtils
.
isNotBlank
(
fnaUpdateRequest
.
getCustomerBizId
()))
{
if
(
StringUtils
.
isNotBlank
(
fnaUpdateRequest
.
getCustomerBizId
()))
{
Customer
customer
=
customerService
.
getByCustomerBizId
(
fnaUpdateRequest
.
getCustomerBizId
());
Customer
customer
=
customerService
.
getByCustomerBizId
(
fnaUpdateRequest
.
getCustomerBizId
());
fna
.
setCustomerName
(
customer
.
get
FirstNamePinyi
n
());
fna
.
setCustomerName
(
customer
.
get
NamePyE
n
());
}
}
// 设置 状态
// 设置 状态
String
customerBizId
=
fnaUpdateRequest
.
getCustomerBizId
();
String
customerBizId
=
fnaUpdateRequest
.
getCustomerBizId
();
...
...
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