给收入单和支出单的接口增加收支项目的参数

This commit is contained in:
jishenghua
2025-02-25 22:01:49 +08:00
parent 8d2b25bc7f
commit 3801dd8202
4 changed files with 16 additions and 7 deletions

View File

@@ -67,6 +67,9 @@
and dh.number like #{bindNumber}
</if>
</if>
<if test="inOutItemId != null">
and ai.in_out_item_id=#{inOutItemId}
</if>
and ifnull(ah.delete_flag,'0') !='1'
order by ah.id desc
</select>
@@ -126,6 +129,9 @@
and dh.number like #{bindNumber}
</if>
</if>
<if test="inOutItemId != null">
and ai.in_out_item_id=#{inOutItemId}
</if>
and ifnull(ah.delete_flag,'0') !='1') tb
</select>