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

master
chenxiaojun 5 years ago
parent 75faf37260
commit 116d1891a1

@ -1102,15 +1102,17 @@ function getGameSelleRatioByPromote($promoteId = null, $gameId = null)
if (empty($promoteId) || empty($gameId)) {
return false;
}
$promoteId = intval($promoteId);
$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);
$chain = explode('/', trim($promote['chain'], '/'));
$promoteId = empty($chain[0]) ? 0 : intval($chain[0]);
}
$map['promote_id'] = $promoteId;

Loading…
Cancel
Save