where("(fine > 0 or reward > 0) and company_type = 2") ->select(); foreach ($data as $key => $value) { $statement_info = json_decode($value['statement_info'],true); $statement_info[0]['game_list'][0]['fine'] = $value['fine']; $statement_info[0]['game_list'][0]['reward'] = $value['reward']; $statement_info = json_encode($statement_info); M("company_lack_statement_info","tab_")->where(['id'=>$value['id']])->save(['statement_info'=>$statement_info]); } echo "success"; } public function changeCompanyGameidToPromoteGameid() { //默认设为 $Promote = M("Promote","tab_"); $PromoteCompany = M("promote_company","tab_"); $p_res = $PromoteCompany->field("id,game_ids")->select(); foreach ($p_res as $k => $v) { if(!empty($v['game_ids'])){ $savedata['game_ids'] = $this->changeRelationGameidToGameid($v['game_ids']); $Promote->where(["company_id"=>$v['id']])->save($savedata); } } echo "changeCompanyGameidToPromoteGameid success"; } public function changeDevelopTypeData() { $is_save = M("promote","tab_")->where(['company_relation'=>2])->save(['company_relation'=>1]); $is_save = M("promote_company","tab_")->where(['develop_type'=>2])->save(['develop_type'=>1]); //更新tab_company_statement_info表的数据 $company_statement = M("company_statement_info","tab_")->field("id,company_info")->where(['company_info'=>['like',"%自主开发及维护%"]])->select(); foreach ($company_statement as $key => $value) { $replace_statement = str_replace('自主开发及维护','自主开发',$value['company_info']); M("company_statement_info","tab_")->where(['id'=>$value['id']])->save(['company_info'=>$replace_statement]); } //更新tab_company_lack_statement_info表的数据 $company_statement = M("company_lack_statement_info","tab_")->field("id,company_info")->where(['company_info'=>['like',"%自主开发及维护%"]])->select(); foreach ($company_statement as $key => $value) { $replace_statement = str_replace('自主开发及维护','自主开发',$value['company_info']); M("company_lack_statement_info","tab_")->where(['id'=>$value['id']])->save(['company_info'=>$replace_statement]); } echo "success\n"; } /** * 公会关系及游戏迁移 * 1. 迁移 公会company_relation到公司 * 2. 游戏 game_ids * 3. 同步公司develop_type到公会 */ public function changeOldCompanyRelation() { //默认设为 $Promote = M("Promote","tab_"); $PromoteCompany = M("promote_company","tab_"); $p_res = $Promote->field("id,account,game_ids,company_relation,company_id")->where("level = 1")->group("company_id")->select(); foreach ($p_res as $k => $v) { if($v['id'] < 1) continue; $savedata =[ "id"=>$v['company_id'] ]; if($v['company_relation'] == 1){ $savedata['develop_type'] = 3; }else{ $savedata['develop_type'] = 2; } $savedata['game_ids'] = $this->changeGameidToRelationGameid($v['game_ids']); $PromoteCompany->save($savedata); $p_data = [ "company_relation"=>$savedata['develop_type'] ]; $Promote->where("company_id = {$v['company_id']}")->save($p_data); } echo "changeOldCompanyRelation success"; } protected function changeGameidToRelationGameid($ids,$type=false) { $rid = M('game', 'tab_')->field('relation_game_id')->where(["id"=>["in",$ids]])->group("relation_game_id")->select(); if($type){ return array_column($rid,'relation_game_id'); }else{ return implode(",",array_column($rid,'relation_game_id')); } } protected function changeRelationGameidToGameid($ids,$type=false) { $rid = M('game', 'tab_')->field('id')->where(["relation_game_id"=>["in",$ids]])->select(); if($type){ return array_column($rid,'id'); }else{ return implode(",",array_column($rid,'id')); } } /** * 优化旧表数值,新表需要将 开票税点及渠道费 * 100 */ public function ChangePartnerField_ChannelRateInvoiceRate() { if(time() > 1596211200){ die("该函数已失效"); } $Partner = M("Partner","tab_"); $dbres = $Partner->field("id,channel_rate,invoice_rate")->select(); foreach ($dbres as $k => &$v) { $v['channel_rate'] = $v['channel_rate']*100; $v['invoice_rate'] = $v['invoice_rate']*100; $Partner->save($v); } echo "ChangePartnerField_ChannelRateInvoiceRate success"; } /** * 新的游戏比例后的数据迁移 * 重复执行将会叠加数据,请勿重复执行 */ public function PromoteToCompanyRatioInit() { //获取旧数据 $oldres = M("promote_game_ratio","tab_")->field("promote_id,relation_game_id,ratio,turnover_ratio,begin_time,end_time")->group("promote_id,relation_game_id")->select(); $adddata = []; $CompanyGameRatio = M("company_game_ratio","tab_"); foreach ($oldres as $k => &$v) { $comoany_id = $this->promoteIdToCompanyId($v['promote_id']); unset($v['promote_id']); $v['company_id'] = $comoany_id ; $adddata[$comoany_id] = $v; } foreach($adddata as $k => &$v){ $map = [ "company_id"=>$v['company_id'], "relation_game_id"=>$v['relation_game_id'] ]; $cres = $CompanyGameRatio->where($map)->find(); if(empty($cres)){ $CompanyGameRatio->add($v); } } echo "PromoteToCompanyRatioInit success"; } protected function promoteIdToCompanyId($promote_id) { return M("promote","tab_")->field("company_id")->where("id='{$promote_id}'")->find()['company_id']; } /** * 财务分类汇总统计旧数据聚合 */ public function FinancialSummaryInit() { //清空数据库 $sql = "truncate table tab_financial_summary"; $res = M()->execute($sql); echo "tab_financial_summary 清空成功".PHP_EOL; //获取19年9月到上个月的所有月份 $monthList = $this->getMonthsList(); $Financial = new FinancialSummarySetController(); foreach ($monthList as $k => $v) { $Financial->setMonthFinancialSummary($v); } } /* *超级签订单新增识别微信或者支付宝2019-12-11 */ public function gameSupersignPaywayInit() { $map = array( "pay_status"=>1, "pay_way"=>0 ); $GameSupersign = M("GameSupersign","tab_"); $dbres = $GameSupersign->field("id,trade_id")->where($map)->select(); $countdb = count($dbres); if($countdb < 1){ die("No initialization required"); } foreach ($dbres as $key => $value) { $savedata = array( "id"=>$value['id'] ); $tmp = (int)substr($value['trade_id'],0,4); if($tmp > 3000){ $savedata['pay_way'] = 2; //微信 }else{ $savedata['pay_way'] = 1;//支付宝 } $tres = $GameSupersign->save($savedata); if($tres === false){ die("DB ERROR"); } } die("init ok"); } /** * mend表新增paymount字段用于统计补链前归属金额 */ public function mendPayamountInit() { //获取符合条件的 $map = array("pay_amount"=>0); $Mend = M("mend","tab_"); $Spend = M("Spend","tab_"); $Mend->where($map)->select(); $dbres = $Mend->field("id,user_account,promote_account,order_time,create_time")->where($map)->select(); $countdb = count($dbres); if($countdb < 1) die("No initialization required"); echo "总需要统计数:{$countdb}".PHP_EOL; foreach ($dbres as $key => $value) { $savedata = array("id"=>$value['id']); $saveflag = false; //设置订单时间 $order_time = $value['order_time']; if($value['order_time'] == 0){ $saveflag = true; $savedata['order_time'] = $value['create_time']; $order_time = $savedata['create_time']; } //获取金额 $smap = array( "user_account"=>$value['user_account'], "promote_account"=>$value['promote_account'], "pay_time"=>array("LT",$order_time), "pay_status"=>1 ); $pay_amount = $Spend->field("IFNULL(sum(pay_amount),0) pay_amount")->where($smap)->find()["pay_amount"]; if($pay_amount > 0){ $saveflag = true; $savedata['pay_amount'] = $pay_amount; } if($saveflag){ $tres = $Mend->save($savedata); if($tres === false){ die("DB ERROR"); } } if( $key % 20 == 0){ $j = (floor)($key/$countdb*100); echo "当前进度:{$j}%".PHP_EOL; } } die("init ok"); } /** * 修改公会内外团关系跟随公司 旧数据跟随 20200318 */ public function promoteCompanyBelongInit() { //获取所有公司 $comoany = M("PromoteCompany","tab_")->field("id,company_belong,develop_type")->select(); $comoany[] = ["id"=>0,"company_belong"=>0,"develop_type"=>0]; //海南万盟 $count = count($comoany); $promote = M("Promote","tab_"); for ($i=0; $i < $count; $i++) { $savedata = array( "company_belong"=>$comoany[$i]['company_belong'], "company_relation"=>$comoany[$i]['develop_type'], ); $tmpid = $comoany[$i]['id']; $promote->where("company_id ='{$tmpid}'")->save($savedata); } die("promoteCompanyBelongInit success"); } //获取公司月结所需要的所有月份截止至上个月 public function getMonthsList() { $start_month = "2019-09"; $temp = strtotime(date('Y-m-01 00:00:00',strtotime('-1 month'))); $end_month = date('Y',$temp)."-".date('m',$temp); $time_arr = []; $begin = new \DateTime($start_month); $end = new \DateTime($end_month); $end = $end->modify('+1 month'); $interval = new \DateInterval('P1M'); $daterange = new \DatePeriod($begin, $interval ,$end); foreach($daterange as $date){ $time_arr[] = $date->format("Y-m"); } return $time_arr; } }