Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
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
pseer
gxpt_ht
Commits
d2ba1ef1
Commit
d2ba1ef1
authored
Apr 24, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改续单判断
parent
4d4d4eb8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
SOrderServiceImpl.java
...ain/java/share/system/service/impl/SOrderServiceImpl.java
+3
-2
No files found.
share-system/src/main/java/share/system/service/impl/SOrderServiceImpl.java
View file @
d2ba1ef1
...
@@ -828,7 +828,8 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
...
@@ -828,7 +828,8 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
if
(
Objects
.
nonNull
(
byId
))
{
if
(
Objects
.
nonNull
(
byId
))
{
if
(
byId
.
getUseStatus
().
equals
(
UserStatusEnum
.
UNUSED
.
getCode
()))
{
if
(
byId
.
getUseStatus
().
equals
(
UserStatusEnum
.
UNUSED
.
getCode
()))
{
if
(
StringUtils
.
isNotEmpty
(
byId
.
getCouponCode
())
&&
ObjectUtil
.
isNotEmpty
(
byId
.
getDealId
())
&&
byId
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
MEITUAN
.
getCode
()))
{
if
(
StringUtils
.
isNotEmpty
(
byId
.
getCouponCode
())
&&
ObjectUtil
.
isNotEmpty
(
byId
.
getDealId
())
&&
byId
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
MEITUAN
.
getCode
()))
{
TuangouReceiptGetConsumedReponseEntity
getconsumed
=
qpService
.
getconsumed
(
byId
.
getCouponCode
(),
stores
.
stream
().
filter
(
store
->
store
.
getId
().
equals
(
byId
.
getStoreId
())).
findFirst
().
get
().
getOpenShopUuid
());
TuangouReceiptGetConsumedReponseEntity
getconsumed
=
qpService
.
getconsumed
(
byId
.
getCouponCode
(),
stores
.
stream
().
filter
(
store
->
store
.
getId
().
equals
(
byId
.
getStoreId
())).
findFirst
().
get
().
getOpenShopUuid
());
if
(
getconsumed
==
null
)
{
if
(
getconsumed
==
null
)
{
throw
new
RuntimeException
(
"优惠券异常,请稍后再试"
);
throw
new
RuntimeException
(
"优惠券异常,请稍后再试"
);
}
}
...
@@ -1070,10 +1071,10 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
...
@@ -1070,10 +1071,10 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
if
(
CollectionUtils
.
isNotEmpty
(
orderList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
orderList
))
{
Optional
<
SOrder
>
lastOrderOp
=
orderList
.
stream
().
max
(
Comparator
.
comparing
(
SOrder:
:
getPreEndDate
));
Optional
<
SOrder
>
lastOrderOp
=
orderList
.
stream
().
max
(
Comparator
.
comparing
(
SOrder:
:
getPreEndDate
));
SOrder
lastOrder
=
lastOrderOp
.
orElse
(
null
);
SOrder
lastOrder
=
lastOrderOp
.
orElse
(
null
);
if
(
Objects
.
nonNull
(
lastOrder
)
&&
Objects
.
nonNull
(
lastOrder
.
getEndDate
())
&&
lastOrder
.
getEndDate
().
compareTo
(
request
.
getPreStartDate
())
<
0
)
{
if
(
lastOrder
.
getConsumerId
().
equals
(
user
.
getId
()))
{
if
(
lastOrder
.
getConsumerId
().
equals
(
user
.
getId
()))
{
return
;
return
;
}
}
if
(
Objects
.
nonNull
(
lastOrder
)&&
Objects
.
nonNull
(
lastOrder
.
getEndDate
())&&
lastOrder
.
getEndDate
().
compareTo
(
request
.
getPreStartDate
())<
0
){
SCleanRecords
sCleanRecords
=
cleanRecordsService
.
lastCleanByRoomId
(
lastOrder
.
getRoomId
());
SCleanRecords
sCleanRecords
=
cleanRecordsService
.
lastCleanByRoomId
(
lastOrder
.
getRoomId
());
if
(
ObjectUtils
.
isEmpty
(
sCleanRecords
))
{
if
(
ObjectUtils
.
isEmpty
(
sCleanRecords
))
{
return
;
return
;
...
...
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