Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-store
Commits
08c8ded3
Commit
08c8ded3
authored
Oct 08, 2019
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店授权
parent
32682915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
StoreGroupController.java
...va/com/gic/store/web/controller/StoreGroupController.java
+4
-2
No files found.
gic-store-web/src/main/java/com/gic/store/web/controller/StoreGroupController.java
View file @
08c8ded3
...
...
@@ -2,6 +2,7 @@ package com.gic.store.web.controller;
import
java.util.List
;
import
com.gic.enterprise.utils.UserDetailUtils
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
...
@@ -38,8 +39,9 @@ public class StoreGroupController {
@RequestMapping
(
"/list"
)
public
RestResponse
listStoreGroup
(
StoreGroupQO
storeGroupQO
)
{
ServiceResponse
<
List
<
StoreGroupDTO
>>
result
=
storeGroupApiService
.
listStoreGroup
(
transferQoToDTO
(
storeGroupQO
));
Integer
enterpriseId
=
UserDetailUtils
.
getUserDetail
().
getEnterpriseId
();
storeGroupQO
.
setEnterpriseId
(
enterpriseId
);
ServiceResponse
<
List
<
StoreGroupDTO
>>
result
=
storeGroupApiService
.
listStoreGroup
(
transferQoToDTO
(
storeGroupQO
));
if
(
result
.
isSuccess
())
{
return
RestResponse
.
success
(
ChangeListToTree
.
changeListToTree
(
StoreGroupConstant
.
ALL_STORE_LEVEL
,
result
.
getResult
()));
...
...
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