|
|
|
@ -9060,7 +9060,7 @@ class ExportController extends Controller
|
|
|
|
|
|
|
|
|
|
if ($level == PromoteModel::LEVEL_TEAM_MEMBER) {
|
|
|
|
|
foreach($xlsData as &$item) {
|
|
|
|
|
$item['tfcount'] = $item['tfcount'] . "(" . (isset($item['ioscount']) ? round( ($item['tfcount'] / $item['ioscount']) * 100 , 2) : 0) . ")%";
|
|
|
|
|
$item['tfcount'] = $item['tfcount'] . "(" . (empty($item['ioscount']) ? 0 : round( ($item['tfcount'] / $item['ioscount']) * 100 , 2)) . ")%";
|
|
|
|
|
}
|
|
|
|
|
$xlsCell = array(
|
|
|
|
|
array('account', PromoteModel::$levelArr[$level]."账号"),
|
|
|
|
|