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
d79ca33c
Commit
d79ca33c
authored
Nov 06, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.16-优化
parent
26b5b289
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
TSocialFriendPushServiceImpl.java
...ifu/social/service/impl/TSocialFriendPushServiceImpl.java
+10
-2
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TSocialFriendPushServiceImpl.java
View file @
d79ca33c
...
@@ -102,6 +102,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
...
@@ -102,6 +102,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
@Autowired
@Autowired
private
TDispatchInfoMapper
dispatchInfoMapper
;
private
TDispatchInfoMapper
dispatchInfoMapper
;
private
final
static
String
AND_STR
=
"&"
;
/**
/**
* @Description: 推送到税友
* @Description: 推送到税友
* @Author: hgw
* @Author: hgw
...
@@ -1532,7 +1533,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
...
@@ -1532,7 +1533,7 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
}
}
if
(
key
.
contains
(
CommonConstants
.
QIAN_MING
))
{
if
(
key
.
contains
(
CommonConstants
.
QIAN_MING
))
{
// 签名样式
// 签名样式
qianMingArr
=
key
.
split
(
"&"
);
qianMingArr
=
key
.
split
(
AND_STR
);
if
(
qianMingArr
.
length
>
1
)
{
if
(
qianMingArr
.
length
>
1
)
{
key
=
qianMingArr
[
1
];
key
=
qianMingArr
[
1
];
}
else
{
}
else
{
...
@@ -1542,11 +1543,18 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
...
@@ -1542,11 +1543,18 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
setQianMingStyle
(
cell
,
newValue
);
setQianMingStyle
(
cell
,
newValue
);
}
else
if
(
key
.
contains
(
CommonConstants
.
GU_DING
))
{
}
else
if
(
key
.
contains
(
CommonConstants
.
GU_DING
))
{
// 固定文字
// 固定文字
qianMingArr
=
key
.
split
(
"&"
);
qianMingArr
=
key
.
split
(
AND_STR
);
if
(
qianMingArr
.
length
>
1
)
{
if
(
qianMingArr
.
length
>
1
)
{
key
=
qianMingArr
[
1
];
key
=
qianMingArr
[
1
];
cell
.
setCellValue
(
key
);
cell
.
setCellValue
(
key
);
}
}
}
else
if
(
key
.
contains
(
AND_STR
))
{
qianMingArr
=
key
.
split
(
AND_STR
);
newValue
=
""
;
for
(
String
s
:
qianMingArr
)
{
newValue
+=
getFieldValue
(
vo
,
s
);
}
cell
.
setCellValue
(
newValue
);
}
else
{
}
else
{
newValue
=
getFieldValue
(
vo
,
key
);
newValue
=
getFieldValue
(
vo
,
key
);
cell
.
setCellValue
(
newValue
);
cell
.
setCellValue
(
newValue
);
...
...
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