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
ca8501ee
Commit
ca8501ee
authored
Aug 30, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改自动生成优惠卷购买金额开始
parent
0186a3e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
CouponRetryTask.java
...artz/src/main/java/share/quartz/task/CouponRetryTask.java
+17
-2
No files found.
share-quartz/src/main/java/share/quartz/task/CouponRetryTask.java
View file @
ca8501ee
...
...
@@ -76,7 +76,7 @@ public class CouponRetryTask {
List
<
SConsumerCoupon
>
sConsumerCoupons
=
sConsumerCouponService
.
list
(
consumerCouponWrapper
);
if
(
sConsumerCoupons
.
size
()
>
100
)
{
sConsumerCoupons
.
subList
(
0
,
100
);
sConsumerCoupons
=
sConsumerCoupons
.
subList
(
0
,
100
);
}
if
(!
CollectionUtils
.
isEmpty
(
sConsumerCoupons
))
{
List
<
SConsumerCoupon
>
updatedCoupons
=
new
ArrayList
<>();
...
...
@@ -93,7 +93,22 @@ public class CouponRetryTask {
item
.
setCouponPayPrice
(
BigDecimal
.
valueOf
(
getconsumed
.
getDeal_price
()).
subtract
(
BigDecimal
.
valueOf
(
getconsumed
.
getOrder_shoppromo_amount
())));
logger
.
debug
(
"美团优惠卷购买金额为:"
+
item
.
getCouponPayPrice
());
}
else
{
item
.
setUseStatus
(
UserStatusEnum
.
EXPIRED
.
getCode
());
finalList
.
stream
().
forEach
(
store
->
{
TuangouReceiptGetConsumedReponseEntity
newGetconsumed
=
qpService
.
getconsumed
(
item
.
getCouponCode
(),
store
.
getOpenShopUuid
());
System
.
out
.
println
(
"门店:"
+
store
.
getName
()
+
"优惠券码:"
+
item
.
getCouponCode
());
if
(!
ObjectUtils
.
isEmpty
(
getconsumed
))
{
item
.
setStoreId
(
store
.
getId
());
item
.
setCouponPayPrice
(
BigDecimal
.
valueOf
(
newGetconsumed
.
getDeal_price
()).
subtract
(
BigDecimal
.
valueOf
(
newGetconsumed
.
getOrder_shoppromo_amount
())));
logger
.
debug
(
"门店:"
+
store
.
getName
()
+
"优惠券码:"
+
item
.
getCouponCode
());
logger
.
debug
(
"美团优惠卷购买金额为:"
+
item
.
getCouponPayPrice
());
//跳出循环
return
;
}
});
if
(
item
.
getCouponPayPrice
()
==
null
)
{
item
.
setCouponPayPrice
(
BigDecimal
.
ZERO
);
item
.
setUseStatus
(
UserStatusEnum
.
EXPIRED
.
getCode
());
}
}
}
else
if
(
PlatformTypeEnum
.
TIKTOK
.
getCode
().
equals
(
item
.
getPlatformType
()))
{
JSONObject
data
=
tiktokService
.
certificateGet
(
item
.
getEncryptedCode
());
...
...
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