入库单,出库单,按照用户角色为库管来过滤状态为已创建的

This commit is contained in:
秦鸿展
2026-04-02 16:15:00 +08:00
parent 21ae63e78d
commit 39541c7005
3 changed files with 61 additions and 2 deletions
@@ -200,10 +200,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and a.status = #{status}
</if>
<if test="ltStatus != null ">
and a.status &lt; #{status}
and a.status &lt; #{ltStatus}
</if>
<if test="gtStatus != null ">
and a.status &gt; #{status}
and a.status &gt; #{gtStatus}
</if>
<if test="auditStatus != null ">
and a.audit_status = #{auditStatus}