修改 部门 仓库问题

master
wangwei 2 years ago
parent 0cda57721b
commit 975b7a183f

@ -297,7 +297,7 @@ public class SysUserController extends BaseController {
//默认插入第一部门 //默认插入第一部门
List<Long> deptCodeList = null; ArrayList<Long> deptCodeList = new ArrayList<>();
FilterDeptUserReqeust filterDeptUserReqeust = new FilterDeptUserReqeust(); FilterDeptUserReqeust filterDeptUserReqeust = new FilterDeptUserReqeust();
filterDeptUserReqeust.setUserId(authUserSaveRequest.getId()); filterDeptUserReqeust.setUserId(authUserSaveRequest.getId());
List<DeptUserEntity> deptUserEntities = deptUserService.selectDeptUser(filterDeptUserReqeust); List<DeptUserEntity> deptUserEntities = deptUserService.selectDeptUser(filterDeptUserReqeust);

@ -286,6 +286,7 @@
AND (auth_user.employeeName = #{key} or auth_warehouse_user.userName = #{key}) AND (auth_user.employeeName = #{key} or auth_warehouse_user.userName = #{key})
</if> </if>
</where> </where>
GROUP BY auth_warehouse_user.userId
</select> </select>
@ -340,4 +341,4 @@
set isDirector = #{isDirector} set isDirector = #{isDirector}
where id = #{id} where id = #{id}
</update> </update>
</mapper> </mapper>

@ -41,8 +41,14 @@
<select id="selectByThrDeptCode" parameterType="com.glxp.api.req.thrsys.FilterThrSubInvWarehouseRequest" <select id="selectByThrDeptCode" parameterType="com.glxp.api.req.thrsys.FilterThrSubInvWarehouseRequest"
resultType="com.glxp.api.entity.thrsys.ThrInvWarehouseEntity"> resultType="com.glxp.api.entity.thrsys.ThrInvWarehouseEntity">
select * from thr_inv_warehouse where parentId not in (SELECT code FROM thr_dept select * from thr_inv_warehouse
where status=#{status} and thirdSysFk=#{thirdSysFk}) and thirdSysFk=#{thirdSysFk} <where>
parentId not in (SELECT code FROM thr_dept
where status=#{status} and thirdSysFk=#{thirdSysFk}) and thirdSysFk=#{thirdSysFk}
<if test=" name != '' and name != null">
and name like concat('%',#{name},'%')
</if>
</where>
</select> </select>
@ -138,4 +144,4 @@
updateTime = #{updateTime,jdbcType=DATE} updateTime = #{updateTime,jdbcType=DATE}
</insert> </insert>
</mapper> </mapper>

Loading…
Cancel
Save