|
|
|
@ -8,6 +8,7 @@ |
|
|
|
|
|
|
|
<select id="selectShipmentList" resultType="com.spring.modules.shipment.entity.Shipment"> |
|
|
|
select <include refid="columns" /> from v_ifs_shipment ifs |
|
|
|
inner join customer c on ifs.customer_no = c.customer_no and ifs.site = c.site |
|
|
|
left join shipment_handle sh on ifs.shipment_id = sh.shipment_id and ifs.site = sh.site |
|
|
|
<where> |
|
|
|
<!-- and sh.create_date is null--> |
|
|
|
@ -24,10 +25,12 @@ |
|
|
|
and #{endDate} >= ifs.ship_date |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
order by ifs.ship_date desc |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="selectShipmentPage" resultType="com.spring.modules.shipment.entity.Shipment"> |
|
|
|
select <include refid="columns" /> from v_ifs_shipment ifs |
|
|
|
inner join customer c on ifs.customer_no = c.customer_no and ifs.site = c.site |
|
|
|
left join shipment_handle sh on ifs.shipment_id = sh.shipment_id and ifs.site = sh.site |
|
|
|
<where> |
|
|
|
<!-- and sh.create_date is null--> |
|
|
|
@ -44,6 +47,7 @@ |
|
|
|
and #{params.endDate} >= ifs.ship_date |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
order by ifs.ship_date desc |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="searchTransDetailsubCachData" resultType="com.spring.modules.material.data.TransDetailsubCachData"> |
|
|
|
|