|
@@ -373,11 +373,11 @@
|
|
|
<if test="orderstatus != null and orderstatus != '' ">
|
|
<if test="orderstatus != null and orderstatus != '' ">
|
|
|
and b.orderstatus = #{orderstatus}
|
|
and b.orderstatus = #{orderstatus}
|
|
|
</if>
|
|
</if>
|
|
|
- <if test="startDate != null and startDate != '' ">
|
|
|
|
|
|
|
+ <if test="startDate != null ">
|
|
|
and a.createtime >= #{startDate}
|
|
and a.createtime >= #{startDate}
|
|
|
</if>
|
|
</if>
|
|
|
- <if test="endDate != null and endDate != '' ">
|
|
|
|
|
- and a.endDate <= #{endDate}
|
|
|
|
|
|
|
+ <if test="endDate != null ">
|
|
|
|
|
+ and a.createtime <= #{endDate}
|
|
|
</if>
|
|
</if>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|