Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
order-center-tool-2
Project
Project
Details
Activity
Releases
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
陈文明
order-center-tool-2
Commits
14c952c8
Commit
14c952c8
authored
Jul 18, 2025
by
年畅
🛀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
48e3edb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
TempOrderRoutingServiceImpl.java
...rder/tool/server/service/TempOrderRoutingServiceImpl.java
+3
-2
No files found.
src/main/java/com/zm/order/tool/server/service/TempOrderRoutingServiceImpl.java
View file @
14c952c8
...
...
@@ -2278,14 +2278,15 @@ public class TempOrderRoutingServiceImpl implements InitializingBean {
public
void
handlerEachComment
(
String
orderNo
)
{
OrderIndex
index
=
indexDao
.
selectOne
(
orderNo
);
if
(
index
!=
null
)
{
OrderComment
comment
=
commentDao
.
selectOne
(
index
.
getOrderNo
(),
index
.
getUserId
());
Order
order
=
orderDao
.
selectByOrderNo
(
index
.
getOrderNo
(),
index
.
getUserId
());
OrderComment
comment
=
commentDao
.
selectOne
(
order
.
getOrderNo
(),
order
.
getSellerId
());
if
(
comment
!=
null
)
{
int
db
=
(
int
)
(
comment
.
getSellerId
()
%
32
);
int
tb
=
(
int
)
(
comment
.
getSellerId
()
/
32
%
8
);
executeComment11
(
Lists
.
newArrayList
(
comment
),
db
,
tb
);
}
List
<
OrderItemComment
>
itemCommentList
=
itemCommentDao
.
selectByOrderNoList
(
Lists
.
newArrayList
(
index
.
getOrderNo
()),
index
.
getUs
erId
());
itemCommentDao
.
selectByOrderNoList
(
Lists
.
newArrayList
(
order
.
getOrderNo
()),
order
.
getSell
erId
());
if
(!
CollectionUtils
.
isEmpty
(
itemCommentList
))
{
int
db
=
(
int
)
(
itemCommentList
.
get
(
0
).
getSellerId
()
%
32
);
int
tb
=
(
int
)
(
itemCommentList
.
get
(
0
).
getSellerId
()
/
32
%
8
);
...
...
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