Merge branch 'feature/add_item' of wmtx/platform into release

小数点保留两位添加
master
郑永星 4 years ago committed by Gogs
commit d090b707dc

@ -1684,6 +1684,8 @@ class CompanyStatementSetController extends Controller {
$p_info['pay_amount'] = $this->getRelationGameIdPromoteSpend($p_info["p_id"],$p_info['relation_game_id'],$tmp_game_ratio['begintime'],$tmp_game_ratio['endtime']); $p_info['pay_amount'] = $this->getRelationGameIdPromoteSpend($p_info["p_id"],$p_info['relation_game_id'],$tmp_game_ratio['begintime'],$tmp_game_ratio['endtime']);
$p_info['pay_amount'] = round($p_info['pay_amount'],2);
$v['platform_amount'] += $p_info['pay_amount']; $v['platform_amount'] += $p_info['pay_amount'];
$p_info['sum_money']=round($p_info['pay_amount']*$tratio/100,2); //个人等于 结算金额*比例 $p_info['sum_money']=round($p_info['pay_amount']*$tratio/100,2); //个人等于 结算金额*比例
$v['pay_amount'] += $p_info['sum_money']; $v['pay_amount'] += $p_info['sum_money'];
@ -1760,6 +1762,7 @@ class CompanyStatementSetController extends Controller {
} }
$temp_game['pay_amount'] = $this->getRelationGameIdPromoteSpend($p_info["p_id"],$p_info['relation_game_id'],$tmp_game_ratio['begintime'],$tmp_game_ratio['endtime']); $temp_game['pay_amount'] = $this->getRelationGameIdPromoteSpend($p_info["p_id"],$p_info['relation_game_id'],$tmp_game_ratio['begintime'],$tmp_game_ratio['endtime']);
$temp_game['pay_amount'] -=0; $temp_game['pay_amount'] -=0;
$temp_game['pay_amount'] = round($temp_game['pay_amount'],2);
$v['platform_amount'] += $temp_game['pay_amount']; $v['platform_amount'] += $temp_game['pay_amount'];
$temp_game['sum_money']=round($temp_game['pay_amount']*$tratio/100,2); //个人等于 结算金额*比例 $temp_game['sum_money']=round($temp_game['pay_amount']*$tratio/100,2); //个人等于 结算金额*比例
@ -1908,7 +1911,7 @@ class CompanyStatementSetController extends Controller {
"company_name"=>$v['partner'], "company_name"=>$v['partner'],
"company_info"=>json_encode($company_info,JSON_UNESCAPED_UNICODE), "company_info"=>json_encode($company_info,JSON_UNESCAPED_UNICODE),
"statement_money"=>$v['statement_money'], "statement_money"=>$v['statement_money'],
"pay_amount"=>round($v['pay_amount'],2), "pay_amount"=>$v['pay_amount'],
"platform_amount"=>$v['platform_amount'], "platform_amount"=>$v['platform_amount'],
"fine"=>$v['fine'], "fine"=>$v['fine'],
"reward"=>$v['reward'], "reward"=>$v['reward'],

Loading…
Cancel
Save