|
|
|
@ -990,6 +990,131 @@
|
|
|
|
|
ltcl.count_transport_cost |
|
|
|
|
order by ltcl.create_time desc |
|
|
|
|
</select> |
|
|
|
|
<select id="exportCarsPageList" resultType="com.logpm.trunkline.excel.TrunklineCarsLoadExcel"> |
|
|
|
|
select ltcl.id id, |
|
|
|
|
ltcl.cars_no carsNo, |
|
|
|
|
ltcl.plan_loading_number planLoadingNumber, |
|
|
|
|
ltcl.real_loading_number realLoadingNumber, |
|
|
|
|
ltcl.stock_number stockCarsNum, |
|
|
|
|
ltcl.unload_number unloadNumber, |
|
|
|
|
ltcl.full_load_rate fullLoadRate, |
|
|
|
|
ltcl.is_customer isCustomer, |
|
|
|
|
CASE ltcl.load_status |
|
|
|
|
WHEN '0' THEN '未发车' |
|
|
|
|
WHEN '10' THEN '已发车' |
|
|
|
|
WHEN '20' THEN '网点到车' |
|
|
|
|
WHEN '30' THEN '网点发车' |
|
|
|
|
WHEN '40' THEN '终点到车' |
|
|
|
|
WHEN '80' THEN '已卸车' |
|
|
|
|
WHEN '90' THEN '已签收' |
|
|
|
|
WHEN '100' THEN '取消配载' |
|
|
|
|
ELSE |
|
|
|
|
'未知状态' |
|
|
|
|
END loadStatusName, |
|
|
|
|
ltcl.loading_type loadingType, |
|
|
|
|
ltcl.driver_name driverName, |
|
|
|
|
ltcl.driver_mobile driverMobile, |
|
|
|
|
ltcl.car_number carNumber, |
|
|
|
|
ltcl.start_warehouse_name startWarehouseName, |
|
|
|
|
ltcl.end_warehouse_names endWarehouseNames, |
|
|
|
|
ltcl.arrive_time arriveTime, |
|
|
|
|
ltcl.start_time startTime, |
|
|
|
|
ltcl.create_user_name createUserName, |
|
|
|
|
ltcl.operator operator, |
|
|
|
|
ltcl.create_time createTime, |
|
|
|
|
ltcl.now_warehouse_id nowWarehouseId, |
|
|
|
|
sum(ltcll.now_transport_cost) nowTransportCost, |
|
|
|
|
sum(ltcll.oil_cost) oilCost, |
|
|
|
|
sum(ltcll.back_transport_cost) backTransportCost, |
|
|
|
|
sum(ltcll.reach_transport_cost) reachTransportCost, |
|
|
|
|
sum(ltcll.whole_car_info_cost) wholeCarInfoCost, |
|
|
|
|
sum(ltcll.whole_car_insurance_cost) wholeCarInsuranceCost, |
|
|
|
|
sum(ltcll.whole_car_ground_cost) wholeCarGroundCost, |
|
|
|
|
sum(ltcll.hair_whole_cost) hairWholeCost, |
|
|
|
|
sum(ltcll.hair_whole_other_cost) hairWholeOtherCost, |
|
|
|
|
sum(ltcll.unload_cost) unloadCost, |
|
|
|
|
sum(ltcll.unload_other_cost) unloadOtherCost, |
|
|
|
|
sum(ltcll.fuel) fuel, |
|
|
|
|
sum(ltcll.toll_fee) tollFee |
|
|
|
|
from logpm_trunkline_cars_load ltcl |
|
|
|
|
left join logpm_trunkline_cars_load_line ltcll on ltcll.load_id = ltcl.id |
|
|
|
|
where ltcl.is_deleted = 0 |
|
|
|
|
and ltcl.load_status != '100' |
|
|
|
|
and ltcl.load_type != '4' |
|
|
|
|
<if test="param.warehouseId != null" > |
|
|
|
|
and ltcl.end_warehouse_ids like concat('%',#{param.warehouseId},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.warehouseName != null and param.warehouseName != ''"> |
|
|
|
|
and (Locate(#{param.warehouseName},ltcl.start_warehouse_name) > 0 or Locate(#{param.warehouseName},ltcl.end_warehouse_names) > 0) |
|
|
|
|
</if> |
|
|
|
|
<if test="param.loadCarsNo != null and param.loadCarsNo != ''"> |
|
|
|
|
and Locate(#{param.loadCarsNo},ltcl.cars_no) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.createTimeStart != null "> |
|
|
|
|
and ltcl.create_time >= #{param.createTimeStart} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.createTimeEnd != null "> |
|
|
|
|
and ltcl.create_time <= #{param.createTimeEnd} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.startTime != null "> |
|
|
|
|
and ltcl.start_time >= #{param.startTime} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.endTime != null "> |
|
|
|
|
and ltcl.start_time <= #{param.endTime} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.arriveTimeStart != null "> |
|
|
|
|
and ltcl.arrive_time >= #{param.arriveTimeStart} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.arriveTimeEnd != null "> |
|
|
|
|
and ltcl.arrive_time <= #{param.arriveTimeEnd} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.driverName != null and param.driverName != ''"> |
|
|
|
|
and ltcl.driver_name like CONCAT('%',#{param.driverName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.driverMobile != null and param.driverMobile != ''"> |
|
|
|
|
and ltcl.driver_mobile like CONCAT('%',#{param.driverMobile},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.carNumber != null and param.carNumber != ''"> |
|
|
|
|
and ltcl.car_number like CONCAT('%',#{param.carNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.startWarehouseName != null and param.startWarehouseName != ''"> |
|
|
|
|
and ltcl.start_warehouse_name like CONCAT('%',#{param.startWarehouseName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.endWarehouseNames != null and param.endWarehouseNames != ''"> |
|
|
|
|
and ltcl.end_warehouse_names like CONCAT('%',#{param.endWarehouseNames},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.createUserName != null and param.createUserName != ''"> |
|
|
|
|
and ltcl.create_user_name like CONCAT('%',#{param.createUserName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.operator != null and param.operator != ''"> |
|
|
|
|
and ltcl.operator like CONCAT('%',#{param.operator},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.arriveTime != null "> |
|
|
|
|
AND DATE_FORMAT(ltcl.arrive_time,'%y%d%m') = DATE_FORMAT(#{param.arriveTime},'%y%d%m') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.startTime != null "> |
|
|
|
|
AND DATE_FORMAT(ltcl.start_time,'%y%d%m') = DATE_FORMAT(#{param.startTime},'%y%d%m') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.createTime != null "> |
|
|
|
|
AND DATE_FORMAT(ltcl.create_time,'%y%d%m') = DATE_FORMAT(#{param.createTime},'%y%d%m') |
|
|
|
|
</if> |
|
|
|
|
group by ltcl.id,ltcl.cars_no, |
|
|
|
|
ltcl.plan_loading_number, |
|
|
|
|
ltcl.real_loading_number, |
|
|
|
|
ltcl.unload_number, |
|
|
|
|
ltcl.full_load_rate, |
|
|
|
|
ltcl.is_customer, |
|
|
|
|
ltcl.load_status, |
|
|
|
|
ltcl.loading_type, |
|
|
|
|
ltcl.driver_name, |
|
|
|
|
ltcl.driver_mobile, |
|
|
|
|
ltcl.car_number, |
|
|
|
|
ltcl.start_warehouse_name, |
|
|
|
|
ltcl.end_warehouse_names, |
|
|
|
|
ltcl.arrive_time, |
|
|
|
|
ltcl.start_time |
|
|
|
|
order by ltcl.create_time desc |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper> |
|
|
|
|