Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
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
order-group-application
order-group
Commits
00ce04a8
Commit
00ce04a8
authored
Aug 16, 2021
by
周晓航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增日志 查看问题
Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent
0a809bd3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
order-application-service/src/main/java/cn/freemud/service/impl/CheckOrder.java
+7
-0
No files found.
order-application-service/src/main/java/cn/freemud/service/impl/CheckOrder.java
View file @
00ce04a8
...
...
@@ -41,6 +41,7 @@ import cn.freemud.service.thirdparty.ShoppingCartClient;
import
cn.freemud.service.thirdparty.StoreBaseApiClient
;
import
cn.freemud.service.thirdparty.StoreClient
;
import
cn.freemud.utils.AppLogUtil
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONArray
;
import
com.alibaba.fastjson.JSONObject
;
import
com.freemud.api.assortment.datamanager.entity.db.AssortmentOpenPlatformIappWxappConfig
;
...
...
@@ -65,6 +66,7 @@ import com.freemud.application.sdk.api.storecenter.response.QueryDeliverDetailRe
import
com.freemud.application.sdk.api.storecenter.response.StoreResponse
;
import
com.freemud.application.sdk.api.storecenter.service.StoreCenterService
;
import
com.freemud.sdk.api.assortment.order.enums.StoreDeliveryMethod
;
import
com.freemud.sdk.api.assortment.order.util.AssortOrderLogUtil
;
import
com.google.common.collect.Lists
;
import
com.google.gson.Gson
;
import
org.apache.commons.collections4.CollectionUtils
;
...
...
@@ -413,6 +415,9 @@ public class CheckOrder {
* @param storeResponseDto
*/
private
void
checkAdvanceOrderExpectTime
(
BusinessInfoDto
queryBusinessInfoNew
,
StoreResponse
.
BizVO
storeResponseDto
,
Date
takeMealDateTime
)
{
AssortOrderLogUtil
.
info
(
"fisherman 校验门店时间数据 01"
,
JSON
.
toJSONString
(
queryBusinessInfoNew
),
JSON
.
toJSONString
(
storeResponseDto
),
JSON
.
toJSONString
(
takeMealDateTime
));
if
(
Objects
.
isNull
(
queryBusinessInfoNew
))
{
return
;
}
...
...
@@ -422,6 +427,7 @@ public class CheckOrder {
}
// fisherman 预计 营业时间范围校验 begin
List
<
String
>
nextDayBusinessTime
=
storeCenterService
.
getNextDayBusinessTime
(
Integer
.
parseInt
(
storeResponseDto
.
getBusinessType
()),
storeResponseDto
.
getBusinessHours
());
AssortOrderLogUtil
.
info
(
"fisherman 校验门店时间数据 02"
,
JSON
.
toJSONString
(
nextDayBusinessTime
));
if
(
CollectionUtils
.
isEmpty
(
nextDayBusinessTime
))
{
throw
new
ServiceException
(
ResponseResult
.
STORE_BUSINESS_HOUR_ERROR
);
}
...
...
@@ -437,6 +443,7 @@ public class CheckOrder {
// 营业结束前校验 结束时间前十分钟可以下单 begin
List
<
String
>
todayBusinessTimes
=
storeCenterService
.
getTodayBusinessTime
(
Integer
.
parseInt
(
storeResponseDto
.
getBusinessType
()),
storeResponseDto
.
getBusinessHoursDay
());
AssortOrderLogUtil
.
info
(
"fisherman 校验门店时间数据 03"
,
JSON
.
toJSONString
(
todayBusinessTimes
));
if
(
CollectionUtils
.
isEmpty
(
todayBusinessTimes
))
{
throw
new
ServiceException
(
ResponseResult
.
STORE_BUSINESS_HOUR_ERROR
);
}
...
...
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