fix(bpm): 修复采购类型为 3 的数据未显示问题

- 在 BpmOAProcureMapper.xml 文件中,修改了 procure_type 的查询条件
-增加了对类型为 3 的采购数据的查询,确保这类数据能够正确显示
This commit is contained in:
furongxin 2025-01-06 20:06:31 +08:00
parent 10f044147c
commit d8440645b8

View File

@ -30,7 +30,7 @@
AND a.pay_flag = 0 AND a.pay_flag = 0
AND a.deleted = 0 AND a.deleted = 0
<if test="type != null"> <if test="type != null">
AND a.procure_type = #{type} AND (a.procure_type = #{type} or a.procure_type = 3)
</if> </if>
</select> </select>
</mapper> </mapper>