|
|
|
@ -924,6 +924,130 @@
|
|
|
|
|
</foreach> |
|
|
|
|
group by lsoi.waybill_id |
|
|
|
|
</select> |
|
|
|
|
<select id="pageList2CExport" resultType="com.logpm.statistics.vo.StatisticsOrderInfoVO"> |
|
|
|
|
|
|
|
|
|
select lsoi.id orderInfoId, |
|
|
|
|
lsoi.brand_id brandId, |
|
|
|
|
lsoi.brand brand, |
|
|
|
|
lsoi.waybill_id waybillId, |
|
|
|
|
lsoi.waybill_no waybillNo, |
|
|
|
|
lsoi.order_code orderCode, |
|
|
|
|
lsoi.type_service typeService, |
|
|
|
|
lww.shipper shipper, |
|
|
|
|
lww.shipper_name shipperPerson, |
|
|
|
|
lww.shipper_mobile shipperMobile, |
|
|
|
|
lww.shipper_address shipperAddress, |
|
|
|
|
lww.consignee consignee, |
|
|
|
|
lww.consignee_name consigneePerson, |
|
|
|
|
lww.consignee_mobile consigneeMobile, |
|
|
|
|
lww.consignee_address consigneeAddress, |
|
|
|
|
lsoi.sign_status signStatus, |
|
|
|
|
lsoi.sign_date signDate, |
|
|
|
|
lww.create_time openTime, |
|
|
|
|
lww.departure departure, |
|
|
|
|
lww.destination destination, |
|
|
|
|
lsoi.departure_warehouse_id departureWarehouseId, |
|
|
|
|
lsoi.departure_warehouse_name departureWarehouseName, |
|
|
|
|
lsoi.destination_warehouse_id destinationWarehouseId, |
|
|
|
|
lsoi.destination_warehouse_name destinationWarehouseName, |
|
|
|
|
lww.delivery_method deliveryMethod, |
|
|
|
|
lww.customer_train customerTrain, |
|
|
|
|
lww.pay_type payType, |
|
|
|
|
lww.pay_way payWay, |
|
|
|
|
lsoi.create_reconciliation_order_status createReconciliationOrderStatus, |
|
|
|
|
lsoi.create_reconciliation_user_name createReconciliationUserName, |
|
|
|
|
lsoi.create_reconciliation_date createReconciliationDate, |
|
|
|
|
lsoi.cycle cycle, |
|
|
|
|
lsoi.warehouse_fee_interval warehouseFeeInterval, |
|
|
|
|
lsoi.sync_fee_status syncFeeStatus, |
|
|
|
|
lsoi.sync_fee_date syncFeeDate, |
|
|
|
|
lbc.clean_obj_type cleanObjType |
|
|
|
|
from logpm_statistics_order_info lsoi |
|
|
|
|
left join logpm_basicdata_client lbc on lbc.id = lsoi.consignee_id |
|
|
|
|
left join logpm_warehouse_waybill lww on lww.id = lsoi.waybill_id |
|
|
|
|
where 1=1 |
|
|
|
|
and lsoi.create_reconciliation_order_status = 0 |
|
|
|
|
<if test="param.listType == 1"> |
|
|
|
|
and lsoi.type_service != '2' |
|
|
|
|
</if> |
|
|
|
|
<if test="param.listType == 2"> |
|
|
|
|
and lsoi.type_service = '2' |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consignee != null and param.consignee != '' "> |
|
|
|
|
and Locate(#{param.consignee},lww.consignee) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.confirmStatisticsOrder != null"> |
|
|
|
|
and lsoi.confirm_statistics_order = #{param.confirmStatisticsOrder} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.syncFeeSstatus != null"> |
|
|
|
|
and lsoi.sync_fee_status = #{param.syncFeeSstatus} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.signStatus != null"> |
|
|
|
|
and lsoi.sign_status = #{param.signStatus} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.waybillNo != null and param.waybillNo != '' "> |
|
|
|
|
and Locate(#{param.waybillNo},lww.waybill_no) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.orderCode != null and param.orderCode != '' "> |
|
|
|
|
and Locate(#{param.orderCode},lww.order_no) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.shipper != null and param.shipper != '' "> |
|
|
|
|
and Locate(#{param.shipper},lww.shipper) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.departureWarehouseName != null and param.departureWarehouseName != '' "> |
|
|
|
|
and Locate(#{param.departureWarehouseName},lsoi.departure_warehouse_name) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.destinationWarehouseName != null and param.destinationWarehouseName != '' "> |
|
|
|
|
and Locate(#{param.destinationWarehouseName},lsoi.destination_warehouse_name) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.typeService != null"> |
|
|
|
|
and lsoi.type_service = #{param.typeService} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.openTimeStart != null"> |
|
|
|
|
and lww.document_making_time >= #{param.openTimeStart} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.openTimeEnd != null"> |
|
|
|
|
and lww.document_making_time <= #{param.openTimeEnd} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.signTimeStart != null"> |
|
|
|
|
and lsoi.sign_date >= #{param.signTimeStart} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.signTimeEnd != null"> |
|
|
|
|
and lsoi.sign_date <= #{param.signTimeEnd} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.syncFeeDateStart != null"> |
|
|
|
|
and lsoi.sync_fee_date >= #{param.syncFeeDateStart} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.syncFeeDateEnd != null"> |
|
|
|
|
and lsoi.sync_fee_date <= #{param.syncFeeDateEnd} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.shipperPerson != null and param.shipperPerson != '' "> |
|
|
|
|
and Locate(#{param.shipperPerson},lww.shipper_person) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.shipperMoblie != null and param.shipperMoblie != '' "> |
|
|
|
|
and Locate(#{param.shipperMoblie},lww.shipper_mobile) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consigneePerson != null and param.consigneePerson != '' "> |
|
|
|
|
and Locate(#{param.consigneePerson},lww.consignee_name) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consigneeMobile != null and param.consigneeMobile != '' "> |
|
|
|
|
and Locate(#{param.consigneeMobile},lww.consignee_mobile) > 0 |
|
|
|
|
</if> |
|
|
|
|
<if test="param.cleanObjType != null and param.cleanObjType != '' "> |
|
|
|
|
and lbc.clean_obj_type = #{param.cleanObjType} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.payType != null and param.payType != '' "> |
|
|
|
|
and lww.pay_type = #{param.payType} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.payWay != null and param.payWay != '' "> |
|
|
|
|
and lww.pay_way = #{param.payWay} |
|
|
|
|
</if> |
|
|
|
|
and lsoi.destination_warehouse_id in |
|
|
|
|
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
group by lsoi.id |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<delete id="deleteDataByWaybillId" > |
|
|
|
|