|
|
@@ -13,64 +13,129 @@ use Request;
|
|
|
*/
|
|
|
class SportsBaseController extends Controller {
|
|
|
|
|
|
- public function score(Request $req) {
|
|
|
- $request['id'] = isset($req->id) ? trim($req->id) : null;
|
|
|
+ public function score(Req $req) {
|
|
|
+ $request['name_chinese'] = isset($req->name_chinese) ? trim($req->name_chinese) : '-1';
|
|
|
+ $request['home_team'] = isset($req->home_team) ? trim($req->home_team) : null;
|
|
|
+ $request['match_date'] = isset($req->match_date) ? trim($req->match_date) : null;
|
|
|
+ $request['status'] = isset($req->status) ? trim($req->status) : '-1';
|
|
|
+ $request['sureblurs'] = isset($req->sureblurs) ? $req->sureblurs : 'on';
|
|
|
+ $data = \App\Models\BaseLeague::select('id','lg_id','name_chinese')->get();
|
|
|
+ $request['league'] = $data;
|
|
|
$dt = \App\Lib\DataTable\DataTable::init();
|
|
|
$dt->setDataSource('/admin/SportsBase/info');
|
|
|
$dt->setLang('sportsbase');
|
|
|
- $dt->addColsFields('id', array('templet' => '#userdetail', 'sort' => false, 'width' => 70));
|
|
|
- $dt->addColsFields('lg_id', array('templet' => '#userdetail', 'sort' => false, 'width' => 70));
|
|
|
- $dt->addColsFields('name_chinese', array('templet' => '#userdetail', 'sort' => false, 'width' => 160));
|
|
|
- $dt->addColsFields('home_team', array('templet' => '#userdetail', 'sort' => false, 'width' => 120));
|
|
|
- $dt->addColsFields('guest_team', array('templet' => '#userdetail', 'sort' => false, 'width' => 120));
|
|
|
- $dt->addColsFields('match_date');
|
|
|
- $dt->addColsFields('match_time');
|
|
|
- $dt->addColsFields('status', array('templet' => '#status', 'sort' => false, 'width' => 150,'align' => 'left'));
|
|
|
- $arr[] = 'view';
|
|
|
+ $dt->addColsFields('match_id', array('templet' => '#userdetail', 'sort' => true, 'width' => 100));
|
|
|
+ $dt->addColsFields('lg_id', array('templet' => '#userdetail', 'sort' => true, 'width' => 80));
|
|
|
+ $dt->addColsFields('name_chinese', array('templet' => '#userdetail', 'sort' => false, 'width' => 200));
|
|
|
+ $dt->addColsFields('home_guest', array('templet' => '#userdetail', 'sort' => false, 'width' => 260));
|
|
|
+// $dt->addColsFields('home_team', array('templet' => '#userdetail', 'sort' => false, 'width' => 130));
|
|
|
+// $dt->addColsFields('guest_team', array('templet' => '#userdetail', 'sort' => false, 'width' => 130));
|
|
|
+ $dt->addColsFields('match_date', array('templet' => '#userdetail', 'sort' => true, 'width' => 130));
|
|
|
+ $dt->addColsFields('match_time', array('templet' => '#userdetail', 'sort' => true, 'width' => 130));
|
|
|
+ $dt->addColsFields('status', array('templet' => '#userdetail', 'sort' => false, 'width' => 150));
|
|
|
+ //$arr[] = 'view';
|
|
|
+ if (checkRriv('/admin/SportsBase/edit')) {
|
|
|
+ $arr[] = 'edit';
|
|
|
+ }
|
|
|
+ if (checkRriv('/admin/SportsBase/odds')) {
|
|
|
+ $arr[] = 'odds';
|
|
|
+ }
|
|
|
+ $dt->setToolBar($arr, array('width' => 200));
|
|
|
$dt->enableCheckBox();
|
|
|
return view('sports/base_match', $dt->render($request));
|
|
|
}
|
|
|
|
|
|
- function info() {
|
|
|
- $db = new \App\Models\SportsBase();
|
|
|
- $data = $db->getInfos();
|
|
|
- return \App\Lib\DataTable\DataTable::init()->toJson($data);
|
|
|
- }
|
|
|
-
|
|
|
- //进行中/已结束
|
|
|
- function UserStart(Req $req) {
|
|
|
- $id = $req->id;
|
|
|
- $status = is_numeric($req->status) ? intval($req->status) : '';
|
|
|
- if (empty($id) || !is_numeric($status)) {
|
|
|
- return responseToJson(-2020100102);
|
|
|
- }
|
|
|
- $u_db = new \App\Models\SportsBase;
|
|
|
- $data = array(
|
|
|
- 'status' => $status,
|
|
|
- );
|
|
|
- $res = $u_db->updateInfos($data, $id);
|
|
|
- return responseToJson($res);
|
|
|
+ function info(Req $req) {
|
|
|
+ $page = Request::has('page') ? Request::get('page') : '';
|
|
|
+ $list = Request::has('limit') ? Request::get('limit') : 10;
|
|
|
+ $name_chinese = Request::has('name_chinese') ? Request::get('name_chinese') : '';
|
|
|
+ $home_team = Request::has('home_team') ? Request::get('home_team') : '';
|
|
|
+ $match_date = Request::has('match_date') ? Request::get('match_date') : '';
|
|
|
+ //$match_date = $req->input('match_date');
|
|
|
+// if(!empty($match_date)){
|
|
|
+// return 2;
|
|
|
+// }
|
|
|
+ $status = Request::has('status') ? Request::get('status') : '';
|
|
|
+ $sureblur = Request::has('sureblurs') ? Request::get('sureblurs') : 'off';
|
|
|
+ $where = array();
|
|
|
+ $orwhere = array();
|
|
|
+ if (!empty($name_chinese) && $name_chinese!=-1) {
|
|
|
+ $where[] = array('st_bq_league.name_chinese', '=', $name_chinese);
|
|
|
+ }
|
|
|
+ if (!empty($home_team)) {
|
|
|
+ if (empty($sureblur) || $sureblur == 'off') {
|
|
|
+ $where[] = array('st_bq_competition.home_team', 'like', '%' . $home_team . '%');
|
|
|
+ $orwhere[] = array('st_bq_competition.guest_team', 'like', '%' . $home_team . '%');
|
|
|
+ } else {
|
|
|
+ $where[] = array('st_bq_competition.home_team', '=', $home_team);
|
|
|
+ $orwhere[] = array('st_bq_competition.guest_team', '=', $home_team);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!empty($match_date)) {
|
|
|
+// $where[] = array('st_bq_competition.match_date', '=', '2019-04-13');
|
|
|
+ $where[] = array('st_bq_competition.match_date', '=', $match_date);
|
|
|
+ }
|
|
|
+ if ($status != -1) {
|
|
|
+ $where[] = array('st_bq_competition.status', '=', $status);
|
|
|
+ }
|
|
|
+ $newapp = new \App\Models\SportsBase();
|
|
|
+ $data = $newapp->getinfo($list, $page, $where,$orwhere);
|
|
|
+ return \App\Lib\DataTable\DataTable::init()->toJson($data['data'], $data['total']);
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ *获取所有足球联赛信息
|
|
|
+ */
|
|
|
function getParent() {
|
|
|
- $data = \App\Models\BaseLeague::select('id','name_chinese')->get();
|
|
|
+ $data = \App\Models\BaseLeague::select('id','lg_id','name_chinese')->get();
|
|
|
if (!$data) {
|
|
|
return;
|
|
|
}
|
|
|
return $data->toArray();
|
|
|
}
|
|
|
-
|
|
|
+ /**
|
|
|
+ *获取所有国家信息
|
|
|
+ */
|
|
|
+ function getCountry() {
|
|
|
+ $data = \App\Models\Country::select('country_id','name_chinese')->get();
|
|
|
+ if (!$data) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ for($i=0;$i<count($data);$i++){
|
|
|
+ $data[$i]->home_country_name = $data[$i]->name_chinese;
|
|
|
+ $data[$i]->home_country_id = $data[$i]->country_id;
|
|
|
+ $data[$i]->guest_country_name = $data[$i]->name_chinese;
|
|
|
+ $data[$i]->guest_country_id = $data[$i]->country_id;
|
|
|
+ }
|
|
|
+ return $data->toArray();
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *获取国家的球队信息
|
|
|
+ */
|
|
|
+ function getteam() {
|
|
|
+ $countryid = $_GET["countryid"];
|
|
|
+ $gametype = \App\Models\StGameType::where('game_code','bq')->first();
|
|
|
+ $res = \App\Models\Team::where('country_id',$countryid)->where('game_type_id',$gametype->id)->get();
|
|
|
+ return json_encode($res);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *添加赛事
|
|
|
+ */
|
|
|
function add(Req $req) {
|
|
|
if (!$req->isMethod('post')) {
|
|
|
- $data = $this->getParent();
|
|
|
+ $parents = $this->getParent();
|
|
|
+ $country = $this->getCountry();
|
|
|
+ $countrys = $this->getCountry();
|
|
|
$lange = trans('menu');
|
|
|
- foreach ($data as $k => $v) {
|
|
|
- $arr = trim($data[$k]['name_chinese']);
|
|
|
+ foreach ($parents as $k => $v) {
|
|
|
+ $arr = trim($parents[$k]['name_chinese']);
|
|
|
if (isset($lange[$arr])) {
|
|
|
- $data[$k]['name']=$lange[$arr];
|
|
|
+ $parents[$k]['name']=$lange[$arr];
|
|
|
}
|
|
|
}
|
|
|
- return view('sports.base_form', array('parents' => $data));
|
|
|
+ $data['parents'] = $parents;
|
|
|
+ $data['country'] = $country;
|
|
|
+ $data['countrys'] = $countrys;
|
|
|
+ return view('sports.base_form', $data);
|
|
|
} else {
|
|
|
$model = new \App\Models\SportsBase();
|
|
|
$model->home_team = $req->input('home_team');
|
|
|
@@ -78,13 +143,374 @@ class SportsBaseController extends Controller {
|
|
|
$model->lg_id = $req->input('parent_id');
|
|
|
$model->match_date = $req->input('match_date');
|
|
|
$model->match_time = $req->input('match_time');
|
|
|
- //$model->match_score = $req->input('match_score');
|
|
|
$model->status = $req->input('status');
|
|
|
+ $model->match_id = time() ;
|
|
|
+ $model->ctime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->utime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->tag = mt_rand(0,100) ;
|
|
|
+ $model->source = 'user-defined';
|
|
|
+
|
|
|
+ $model->save();
|
|
|
+ return responseToJson(1);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function view(Req $req) {
|
|
|
+ return $this->edit($req);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ *修改赛事
|
|
|
+ */
|
|
|
+ function edit(Req $req) {
|
|
|
+ $id = $req->id;
|
|
|
+ if (intval($id) < 1) {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ if (!$req->isMethod('post')) {
|
|
|
+ $country = $this->getCountry();
|
|
|
+ $countrys = $this->getCountry();
|
|
|
+ $data = \App\Models\SportsBase::where('id', $id)->first();
|
|
|
+ if (!$data) {
|
|
|
+ return -2;
|
|
|
+ }
|
|
|
+ $name_chinese = \App\Models\BaseLeague::where('lg_id', $data->lg_id)->first();
|
|
|
+// $home_team = \App\Models\Team::where('team_name_cn', $data->home_team)->first();
|
|
|
+// $guest_team = \App\Models\Team::where('team_name_cn', $data->guest_team)->first();
|
|
|
+// $home_country = \App\Models\Country::where('country_id', $home_team->country_id)->first();
|
|
|
+// $guest_country = \App\Models\Country::where('country_id', $guest_team->country_id)->first();
|
|
|
+ $data->name_chinese = $name_chinese->name_chinese;
|
|
|
+// $data->home_country_id = $home_country->country_id;
|
|
|
+// $data->guest_country_id = $guest_country->country_id;
|
|
|
+ $data = $data->toArray();
|
|
|
+ $data['parents'] = $this->getParent();
|
|
|
+ $data['country'] = $country;
|
|
|
+ $data['countrys'] = $countrys;
|
|
|
|
|
|
+
|
|
|
+ //$lange = trans('menu');
|
|
|
+ foreach ($data['parents'] as $k => $v) {
|
|
|
+ $arr = trim($data['parents'][$k]['name_chinese']);
|
|
|
+ if (isset($lange[$arr])) {
|
|
|
+ $data['parents'][$k]['name_chinese']=$lange[$arr];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return view('sports.base_form', $data);
|
|
|
+ } else {
|
|
|
+ $model = new \App\Models\SportsBase();
|
|
|
+ $model->id = $req->input('id');
|
|
|
+ $model = $model::find($model->id);
|
|
|
+ $model->home_team = $req->input('home_team');
|
|
|
+ $model->guest_team = $req->input('guest_team');
|
|
|
+// if(gettype($req->input('parent_id'))=='integer'){
|
|
|
+// $model->lg_id = $req->input('parent_id');
|
|
|
+// }else{
|
|
|
+// $model->name_chinese = $req->input('parent_id');
|
|
|
+// $res = \App\Models\SportsLeague::where('name_chinese',$model->name_chinese)->first();
|
|
|
+// $model->lg_id = $res->lg_id;
|
|
|
+// }
|
|
|
+ $model->lg_id = $req->input('parent_id');
|
|
|
+ $model->match_date = $req->input('match_date');
|
|
|
+ $model->match_time = $req->input('match_time');
|
|
|
+ $model->status = $req->input('status');
|
|
|
+ $model->ctime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->utime = date('Y-m-d H:i:s',time());
|
|
|
$model->save();
|
|
|
return responseToJson(1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *删除赛事
|
|
|
+ */
|
|
|
+ public function delete(Req $req) {
|
|
|
+ $id = $req->input('id');
|
|
|
+ if (empty($id)) {
|
|
|
+ return responseToJson(-2001); //id������
|
|
|
+ }
|
|
|
+ $ids = explode(',', $id);
|
|
|
+ if (!is_array($ids) && intval($ids) < 0) {
|
|
|
+ return responseToJson(-2002); //id����
|
|
|
+ }
|
|
|
+ if (is_array($ids) && count($ids) > 0) {
|
|
|
+ foreach ($ids as $k => $v) {
|
|
|
+ if (intval($v) < 1) {
|
|
|
+ unset($ids[$k]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ $rows = \App\Models\SportsBase::whereIn('id', $ids)->delete();
|
|
|
+ if (!$rows) {
|
|
|
+ return responseToJson(-2003); //id����
|
|
|
+ }
|
|
|
+ return responseToJson(1, trans('menu.delete_success')); //id����
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function odds(Req $req)
|
|
|
+ {
|
|
|
+ $cp_id = $req->id;
|
|
|
+ $request['status'] = isset($req->status) ? trim($req->status) : '-1';
|
|
|
+ $request['p_code'] = isset($req->p_code) ? trim($req->p_code) : '-1';
|
|
|
+ $request['id'] = isset($req->id) ? trim($req->id) : null;
|
|
|
+ $newapp = \App\Models\SportsBase::where('id',$request['id'])->first();
|
|
|
+ // $match_id = $newapp->match_id;
|
|
|
+ if(empty($newapp)){
|
|
|
+ $match_id = $req->input('cp_id');
|
|
|
+ }else{
|
|
|
+ $match_id = $newapp->match_id;
|
|
|
+ }
|
|
|
+ $request['match_id'] = isset($match_id) ? trim($match_id) : null;
|
|
|
+ $data = \App\Models\Matchcode::where('p_id','0')->where('game_type','bq')->get();
|
|
|
+ $request['pcode'] = $data;
|
|
|
+ $dt = \App\Lib\DataTable\DataTable::init();
|
|
|
+ $dt->setDataSource('/admin/SportsBase/oddsinfo?match_id='.$match_id.'');
|
|
|
+ $dt->setLang('sportssoccer');
|
|
|
+ $dt->addColsFields('id', array('templet' => '#userdetail', 'sort' => true, 'width' => 80));
|
|
|
+ $dt->addColsFields('match_id', array('templet' => '#userdetail', 'sort' => true, 'width' => 100));
|
|
|
+ $dt->addColsFields('odds_code_cn', array('templet' => '#userdetail', 'sort' => false, 'width' => 200));
|
|
|
+ $dt->addColsFields('condition', array('templet' => '#userdetail', 'sort' => false, 'width' => 80));
|
|
|
+ $dt->addColsFields('odds', array('templet' => '#userdetail', 'sort' => false, 'width' => 80));
|
|
|
+// $dt->addColsFields('p_id', array('templet' => '#userdetail', 'sort' => false, 'width' => 100));
|
|
|
+ $dt->addColsFields('p_code_cn', array('templet' => '#userdetail', 'sort' => false, 'width' => 120));
|
|
|
+ $dt->addColsFields('max', array('templet' => '#userdetail', 'sort' => false, 'width' => 100));
|
|
|
+ $dt->addColsFields('min', array('templet' => '#userdetail', 'sort' => false, 'width' => 100));
|
|
|
+ $dt->addColsFields('status', array('templet' => '#userdetail', 'sort' => false, 'width' => 80));
|
|
|
+ $dt->addColsFields('expire_time', array('templet' => '#userdetail', 'sort' => false, 'width' => 100));
|
|
|
+ if (checkRriv('/admin/SportsBase/oddsedit?id='.$cp_id.'')) {
|
|
|
+ $arr[] = 'oddsedit';
|
|
|
+ }
|
|
|
+ $dt->setToolBar($arr, array('width' => 150));
|
|
|
+ $dt->enableCheckBox();
|
|
|
+
|
|
|
+ return view('sports/base_odds', $dt->render($request));
|
|
|
+ }
|
|
|
+
|
|
|
+ function oddsinfo(Req $req){
|
|
|
+ $lange = trans('sportsoddscode');
|
|
|
+ $match_id = $req->match_id;
|
|
|
+ $p_code = Request::has('p_code') ? Request::get('p_code') : '';
|
|
|
+ $status = Request::has('status') ? Request::get('status') : '';
|
|
|
+ $where = array();
|
|
|
+ if (!empty($p_code) && $p_code!=-1) {
|
|
|
+ $where[] = array('st_bq_odds.p_code', '=', $p_code);
|
|
|
+ }
|
|
|
+ if (!empty($status) && $status != -1) {
|
|
|
+ $where[] = array('st_bq_odds.status', '=', $status);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (intval($match_id) < 1) {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ $new = new \App\Models\BaseOdds();
|
|
|
+ $data = $new->getodds($match_id,$where);
|
|
|
+
|
|
|
+ foreach ($data as $k => $v) {
|
|
|
+ $odds_code = trim($data[$k]['odds_code']);
|
|
|
+ $p_code = trim($data[$k]['p_code']);
|
|
|
+ if (isset($lange[$odds_code])) {
|
|
|
+ $data[$k]['odds_code']=$lange[$odds_code];
|
|
|
+ }
|
|
|
+ if (isset($lange[$p_code])) {
|
|
|
+ $data[$k]['p_code']=$lange[$p_code];
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ return \App\Lib\DataTable\DataTable::init()->toJson($data);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *根据选择的父级赔率代码获取对应的子级赔率代码
|
|
|
+ */
|
|
|
+ function getoddscode() {
|
|
|
+ $p_code = $_GET["pcode"];
|
|
|
+ $res = \App\Models\Matchcode::where('odds_code',$p_code)->first();
|
|
|
+ $codedata = \App\Models\Matchcode::where('p_id',$res->id)->get();
|
|
|
+ return json_encode($codedata);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *添加赔率
|
|
|
+ */
|
|
|
+ function addodds(Req $req) {
|
|
|
+ $pcodedata = \App\Models\Matchcode::where('p_id','0')->where('game_type','bq')->get();
|
|
|
+ for($i=0;$i<count($pcodedata);$i++){
|
|
|
+ $pcodedata[$i]->p_code = $pcodedata[$i]->odds_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!$req->isMethod('post')) {
|
|
|
+ $cp_id = $_SERVER['QUERY_STRING']; //获取url中的参数--赛事id
|
|
|
+ $data = ["match_id"=>$cp_id];
|
|
|
+ $data['pcode'] = $pcodedata;
|
|
|
+ return view('sports.base_odds_form',$data);
|
|
|
+ } else {
|
|
|
+ $model = new \App\Models\BaseOdds();
|
|
|
+ $date = new \App\Models\BaseOddsRecord();
|
|
|
+ $model->match_id = $req->input('match_id');
|
|
|
+ $model->odds_code = $req->input('code');
|
|
|
+ $model->status = $req->input('status');
|
|
|
+ $model->p_code = $req->input('pcode');
|
|
|
+ $res = \App\Models\Matchcode::where('odds_code',$model->p_code)->first();
|
|
|
+ $model->p_id = $res->id;
|
|
|
+ $result = \App\Models\BaseOdds::where('odds_code',$model->odds_code)->where('p_id',$model->p_id)->orderby('utime','desc')->first();
|
|
|
+ if(!empty($result)){
|
|
|
+ $sort = $result->sort;
|
|
|
+ $model->sort = $sort+1;
|
|
|
+ }else{
|
|
|
+ $model->sort = 0;
|
|
|
+ }
|
|
|
+ $model->odds = $req->input('odds');
|
|
|
+ $model->condition = $req->input('condition');
|
|
|
+ $model->max = $req->input('max');
|
|
|
+ $model->min = $req->input('min');
|
|
|
+ $model->ctime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->utime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->sole = md5($model->match_id.$model->odds_code.$model->sort.$model->p_id.$model->ctime);
|
|
|
+ $model->source = 'user-defined';
|
|
|
+ $lg_id = \App\Models\SportsBase::where('match_id',$model->match_id)->first();
|
|
|
+ if(!empty($lg_id)){
|
|
|
+ $model->lg_id = $lg_id->lg_id;
|
|
|
+ }
|
|
|
+ $model->expire_time = $req->input('expire_time');
|
|
|
+ $model->odds_only = md5($model->match_id.$model->odds_code.$model->ctime);
|
|
|
+
|
|
|
+ $date->match_id = $model->match_id;
|
|
|
+ $date->odds_code = $model->odds_code;
|
|
|
+ $date->status = $model->status;
|
|
|
+ $date->p_code = $model->p_code;
|
|
|
+ $date->p_id = $model->p_id;
|
|
|
+ $record = \App\Models\BaseOddsRecord::where('odds_code',$date->odds_code)->where('p_id',$date->p_id)->orderby('utime','desc')->first();
|
|
|
+ if(!empty($record)){
|
|
|
+ $sort = $record->sort;
|
|
|
+ $date->sort = $sort+1;
|
|
|
+ }else{
|
|
|
+ $date->sort = 0;
|
|
|
+ }
|
|
|
+ $date->odds = $model->odds;
|
|
|
+ $date->condition = $model->condition;
|
|
|
+ $date->max = $model->max;
|
|
|
+ $date->min = $model->min;
|
|
|
+ $date->ctime = $model->ctime;
|
|
|
+ $date->utime = $model->utime;
|
|
|
+ $date->source = $model->source;
|
|
|
+ $date->lg_id = $model->lg_id;
|
|
|
+ $date->odds_only = $model->odds_only;
|
|
|
+
|
|
|
+ $model->save();
|
|
|
+ $date->save();
|
|
|
+ return responseToJson(1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *修改赔率
|
|
|
+ */
|
|
|
+ function oddsedit(Req $req) {
|
|
|
+ $pcodedata = \App\Models\Matchcode::where('p_id','0')->where('game_type','bq')->get();
|
|
|
+ for($i=0;$i<count($pcodedata);$i++){
|
|
|
+ $pcodedata[$i]->p_code = $pcodedata[$i]->odds_code;
|
|
|
+ }
|
|
|
+ $id = $req->id;
|
|
|
+ if (intval($id) < 1) {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ if (!$req->isMethod('post')) {
|
|
|
+
|
|
|
+ $data = \App\Models\BaseOdds::where('id', $id)->first();
|
|
|
+ if (!$data) {
|
|
|
+ return -2;
|
|
|
+ }
|
|
|
+ $res = \App\Models\Matchcode::where('odds_code', $data->odds_code)->where('game_type','bq')->first();
|
|
|
+ $data->odds_name = $res->odds_name;
|
|
|
+
|
|
|
+ $expire_time = $data->expire_time; //2019-04-15 21:10:00
|
|
|
+ $str1 = str_replace(" ","T",$expire_time);
|
|
|
+ $data->expire_time = $str1;
|
|
|
+
|
|
|
+ $odds_code = trim($data->odds_code);
|
|
|
+ $p_code = trim($data->p_code);
|
|
|
+ if (isset($lange[$odds_code])) {
|
|
|
+ $data->odds_code_cn=$lange[$odds_code];
|
|
|
+ }
|
|
|
+ if (isset($lange[$p_code])) {
|
|
|
+ $data->p_code_cn=$lange[$p_code];
|
|
|
+ }
|
|
|
+ $data = $data->toArray();
|
|
|
+
|
|
|
+ $data['pcode'] = $pcodedata;
|
|
|
+ //$data['code'] = $codedata;
|
|
|
+
|
|
|
+ return view('sports.base_odds_form', $data);
|
|
|
+ } else {
|
|
|
+ $model = new \App\Models\BaseOdds();
|
|
|
+ $data = new \App\Models\BaseOddsRecord();
|
|
|
+ $model->id = $req->input('id');
|
|
|
+ $model = $model::find($model->id);
|
|
|
+ $model->odds_code = $req->input('code');
|
|
|
+ $model->status = $req->input('status');
|
|
|
+ $model->p_code = $req->input('pcode');
|
|
|
+ $model->odds = $req->input('odds');
|
|
|
+ $model->condition = $req->input('condition');
|
|
|
+ $model->max = $req->input('max');
|
|
|
+ $model->min = $req->input('min');
|
|
|
+ $model->ctime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->utime = date('Y-m-d H:i:s',time());
|
|
|
+ $model->expire_time = $req->input('expire_time');
|
|
|
+ $model->odds_only = md5($model->match_id.$model->odds_code.$model->ctime);
|
|
|
+
|
|
|
+ $result = \App\Models\BaseOdds::where('id',$model->id)->first();
|
|
|
+ $data->match_id = $result->match_id;
|
|
|
+ $data->odds_code = $model->odds_code;
|
|
|
+ $data->status = $model->status;
|
|
|
+ $data->p_code = $model->p_code;
|
|
|
+ $data->p_id = $model->p_id;
|
|
|
+ $record = \App\Models\BaseOddsRecord::where('match_id',$data->match_id)->where('odds_code',$data->odds_code)->where('p_id',$data->p_id)->orderby('utime','desc')->first();
|
|
|
+ if(!empty($record)){
|
|
|
+ $sort = $record->sort;
|
|
|
+ $data->sort = $sort+1;
|
|
|
+ }else{
|
|
|
+ $data->sort = 0;
|
|
|
+ }
|
|
|
+ $data->odds = $model->odds;
|
|
|
+ $data->condition = $model->condition;
|
|
|
+ $data->max = $model->max;
|
|
|
+ $data->min = $model->min;
|
|
|
+ $data->ctime = $model->ctime;
|
|
|
+ $data->utime = $model->utime;
|
|
|
+ $data->source = $result->source;
|
|
|
+ $data->lg_id = $result->lg_id;
|
|
|
+ $data->odds_only = $result->odds_only;
|
|
|
+
|
|
|
+ $model->save();
|
|
|
+ $data->save();
|
|
|
+ return responseToJson(1);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ *删除赔率
|
|
|
+ */
|
|
|
+ public function oddsdelete(Req $req) {
|
|
|
+ $id = $req->input('id');
|
|
|
+ if (empty($id)) {
|
|
|
+ return responseToJson(-2001); //id������
|
|
|
+ }
|
|
|
+ $ids = explode(',', $id);
|
|
|
+ if (!is_array($ids) && intval($ids) < 0) {
|
|
|
+ return responseToJson(-2002); //id����
|
|
|
+ }
|
|
|
+ if (is_array($ids) && count($ids) > 0) {
|
|
|
+ foreach ($ids as $k => $v) {
|
|
|
+ if (intval($v) < 1) {
|
|
|
+ unset($ids[$k]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
+ $rows = \App\Models\BaseOdds::whereIn('id', $ids)->delete();
|
|
|
+ if (!$rows) {
|
|
|
+ return responseToJson(-2003); //id����
|
|
|
}
|
|
|
+ return responseToJson(1, trans('menu.delete_success')); //id����
|
|
|
|
|
|
}
|
|
|
}
|