fix bug
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
LEFT JOIN sys_user b ON a.user_id = b.user_id
|
LEFT JOIN sys_user b ON a.user_id = b.user_id
|
||||||
LEFT JOIN apps_equipment c ON a.order_id = c.order_id
|
LEFT JOIN apps_equipment c ON a.order_id = c.order_id
|
||||||
LEFT JOIN shop_merchant d ON a.merchant_code = d.merchant_code
|
LEFT JOIN shop_merchant d ON a.merchant_code = d.merchant_code
|
||||||
|
LEFT JOIN shop_order e ON a.order_id = e.order_id
|
||||||
<where>
|
<where>
|
||||||
<if test="param.orderRefundId != null">
|
<if test="param.orderRefundId != null">
|
||||||
AND a.order_refund_id = #{param.orderRefundId}
|
AND a.order_refund_id = #{param.orderRefundId}
|
||||||
@@ -80,7 +81,7 @@
|
|||||||
AND a.create_time <= #{param.createTimeEnd}
|
AND a.create_time <= #{param.createTimeEnd}
|
||||||
</if>
|
</if>
|
||||||
<if test="param.orderNo != null">
|
<if test="param.orderNo != null">
|
||||||
AND a.order_no = #{param.orderNo}
|
AND e.order_no LIKE CONCAT('%', #{param.orderNo}, '%')
|
||||||
</if>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
</sql>
|
</sql>
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ mybatis-plus:
|
|||||||
configuration:
|
configuration:
|
||||||
map-underscore-to-camel-case: true
|
map-underscore-to-camel-case: true
|
||||||
cache-enabled: true
|
cache-enabled: true
|
||||||
log-impl: ${LOG_IMPL:org.apache.ibatis.logging.nologging.NoLoggingImpl}
|
log-impl: ${LOG_IMPL:org.apache.ibatis.logging.stdout.StdOutImpl}
|
||||||
global-config:
|
global-config:
|
||||||
:banner: false
|
:banner: false
|
||||||
db-config:
|
db-config:
|
||||||
|
|||||||
Reference in New Issue
Block a user