|
@@ -343,6 +343,7 @@
|
|
|
</select>
|
|
|
<select id="selectCargoDeclareInfoByShipId"
|
|
|
resultType="com.shanghaichengdi.ghjgitem.vo.CargoInfoForShipLockVo">
|
|
|
+ select * from (
|
|
|
<foreach collection="list" item="item" index="index" separator="union all">
|
|
|
select c.ship_id shipId,
|
|
|
c.SHIP_NAME_CN shipName,
|
|
@@ -352,17 +353,20 @@
|
|
|
r.GOODS_CODE cargoCode,
|
|
|
r.specific_name cargoName,
|
|
|
c.actual_carrying_capacity actualLoad,
|
|
|
- c.PRE_PORT_NAME startPort,
|
|
|
- c.pre_port_code startPortCode,
|
|
|
- c.next_port_code nextPortCode,
|
|
|
- c.next_port_name nextPort,
|
|
|
- c.LAST_UPDATE_DATE lastUpdateDate
|
|
|
+ decode(c.ARRIVAL_OR_LEAVE,0,c.PRE_PORT_NAME,1,c.REPORT_PORT_NAME) startPort,
|
|
|
+ decode(c.ARRIVAL_OR_LEAVE,0,c.PRE_PORT_CODE,1,c.REPORT_PORT_CODE) startPortCode,
|
|
|
+ decode(c.ARRIVAL_OR_LEAVE,0,c.REPORT_PORT_CODE,1,c.next_port_code) nextPortCode,
|
|
|
+ decode(c.ARRIVAL_OR_LEAVE,0,c.REPORT_PORT_NAME,1,c.next_port_name) nextPort,
|
|
|
+ c.LAST_UPDATE_DATE lastUpdateDate,
|
|
|
+ c.report_time reportTime
|
|
|
from ghjg_basics.c_cb_ship_eep_report_rec partition(${item}) c
|
|
|
left join ghjg_basics.c_cb_cargo_declare_rec r
|
|
|
on c.report_id = r.report_id
|
|
|
left join ghjg_basics.d_cb_cargo_type d on r.type_code = d.code
|
|
|
where c.SHIP_ID = #{shipId}
|
|
|
</foreach>
|
|
|
+ ) t
|
|
|
+ where t.reportTime >= sysdate-2 and t.reportTime <= sysdate
|
|
|
</select>
|
|
|
|
|
|
<select id="getPdShipCountByMmsi" resultType="java.lang.Integer">
|