|
@@ -118,8 +118,8 @@
|
|
|
t1.advertiser_name as 'advertiserName',
|
|
|
t2.product_id as 'productId',
|
|
|
t2.product_name as 'productName',
|
|
|
- t1.project_id as 'projectId',
|
|
|
- t1.project_name as 'projectName',
|
|
|
+ IFNULL(t2.project_id,'-') AS 'projectId',
|
|
|
+ IFNULL(t5.project_name,'-') AS 'projectName',
|
|
|
t2.account_id as 'accountId',
|
|
|
t2.account_name as 'accountName',
|
|
|
t2.cash_amount as 'cashAmounts',
|
|
@@ -143,6 +143,7 @@
|
|
|
LEFT JOIN finance_payment_recharge_account t2 ON t1.id = t2.recharge_id
|
|
|
LEFT JOIN ctop_oauth_token t3 ON t2.account_id = t3.account_id
|
|
|
LEFT JOIN ctop_oauth_config t4 ON t3.app_id = t4.app_id
|
|
|
+ LEFT JOIN ctop_project t5 ON t2.project_id = t5.id
|
|
|
<where>
|
|
|
<if test="advertiserName != null and advertiserName != '' ">
|
|
|
and t1.advertiser_name like concat('%',#{advertiserName},'%')
|