记得上下班打卡 | 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
c1b35818
Commit
c1b35818
authored
Apr 11, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
预下单状态判断和IOS金额,总金额前端自己算
parent
9971166d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
+5
-10
GoblinPayOrderDetailsVo.java
...uidnet/service/goblin/dto/vo/GoblinPayOrderDetailsVo.java
+4
-3
GoblinNftOrderAppServiceImpl.java
...ice/goblin/service/impl/GoblinNftOrderAppServiceImpl.java
+1
-7
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinPayOrderDetailsVo.java
View file @
c1b35818
...
...
@@ -27,14 +27,14 @@ public class GoblinPayOrderDetailsVo implements Serializable, Cloneable {
private
String
skuPic
;
@ApiModelProperty
(
position
=
21
,
value
=
"单品现价[20,2]"
)
private
BigDecimal
price
;
@ApiModelProperty
(
position
=
22
,
value
=
"IOS商品价格[20,2]"
)
private
BigDecimal
priceV
;
@ApiModelProperty
(
value
=
"商铺名称"
)
private
String
storeName
;
@ApiModelProperty
(
position
=
2
2
,
value
=
"数量"
)
@ApiModelProperty
(
position
=
2
3
,
value
=
"数量"
)
private
Integer
num
;
@ApiModelProperty
(
position
=
23
,
value
=
"总价"
)
private
BigDecimal
priceTotal
;
private
static
final
GoblinPayOrderDetailsVo
obj
=
new
GoblinPayOrderDetailsVo
();
...
...
@@ -54,6 +54,7 @@ public class GoblinPayOrderDetailsVo implements Serializable, Cloneable {
this
.
setSubtitle
(
source
.
getSubtitle
());
this
.
setSkuPic
(
source
.
getSkuPic
());
this
.
setPrice
(
source
.
getPrice
());
this
.
setPriceV
(
source
.
getPriceV
());
return
this
;
}
}
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/GoblinNftOrderAppServiceImpl.java
View file @
c1b35818
...
...
@@ -84,15 +84,9 @@ public class GoblinNftOrderAppServiceImpl implements IGoblinNftOrderAppService {
@Override
public
GoblinPayOrderDetailsVo
payOrderDetails
(
String
skuId
)
{
GoblinGoodsSkuInfoVo
goodsSkuInfoVo
=
goblinRedisUtils
.
getGoodsSkuInfoVo
(
skuId
);
if
(
null
!=
goodsSkuInfoVo
&&
goodsSkuInfoVo
.
getDelFlg
().
equals
(
"0"
)
&&
goodsSkuInfoVo
.
getStatus
().
equals
(
"3"
)
&&
goodsSkuInfoVo
.
getShelvesStatus
().
equals
(
"3"
)
&&
goodsSkuInfoVo
.
getSkuAppear
().
equals
(
"0"
)
&&
goodsSkuInfoVo
.
getSkuType
()
==
1
)
{
if
(
goblinRedisUtils
.
getSkuAllStatusShow
(
goodsSkuInfoVo
))
{
GoblinPayOrderDetailsVo
payOrderDetailsVo
=
GoblinPayOrderDetailsVo
.
getNew
().
copy
(
goodsSkuInfoVo
);
payOrderDetailsVo
.
setNum
(
1
);
payOrderDetailsVo
.
setPriceTotal
(
payOrderDetailsVo
.
getPrice
());
GoblinStoreInfoVo
storeInfoVo
=
goblinRedisUtils
.
getStoreInfoVo
(
goodsSkuInfoVo
.
getStoreId
());
payOrderDetailsVo
.
setStoreName
(
storeInfoVo
.
getStoreName
());
...
...
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