Commit e1b8722c by guojuxing

门店导购对外查询列表接口修改

parent 0c9a7854
......@@ -163,7 +163,7 @@ public class ClerkApiServiceImpl implements ClerkApiService {
public ServiceResponse<Page<ClerkStoreListDTO>> listClerk(Integer enterpriseId, ClerkSearchDTO clerkSearchDTO,
Integer pageNum, Integer pageSize) {
boolean hasStoreIds = StringUtils.isBlank(clerkSearchDTO.getStoreIds());
boolean hasStoreIds = StringUtils.isNotBlank(clerkSearchDTO.getStoreIds());
//如果有门店数据条件,则不判断门店分组数据,因为分店分组数据也是为了获取门店
if (!hasStoreIds) {
if (clerkSearchDTO.getStoreGroupId() == null) {
......
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