管理后台>推广员管理>公会分成管理--更新

master
chenxiaojun 5 years ago
parent 6b8e277fb1
commit e9f9a421f5

@ -1102,8 +1102,19 @@ function getGameSelleRatioByPromote($promoteId = null, $gameId = null)
if (empty($promoteId) || empty($gameId)) { if (empty($promoteId) || empty($gameId)) {
return false; return false;
} }
$map['promote_id'] = intval($promoteId); $promoteId = intval($promoteId);
$map['game_id'] = intval($gameId); $gameId = intval($gameId);
$promote = M('promote', 'tab_')->find($promoteId);
if (empty($promote)) {
return false;
}
if ($promote['level'] != 1) {
$promoteId = explode('/', trim($promote['chain'], '/'))[0];
$promoteId = intval($promoteId);
}
$map['promote_id'] = $promoteId;
$map['game_id'] = $gameId;
$promoteGameRatio = M('promote_game_ratio', 'tab_')->where($map)->find(); $promoteGameRatio = M('promote_game_ratio', 'tab_')->where($map)->find();
if (empty($promoteGameRatio) || $promoteGameRatio['status'] != 1) { if (empty($promoteGameRatio) || $promoteGameRatio['status'] != 1) {

Loading…
Cancel
Save