|
@@ -569,6 +569,7 @@ from new_order_change a where 1 = 1 and status in (0,1,2,3)
|
|
|
select count(*) from new_order_change
|
|
select count(*) from new_order_change
|
|
|
where order_no= #{orderNo} and status in (0,1,2,3,6)
|
|
where order_no= #{orderNo} and status in (0,1,2,3,6)
|
|
|
</select>
|
|
</select>
|
|
|
|
|
+ <!--suppress MybatisPlusMapperXmlInspection -->
|
|
|
<select id="selectOrderChangeList" resultType="com.goafanti.order.bo.NewOderCahngeListBo">
|
|
<select id="selectOrderChangeList" resultType="com.goafanti.order.bo.NewOderCahngeListBo">
|
|
|
select a.id,a.order_no orderNo,b.contract_no contractNo, date_format(a.create_time,'%Y-%m-%d %H:%i:%S')createTimes,c.nickname,b.order_type orderType,
|
|
select a.id,a.order_no orderNo,b.contract_no contractNo, date_format(a.create_time,'%Y-%m-%d %H:%i:%S')createTimes,c.nickname,b.order_type orderType,
|
|
|
date_format(b.create_time,'%Y-%m-%d %H:%i:%S')establishTimes, b.order_status orderStatus,b.total_amount totalAmount,a.status ,a.examine_name examineName,
|
|
date_format(b.create_time,'%Y-%m-%d %H:%i:%S')establishTimes, b.order_status orderStatus,b.total_amount totalAmount,a.status ,a.examine_name examineName,
|
|
@@ -712,6 +713,7 @@ from new_order_change a where 1 = 1 and status in (0,1,2,3)
|
|
|
</if>
|
|
</if>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
|
|
|
|
|
+ <!--suppress MybatisPlusMapperXmlInspection -->
|
|
|
<select id="selectOrderChangeCount" resultType="java.lang.Integer">
|
|
<select id="selectOrderChangeCount" resultType="java.lang.Integer">
|
|
|
select count(*) from new_order_change noc left join new_order_change a on noc.id=a.id
|
|
select count(*) from new_order_change noc left join new_order_change a on noc.id=a.id
|
|
|
left join t_order_new b on a.order_no=b.order_no left join user c on b.buyer_id=c.id
|
|
left join t_order_new b on a.order_no=b.order_no left join user c on b.buyer_id=c.id
|