解决收支单据无法按时间查询的问题
This commit is contained in:
@@ -22,10 +22,10 @@
|
||||
and ah.Type='${type}'
|
||||
</if>
|
||||
<if test="beginTime != null">
|
||||
and ah.BillTime >= '%${beginTime}%'
|
||||
and ah.BillTime >= '${beginTime}'
|
||||
</if>
|
||||
<if test="endTime != null">
|
||||
and ah.BillTime <= '%${endTime}%'
|
||||
and ah.BillTime <= '${endTime}'
|
||||
</if>
|
||||
and ifnull(ah.delete_Flag,'0') !='1'
|
||||
order by ah.Id desc
|
||||
@@ -47,10 +47,10 @@
|
||||
and Type='${type}'
|
||||
</if>
|
||||
<if test="beginTime != null">
|
||||
and BillTime >= '%${beginTime}%'
|
||||
and BillTime >= '${beginTime}'
|
||||
</if>
|
||||
<if test="endTime != null">
|
||||
and BillTime <= '%${endTime}%'
|
||||
and BillTime <= '${endTime}'
|
||||
</if>
|
||||
and ifnull(delete_Flag,'0') !='1'
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user