|
@@ -109,11 +109,13 @@
|
|
|
a.insurance_fee,
|
|
|
a.other_fee,
|
|
|
b.order_no,
|
|
|
+ c.entity_name as importer_name,
|
|
|
d.contract_no as sales_contract_no,
|
|
|
e.platform_name as agency_enterprise_name
|
|
|
FROM
|
|
|
sales_order_logistics a
|
|
|
join sales_order b on a.order_id = b.id
|
|
|
+ left join importer_entity c on b.importer_id = c.id
|
|
|
left join sales_contract d on b.sale_contract_id = d.id
|
|
|
left join trading_platform e on d.agency_cert_no = e.cert_no
|
|
|
WHERE
|