This commit is contained in:
kuang.yife 2023-03-08 10:50:38 +08:00
parent 51b9ef2da3
commit af91e90b18
1 changed files with 2 additions and 2 deletions

View File

@ -178,10 +178,10 @@
#{item}
</foreach>
</if>
<if test="billingState == '1'">
<if test='billingState == "1"'>
and od.order_status in ('0','1','2','3','4')
</if>
<if test="billingState != null and billingState != '' and billingState != '1'">
<if test='billingState != null and billingState != "" and billingState != "1"'>
and od.order_status = #{billingState}
</if>
</where>