|
|
|
@ -1187,7 +1187,7 @@ class StatisticsController extends ThinkController {
|
|
|
|
|
} else {
|
|
|
|
|
$list = M('promote', 'tab_')->alias('p')
|
|
|
|
|
->field('p.id, p.level, p.account, count(p2.id) as lowerCount, count(if(pdl.type = 1, 1, null)) as signCount, count(if(pdl.type = 2, 1, null)) as tfCount, count(if(pdl.type = 3, 1, null)) as superSignCount')
|
|
|
|
|
->join("tab_promote p2 on p2.chain like CONCAT(p.chain, p.id, '/%')", 'left')
|
|
|
|
|
->join("tab_promote p2 on p2.chain like CONCAT(p.chain, p.id, '/%') and p2.level=".($level+1), 'left')
|
|
|
|
|
->join("tab_package_download_log pdl on pdl.promote_id = p2.id $pdlMap", 'left')
|
|
|
|
|
->where($map)
|
|
|
|
|
->page($p, $row)
|
|
|
|
@ -1196,7 +1196,7 @@ class StatisticsController extends ThinkController {
|
|
|
|
|
|
|
|
|
|
$total = M('promote', 'tab_')->alias('p')
|
|
|
|
|
->field('count(p2.id) as lowerCount, count(if(pdl.type = 1, 1, null)) as signCount, count(if(pdl.type = 2, 1, null)) as tfCount, count(if(pdl.type = 3, 1, null)) as superSignCount')
|
|
|
|
|
->join("tab_promote p2 on p2.chain like CONCAT(p.chain, p.id, '/%')", 'left')
|
|
|
|
|
->join("tab_promote p2 on p2.chain like CONCAT(p.chain, p.id, '/%') and p2.level=".($level+1), 'left')
|
|
|
|
|
->join("tab_package_download_log pdl on pdl.promote_id = p2.id $pdlMap", 'left')
|
|
|
|
|
->where($map)
|
|
|
|
|
->select();
|
|
|
|
|