汇总刷新接口提交

master
zhengyongxing 4 years ago
parent b54b37e99c
commit d6b8fa208c

@ -10,6 +10,40 @@ namespace Admin\Controller;
class OldCountController extends \Think\Controller
{
public function oldRewardChange() {
$data = M("company_statement_info","tab_")
->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_statement_info","tab_")->where(['id'=>$value['id']])->save(['statement_info'=>$statement_info]);
}
$pool_data = M("company_statement_pool",'tab_')->where(['id'=>['in',[22,27]]])->select();
foreach ($pool_data as $key => $value) {
$save = json_decode($value['verify_log'],true);
$save['firstverify_user'] = $save['verify_user'];
$save['firstverify_time'] = $save['verify_time'];
$save = json_encode($save);
M('company_statement_pool','tab_')->where(['id'=>$value['id']])->save(['verify_log'=>$save]);
}
echo "success";
}
public function changeCompanyGameidToPromoteGameid()
{
//默认设为

Loading…
Cancel
Save