Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
shop
Project
Project
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
曲欣亮
shop
Commits
d4a4a94c
Commit
d4a4a94c
authored
Oct 09, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
f571f191
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
CartRedisServiceImpl.java
...ava/com/egolm/shop/service/impl/CartRedisServiceImpl.java
+6
-0
No files found.
src/main/java/com/egolm/shop/service/impl/CartRedisServiceImpl.java
View file @
d4a4a94c
...
@@ -128,8 +128,13 @@ public class CartRedisServiceImpl implements CartRedisService {
...
@@ -128,8 +128,13 @@ public class CartRedisServiceImpl implements CartRedisService {
Set
<
String
>
chooseGroups
=
new
HashSet
<
String
>();
Set
<
String
>
chooseGroups
=
new
HashSet
<
String
>();
Set
<
String
>
chooseGifts
=
new
HashSet
<
String
>();
Set
<
String
>
chooseGifts
=
new
HashSet
<
String
>();
Set
<
String
>
promosNo
=
new
HashSet
<
String
>();
Set
<
String
>
promosNo
=
new
HashSet
<
String
>();
boolean
isOrnament
=
false
;
if
(
datas
!=
null
&&
datas
.
size
()
>
0
)
{
if
(
datas
!=
null
&&
datas
.
size
()
>
0
)
{
for
(
Map
<
String
,
Object
>
data
:
datas
)
{
for
(
Map
<
String
,
Object
>
data
:
datas
)
{
String
sGoodsTag
=
(
String
)
data
.
get
(
"sGoodsTag"
);
if
(
sGoodsTag
!=
null
&&
sGoodsTag
.
contains
(
"门店装饰"
))
{
isOrnament
=
true
;
}
Integer
nTag_CG
=
(
Integer
)
data
.
get
(
"nTag_CG"
);
Integer
nTag_CG
=
(
Integer
)
data
.
get
(
"nTag_CG"
);
if
(
nTag_CG
!=
null
&&
(
nTag_CG
&
16
)
==
16
)
{
if
(
nTag_CG
!=
null
&&
(
nTag_CG
&
16
)
==
16
)
{
data
.
put
(
"published"
,
1
);
data
.
put
(
"published"
,
1
);
...
@@ -187,6 +192,7 @@ public class CartRedisServiceImpl implements CartRedisService {
...
@@ -187,6 +192,7 @@ public class CartRedisServiceImpl implements CartRedisService {
List
<
Map
<
String
,
Object
>>
promos
=
this
.
processPromo
(
shopNo
,
promosNo
,
chooseGifts
,
chooseGroups
);
List
<
Map
<
String
,
Object
>>
promos
=
this
.
processPromo
(
shopNo
,
promosNo
,
chooseGifts
,
chooseGroups
);
this
.
processPromoGoods
(
promos
,
shopNo
);
this
.
processPromoGoods
(
promos
,
shopNo
);
rjx
.
set
(
"promoData"
,
Util
.
listToMM
(
promos
,
"promoNo"
));
rjx
.
set
(
"promoData"
,
Util
.
listToMM
(
promos
,
"promoNo"
));
rjx
.
set
(
"isOrnament"
,
isOrnament
);
this
.
processPayAmount
(
rjx
);
this
.
processPayAmount
(
rjx
);
this
.
cacheData
(
orgNo
,
shopNo
,
terminal
,
rjx
);
this
.
cacheData
(
orgNo
,
shopNo
,
terminal
,
rjx
);
return
rjx
;
return
rjx
;
...
...
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