记得上下班打卡 | 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
435523a3
Commit
435523a3
authored
Jan 06, 2023
by
zhanggb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~api:店铺管理:店铺ERP.shopNoList获取;
parent
b6e66ee8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
GoblinMongoUtils.java
...a/com/liquidnet/service/goblin/util/GoblinMongoUtils.java
+10
-0
GoblinRedisUtils.java
...a/com/liquidnet/service/goblin/util/GoblinRedisUtils.java
+5
-2
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/util/GoblinMongoUtils.java
View file @
435523a3
...
@@ -459,6 +459,16 @@ public class GoblinMongoUtils {
...
@@ -459,6 +459,16 @@ public class GoblinMongoUtils {
/* ---------------------------------------- 店铺ERP配置数据源 ---------------------------------------- */
/* ---------------------------------------- 店铺ERP配置数据源 ---------------------------------------- */
public
List
<
String
>
getStoreErpShopNoList
()
{
Query
query
=
Query
.
query
(
Criteria
.
where
(
"shopNo"
).
ne
(
""
));
query
.
fields
().
include
(
"shopNo"
);
List
<
GoblinStoreErpConfigVo
>
vos
=
mongoTemplate
.
find
(
query
,
GoblinStoreErpConfigVo
.
class
,
GoblinStoreErpConfigVo
.
class
.
getSimpleName
());
if
(!
CollectionUtils
.
isEmpty
(
vos
))
{
return
vos
.
stream
().
map
(
GoblinStoreErpConfigVo:
:
getShopNo
).
distinct
().
collect
(
Collectors
.
toList
());
}
return
null
;
}
public
GoblinStoreErpConfigVo
getStoreErpConfigVo
(
String
storeId
)
{
public
GoblinStoreErpConfigVo
getStoreErpConfigVo
(
String
storeId
)
{
Query
query
=
Query
.
query
(
Criteria
.
where
(
"storeId"
).
is
(
storeId
));
Query
query
=
Query
.
query
(
Criteria
.
where
(
"storeId"
).
is
(
storeId
));
return
mongoTemplate
.
findOne
(
query
,
GoblinStoreErpConfigVo
.
class
,
GoblinStoreErpConfigVo
.
class
.
getSimpleName
());
return
mongoTemplate
.
findOne
(
query
,
GoblinStoreErpConfigVo
.
class
,
GoblinStoreErpConfigVo
.
class
.
getSimpleName
());
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/util/GoblinRedisUtils.java
View file @
435523a3
...
@@ -611,8 +611,11 @@ public class GoblinRedisUtils {
...
@@ -611,8 +611,11 @@ public class GoblinRedisUtils {
}
}
public
List
<
String
>
getStoreErpShopNoList
()
{
public
List
<
String
>
getStoreErpShopNoList
()
{
// TODO: 2023/1/6 zhanggb mongo get
List
<
String
>
storeErpShopNoList
=
(
List
<
String
>)
redisUtil
.
get
(
GoblinRedisConst
.
BASIC_STORE_ERPS
);
return
(
List
<
String
>)
redisUtil
.
get
(
GoblinRedisConst
.
BASIC_STORE_ERPS
);
if
(
CollectionUtils
.
isEmpty
(
storeErpShopNoList
)
&&
!
CollectionUtils
.
isEmpty
(
storeErpShopNoList
=
goblinMongoUtils
.
getStoreErpShopNoList
()))
{
redisUtil
.
set
(
GoblinRedisConst
.
BASIC_STORE_ERPS
,
storeErpShopNoList
);
}
return
storeErpShopNoList
;
}
}
public
void
delStoreErpShopNoList
()
{
public
void
delStoreErpShopNoList
()
{
...
...
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