diff --git a/Application/Admin/Controller/TimingController.class.php b/Application/Admin/Controller/TimingController.class.php index e34aee1b6..3c7825d35 100644 --- a/Application/Admin/Controller/TimingController.class.php +++ b/Application/Admin/Controller/TimingController.class.php @@ -872,7 +872,7 @@ class TimingController extends AdminController { // $company_data = M('promote_company','tab_') ->field("company_belong") - ->where("id=$company_id") + ->where("id={$company_id}") ->find(); // // $game_ratio_mould = M("game_ratio_mould","tab_") @@ -1211,6 +1211,10 @@ class TimingController extends AdminController { $ungame_ids = explode(',',$cv['game_ids']); + if ($cv['end_time'] == 0 || !$cv['end_time']) { + $cv['end_time'] = 99999999999; + } + $use_begin = 0; $use_end = 0; if ($value['is_settlement'] == '0') { @@ -1347,12 +1351,12 @@ class TimingController extends AdminController { // } $promote_data[$key]['is_settlement'] = $value['is_settlement']; + $promote_data[$key]['promote_amount'] += $specialAmount; + $promote_data[$key]['company_tax'] = ($value['pay_amount']-$promote_data[$key]['cp_amount']- $promote_data[$key]['promote_amount'])*($tax/100); //毛利 - $promote_data[$key]['company_profit'] = $value['pay_amount']-$promote_data[$key]['cp_amount']-$promote_data[$key]['promote_amount']-$promote_data[$key]['channel_amount']-$promote_data[$key]['company_tax']-$specialAmount; - - $promote_data[$key]['promote_amount'] += $specialAmount; + $promote_data[$key]['company_profit'] = $value['pay_amount']-$promote_data[$key]['cp_amount']-$promote_data[$key]['promote_amount']-$promote_data[$key]['channel_amount']-$promote_data[$key]['company_tax']; // dump($promote_data[$key]['promote_amount']); if ($value['promote_id'] == 0) { // $promote_data[$key]['promote_account']='官方渠道'; diff --git a/Public/Admin/excel/up_stream.xls b/Public/Admin/excel/up_stream.xls index 8f56a516d..8280dd9be 100644 Binary files a/Public/Admin/excel/up_stream.xls and b/Public/Admin/excel/up_stream.xls differ