|
|
|
@ -237,6 +237,15 @@ class GameController extends ThinkController
|
|
|
|
|
];
|
|
|
|
|
$gameService->saveBaseGame($baseData);
|
|
|
|
|
|
|
|
|
|
M('promote_company', 'tab_')
|
|
|
|
|
->where('1=1')
|
|
|
|
|
->save(['game_ids' => ['exp', 'trim(BOTH "," FROM concat(game_ids, ",", ' . $res['relation_game_id'] . '))']]);
|
|
|
|
|
|
|
|
|
|
$subSql = M('promote_company', 'tab_')->field('id')->where(['company_belong' => ['not in', [1, 2]]])->select(false);
|
|
|
|
|
M('promote', 'tab_')
|
|
|
|
|
->where(['_string' => 'company_id in (' . $subSql . ')'])
|
|
|
|
|
->save(['game_ids' => ['exp', 'trim(BOTH "," FROM concat(game_ids, ",", ' . $res['id'] . '))']]);
|
|
|
|
|
|
|
|
|
|
\Think\Log::actionLog('Game/add', 'Game', 1);
|
|
|
|
|
//操作日志
|
|
|
|
|
addOperationLog(array(
|
|
|
|
@ -312,6 +321,11 @@ class GameController extends ThinkController
|
|
|
|
|
];
|
|
|
|
|
$gameService->saveBaseGame($baseData);
|
|
|
|
|
|
|
|
|
|
$subSql = M('promote_company', 'tab_')->field('id')->where(['company_belong' => ['in', [1, 2]]])->select(false);
|
|
|
|
|
M('promote', 'tab_')
|
|
|
|
|
->where(['_string' => 'company_id in (' . $subSql . ')'])
|
|
|
|
|
->save(['game_ids' => ['exp', 'trim(BOTH "," FROM concat(game_ids, ",", ' . $res['id'] . '))']]);
|
|
|
|
|
|
|
|
|
|
addOperationLog(array(
|
|
|
|
|
"op_type"=>0,
|
|
|
|
|
"key"=>$_POST['game_name'],
|
|
|
|
|