|
@@ -455,10 +455,10 @@ FROM (
|
|
|
inventory
|
|
|
) report
|
|
|
LEFT JOIN (select advertiser_id, signature, material_id, filename, video_url
|
|
|
- from `media_api`.bytedance_file_video_get and advertiser_id={account_id}
|
|
|
+ from `media_api`.bytedance_file_video_get where advertiser_id={account_id}
|
|
|
group by advertiser_id, signature, material_id, filename, video_url) video
|
|
|
ON report.account_id = video.advertiser_id AND report.material_id = video.material_id
|
|
|
- LEFT JOIN (select code,material_name from `jeecg-boot`.ctop_material_info where status=1) cmi
|
|
|
+ LEFT JOIN (select code,material_name,cover_url from `jeecg-boot`.ctop_material_info where status=1) cmi
|
|
|
ON video.signature = cmi.code
|
|
|
LEFT JOIN (select material_id, clip_id, shot_id, plan_id, leader_id
|
|
|
from (
|