Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
cd08f8b0
Commit
cd08f8b0
authored
Dec 19, 2023
by
songyinghui
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bugfix_20231219_weimo_order' into developer
parents
a0bf0877
e39f7d9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
MallOrderStatusChangeApiServiceImpl.java
...out/impl/content/MallOrderStatusChangeApiServiceImpl.java
+3
-3
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/content/MallOrderStatusChangeApiServiceImpl.java
View file @
cd08f8b0
...
...
@@ -187,8 +187,8 @@ public class MallOrderStatusChangeApiServiceImpl implements MallOrderStatusChang
if
(
memberOrderBo
.
getTimes
()
==
null
)
{
memberOrderBo
.
setTimes
(
1
);
}
if
(
memberOrderBo
.
getTimes
()
>
60
)
{
log
.
info
(
"订单消费次数已经超出
60
次, 不再处理 {}"
,
params
);
if
(
memberOrderBo
.
getTimes
()
>
5
)
{
log
.
info
(
"订单消费次数已经超出
5
次, 不再处理 {}"
,
params
);
return
ServiceResponse
.
success
();
}
memberOrderBo
.
setTimes
(
memberOrderBo
.
getTimes
()
+
1
);
...
...
@@ -197,7 +197,7 @@ public class MallOrderStatusChangeApiServiceImpl implements MallOrderStatusChang
/**
* @see com.gic.haoban.manage.api.service.content.MallOrderStatusChangeApiService#dealWeimoOrder(String)
*/
GICMQClientUtil
.
getClientInstance
().
sendMessage
(
"dealWeimoOrderForInteractRecord"
,
JSON
.
toJSONString
(
memberOrderBo
),
6
0
);
GICMQClientUtil
.
getClientInstance
().
sendMessage
(
"dealWeimoOrderForInteractRecord"
,
JSON
.
toJSONString
(
memberOrderBo
),
12
0
);
}
catch
(
Exception
ex
)
{
log
.
info
(
"处理会员订单异常 "
,
ex
);
}
...
...
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