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
d8009b82
Commit
d8009b82
authored
Mar 01, 2021
by
chongfu.liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
积分扣减
parent
f500625d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
shopping-cart-application-service/src/main/java/cn/freemud/entities/vo/CartGoods.java
+11
-3
No files found.
shopping-cart-application-service/src/main/java/cn/freemud/entities/vo/CartGoods.java
View file @
d8009b82
...
...
@@ -13,6 +13,7 @@
package
cn
.
freemud
.
entities
.
vo
;
import
com.freemud.sdk.api.assortment.shoppingcart.constant.CommonsConstant
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
org.apache.commons.collections4.CollectionUtils
;
...
...
@@ -417,10 +418,13 @@ public class CartGoods {
return
true
;
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
())
return
false
;
// 原始字符串
StringBuilder
originalString
=
new
StringBuilder
();
originalString
.
append
(
goodsId
);
if
(
StringUtils
.
isNotBlank
(
goodsId
)
&&
goodsId
.
startsWith
(
CommonsConstant
.
COUPON_PREFIX
)){
originalString
.
append
(
spuId
+
skuId
);
}
else
{
originalString
.
append
(
goodsId
);
}
originalString
.
append
(
couponCode
);
if
(
StringUtils
.
isNotEmpty
(
userId
)){
...
...
@@ -497,7 +501,11 @@ public class CartGoods {
@Override
public
int
hashCode
()
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
goodsId
);
if
(
StringUtils
.
isNotBlank
(
goodsId
)
&&
goodsId
.
startsWith
(
CommonsConstant
.
COUPON_PREFIX
)){
sb
.
append
(
spuId
+
skuId
);
}
else
{
sb
.
append
(
goodsId
);
}
if
(
CollectionUtils
.
isNotEmpty
(
extra
))
{
extra
.
stream
().
sorted
(
Comparator
.
comparing
(
CartGoodsExtra:
:
getAttributeId
)).
forEach
(
e
->
sb
.
append
(
e
.
getAttributeId
()));
}
...
...
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