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
c337d634
Commit
c337d634
authored
Jan 12, 2021
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店状态变更
parent
2dd259ff
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
4 deletions
+27
-4
ClerkApiService.java
.../src/main/java/com/gic/store/service/ClerkApiService.java
+19
-1
ClerkService.java
...ice/src/main/java/com/gic/store/service/ClerkService.java
+2
-2
ClerkApiServiceImpl.java
...com/gic/store/service/outer/impl/ClerkApiServiceImpl.java
+5
-0
TabClerkMapper.xml
...tore-service/src/main/resources/mapper/TabClerkMapper.xml
+1
-1
No files found.
gic-store-api/src/main/java/com/gic/store/service/ClerkApiService.java
View file @
c337d634
...
...
@@ -426,6 +426,24 @@ public interface ClerkApiService {
* @throws
*/
ServiceResponse
<
List
<
ClerkDTO
>>
listHaobanClerk
(
Integer
enterpriseId
,
Integer
positionId
);
/**
* checkStoreRealStatus
* @Title: checkStoreRealStatus
* @Description: 校验门店的realStatus
* @author taogs
* @param params
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws
*/
ServiceResponse
<
Void
>
checkStoreRealStatus
(
String
params
);
/**
* listClerkId
* @Title: listClerkId
* @Description: 通过storeIdList获取clerkIdList
* @author taogs
* @param storeInfoIdList
* @return com.gic.api.base.commons.ServiceResponse<java.util.List<java.lang.Integer>>
* @throws
*/
ServiceResponse
<
List
<
Integer
>>
listClerkId
(
List
<
Integer
>
storeInfoIdList
);
}
gic-store-service/src/main/java/com/gic/store/service/ClerkService.java
View file @
c337d634
...
...
@@ -312,8 +312,8 @@ public interface ClerkService {
* @Title: listStoreInfoIdByStoreInfoId
* @Description:
* @author zhiwj
* @param enterpriseId
* @param storeInfoIdList
* @param enterpriseId
* @param storeInfoIdList
* @return java.util.List<java.lang.Integer>
* @throws
*/
...
...
gic-store-service/src/main/java/com/gic/store/service/outer/impl/ClerkApiServiceImpl.java
View file @
c337d634
...
...
@@ -942,6 +942,11 @@ public class ClerkApiServiceImpl implements ClerkApiService {
return
ServiceResponse
.
success
();
}
@Override
public
ServiceResponse
<
List
<
Integer
>>
listClerkId
(
List
<
Integer
>
storeInfoIdList
)
{
return
null
;
}
private
ServiceResponse
<
List
<
ClerkDTO
>>
haobanClerk
(
List
<
TabClerk
>
clerkList
)
{
List
<
ClerkDTO
>
clerkDTOS
=
EntityUtil
.
changeEntityListByJSON
(
ClerkDTO
.
class
,
clerkList
);
if
(
CollectionUtils
.
isNotEmpty
(
clerkDTOS
))
{
...
...
gic-store-service/src/main/resources/mapper/TabClerkMapper.xml
View file @
c337d634
...
...
@@ -422,7 +422,7 @@
<select
id=
"listStoreInfoIdByStoreInfoId"
resultType=
"int"
>
select
store_info_id
from tab_clerk where
enterprise_id = #{enterpriseId} and
status = 1
from tab_clerk where status = 1
<if
test=
"null != ids and ids.size > 0"
>
and store_info_id in
<foreach
collection=
"ids"
index=
"index"
item=
"item"
open=
"("
separator=
","
close=
")"
>
...
...
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