|
|
@ -35,14 +35,14 @@ |
|
|
|
</update> |
|
|
|
|
|
|
|
<select id="getPriceInfo" resultType="com.yxt.anrui.buscenter.api.bussalesorderprice.app.AppBusSalesOrderPriceVo"> |
|
|
|
select bp.plannedPickUpLocation as address, |
|
|
|
bp.plannedPickUpLocationKey as addressKey, |
|
|
|
bp.singleFinalPrice as overallPrice, |
|
|
|
bp.plannedPickUpDate as date, |
|
|
|
bp.quantity as number, |
|
|
|
bp.singleGuildPrice as guidancePrice, |
|
|
|
bp.priceSum as totalPrice, |
|
|
|
bm.finalPrice as transactionPrice |
|
|
|
select bp.plannedPickUpLocation as address, |
|
|
|
bp.plannedPickUpLocationKey as addressKey, |
|
|
|
bp.singleFinalPrice as overallPrice, |
|
|
|
date_format(bp.plannedPickUpDate, '%Y-%m-%d') as date, |
|
|
|
bp.quantity as number, |
|
|
|
bp.singleGuildPrice as guidancePrice, |
|
|
|
bp.priceSum as totalPrice, |
|
|
|
bm.finalPrice as transactionPrice |
|
|
|
from bus_sales_order_price bp |
|
|
|
left join bus_sales_order_model bm on bm.salesOrderSid = bp.salesOrderSid |
|
|
|
where bp.salesOrderSid = #{sid} |
|
|
|