修改bug

master
wangwei 2 years ago
parent f686b5de3d
commit 631827e941

@ -585,4 +585,10 @@ public class InvWarehouseController extends BaseController {
return ResultVOUtils.success();
}
@PostMapping("/warehouse/inout/getDeptById")
public BaseResponse getDeptById(@RequestBody List<Integer> deptIds) {
List<DeptEntity> list = deptService.getDeptById(deptIds);
return ResultVOUtils.success(list);
}
}

@ -27,6 +27,8 @@ public interface DeptDao {
boolean deleteById(@Param("id") String id);
List<DeptEntity> getDeptById(@Param("ids") List<Integer> ids);
String getNameByCode(@Param("fromCorpId") String fromCorpId);
Long getIdByCode(@Param("fromCorpId") Long fromCorpId);

@ -73,4 +73,6 @@ public interface DeptService {
boolean updateTime(String code, Date updateTime);
List<DeptEntity> getDeptById( List<Integer> ids);
}

@ -1,8 +1,10 @@
package com.glxp.api.service.auth;
import com.glxp.api.entity.auth.DeptEntity;
import com.glxp.api.entity.auth.DeptUserEntity;
import com.glxp.api.req.auth.FilterDeptUserReqeust;
import com.glxp.api.res.auth.DeptUserResponse;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@ -13,6 +15,8 @@ public interface DeptUserService {
List<DeptUserResponse> selectByUserId(Long userId);
List<DeptEntity> getDeptById( List<Integer> ids);
List<DeptUserResponse> selectJoinDeptUser(FilterDeptUserReqeust filterDeptUserReqeust);
boolean delete(Long deptId, Long userId);

@ -172,4 +172,9 @@ public class DeptServiceImpl implements DeptService {
public boolean updateTime(String code, Date updateTime) {
return deptDao.updateTime(code, updateTime);
}
@Override
public List<DeptEntity> getDeptById(List<Integer> ids) {
return deptDao.getDeptById(ids);
}
}

@ -2,7 +2,9 @@ package com.glxp.api.service.auth.impl;
import cn.hutool.core.collection.CollUtil;
import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.auth.DeptDao;
import com.glxp.api.dao.auth.DeptUserDao;
import com.glxp.api.entity.auth.DeptEntity;
import com.glxp.api.entity.auth.DeptUserEntity;
import com.glxp.api.req.auth.FilterDeptUserReqeust;
import com.glxp.api.res.auth.DeptUserResponse;
@ -19,6 +21,9 @@ public class DeptUserServiceImpl implements DeptUserService {
@Resource
DeptUserDao deptUserDao;
@Resource
DeptDao deptDao;
@Override
@ -37,6 +42,11 @@ public class DeptUserServiceImpl implements DeptUserService {
return deptUserDao.selectJoinDeptUser(filterDeptUserReqeust);
}
@Override
public List<DeptEntity> getDeptById(List<Integer> ids) {
return deptDao.getDeptById(ids);
}
@Override
public List<DeptUserResponse> selectJoinDeptUser(FilterDeptUserReqeust filterDeptUserReqeust) {
if (filterDeptUserReqeust.getPage() != null) {

@ -225,6 +225,16 @@
WHERE id = #{id}
</delete>
<select id="getDeptById" resultType="com.glxp.api.entity.auth.DeptEntity" >
select *
from
where id in
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
#{item}
</foreach>
</select>
<update id="updateInvWarehouse" parameterType="com.glxp.api.entity.auth.DeptEntity">
UPDATE auth_dept
<trim prefix="set" suffixOverrides=",">

@ -41,7 +41,7 @@
auth_user.employeeName like concat('%', #{key}, '%'))
</if>
</where>
group by auth_dept_user.userId
</select>

Loading…
Cancel
Save