mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 查询未开发票订单,新增站点id条件
This commit is contained in:
@@ -743,6 +743,9 @@
|
||||
join pile_station_info t3 on t1.station_id = t3.id
|
||||
where t1.del_flag = '0'
|
||||
and t1.member_id = #{memberId,jdbcType=VARCHAR}
|
||||
<if test="stationId != null and stationId != ''">
|
||||
and t1.station_id = #{stationId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="orderStatusList != null and orderStatusList.size() != 0">
|
||||
and t1.order_status in
|
||||
<foreach collection="orderStatusList" item="orderStatus" open="(" separator="," close=")">
|
||||
@@ -753,7 +756,6 @@
|
||||
and t1.create_time <![CDATA[ >= ]]> #{dateTime,jdbcType=VARCHAR}
|
||||
</if>
|
||||
order by t1.create_time desc
|
||||
|
||||
</select>
|
||||
|
||||
<update id="updateOrderStatusByOrderCode">
|
||||
|
||||
Reference in New Issue
Block a user