记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
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
董敬伟
liquidnet-bus-v1
Commits
b6096d65
Commit
b6096d65
authored
Jan 11, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单相关 文档
parent
b8d807b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
GoblinStoreOrderController.java
.../goblin/controller/manage/GoblinStoreOrderController.java
+6
-2
DMCheckGoblinOrderTimeImpl.java
...tform/service/impl/goblin/DMCheckGoblinOrderTimeImpl.java
+3
-1
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/controller/manage/GoblinStoreOrderController.java
View file @
b6096d65
...
...
@@ -77,9 +77,11 @@ public class GoblinStoreOrderController {
@ApiOperation
(
value
=
"修改订单价格"
)
@ApiImplicitParams
({
@ApiImplicitParam
(
type
=
"form"
,
required
=
false
,
dataType
=
"String"
,
name
=
"orderId"
,
value
=
"订单id"
),
@ApiImplicitParam
(
type
=
"form"
,
required
=
false
,
dataType
=
"BigDecimal"
,
name
=
"price"
,
value
=
"退款金额"
),
})
@GetMapping
(
value
=
"change/price"
)
public
ResponseDto
<
Boolean
>
changePrice
(
@RequestParam
(
value
=
"orderId"
,
required
=
true
)
@Valid
String
orderId
)
{
public
ResponseDto
<
Boolean
>
changePrice
(
@RequestParam
(
value
=
"orderId"
,
required
=
true
)
@Valid
String
orderId
,
@RequestParam
(
value
=
"orderId"
,
required
=
true
)
@Valid
BigDecimal
price
)
{
return
ResponseDto
.
success
();
}
...
...
@@ -87,10 +89,12 @@ public class GoblinStoreOrderController {
@ApiImplicitParams
({
@ApiImplicitParam
(
type
=
"form"
,
required
=
false
,
dataType
=
"String"
,
name
=
"orderId"
,
value
=
"订单id"
),
@ApiImplicitParam
(
type
=
"form"
,
required
=
false
,
dataType
=
"String"
,
name
=
"orderSkuId"
,
value
=
"orderSkuId"
),
@ApiImplicitParam
(
type
=
"form"
,
required
=
false
,
dataType
=
"BigDecimal"
,
name
=
"price"
,
value
=
"退款金额"
),
})
@GetMapping
(
value
=
"change/skuPrice"
)
public
ResponseDto
<
Boolean
>
changeSkuPrice
(
@RequestParam
(
value
=
"orderId"
,
required
=
true
)
@Valid
String
orderId
,
@RequestParam
(
value
=
"orderSkuId"
,
required
=
true
)
@Valid
String
orderSkuId
)
{
@RequestParam
(
value
=
"orderSkuId"
,
required
=
true
)
@Valid
String
orderSkuId
,
@RequestParam
(
value
=
"orderId"
,
required
=
true
)
@Valid
BigDecimal
price
)
{
return
ResponseDto
.
success
();
}
...
...
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/java/com/liquidnet/service/platform/service/impl/goblin/DMCheckGoblinOrderTimeImpl.java
View file @
b6096d65
...
...
@@ -35,6 +35,8 @@ import org.springframework.stereotype.Service;
import
java.time.LocalDateTime
;
import
java.util.*
;
import
static
com
.
liquidnet
.
commons
.
lang
.
util
.
DateUtil
.
DTF_YMD_HMS
;
/**
* <p>
...
...
@@ -63,7 +65,7 @@ public class DMCheckGoblinOrderTimeImpl extends ServiceImpl<GoblinStoreOrderMapp
List
<
String
>
orderIds
=
goblinRedisUtils
.
getUnPayGoblinOrderList
(
i
+
""
);
for
(
String
orderId
:
orderIds
)
{
GoblinStoreOrderVo
orderVo
=
goblinRedisUtils
.
getGoblinOrder
(
orderId
);
LocalDateTime
expireTime
=
orderVo
.
getCreatedAt
(
).
plusMinutes
(
orderVo
.
getPayCountdownMinute
()
+
1
);
LocalDateTime
expireTime
=
LocalDateTime
.
parse
(
orderVo
.
getCreatedAt
(),
DTF_YMD_HMS
).
plusMinutes
(
orderVo
.
getPayCountdownMinute
()
+
1
);
if
(
now
.
isAfter
(
expireTime
)
&&
orderVo
.
getStatus
()
==
GoblinStatusConst
.
Status
.
ORDER_STATUS_0
.
getValue
())
{
//过期
LinkedList
<
String
>
sqls
=
CollectionUtil
.
linkedListString
();
LinkedList
<
Object
[]>
sqlDataOrder
=
CollectionUtil
.
linkedListObjectArr
();
...
...
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