This commit is contained in:
linfso 2024-06-19 23:37:11 +08:00
parent 956f1e75a7
commit 29818115c9

View File

@ -81,11 +81,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
)
</if>
<if test="params.blSign != null and params.blSign == '1'">
<if test="params.blSign != null and params.blSign == 1">
and exists (select 1 from emis_waybill ewb where ewb.bl_sign = '1' and ewb.bill_code=a.bill_code)
</if>
<if test="params.blSign != null and params.blSign == '0'">
<if test="params.blSign != null and params.blSign == 0">
and exists (select 1 from emis_waybill ewb where ewb.bl_sign != '1' and ewb.bill_code=a.bill_code)
</if>