Commit c337d634 by 陶光胜

门店状态变更

parent 2dd259ff
......@@ -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);
}
......@@ -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
*/
......
......@@ -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)) {
......
......@@ -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=")">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment