本帖最后由 zhileyuan 于 2011-12-1 16:57 编辑
关于工资发放的问题,如果管理次数没有达到标准次数,系统就不会给版主发工资,但是给版主的提醒性内却被告知发放了基本工资,大家请修正一下!把发放基本工资的部分改为不能发放!(将“团队只能给您发放基本工资 '.$moneyname.' + '.$moneynum.' 个。”改为“团队不能给您发放工资奖励”)
按照这个思路,建议LZ在版主工资查看页面将不达标的版主工资改为0.---此部分尚未找到如何计算的
- if( $modactions >= $gjdata ){
- notification_add($uid,0,'尊敬的 '.$_G['setting']['bbname'].' 管理成员 '.$username.',这是您在 '.$date.' 月份的管理报告。<br>您出勤了 '.$thismonth.' 小时,您发了 '.$monthpost.' 篇帖子,其中精华帖 '.$digestposts.' 篇,您管理操作了 '.$modactions.' 次。<br>根据您在 '.$date.' 月份的表现 '.$_G['setting']['bbname'].' 团队给您发放基本工资加奖励合计 '.$moneyname.' + '.$alldata.' 个。<br>( 计算公式: 基本工资 '.$moneyname.' '.$moneynum.' 个 + 发帖数 '.$monthpost.' x '.$monthpostnum.' + 管理数 '.$modactions.' x '.$modactionnum.' + 精华帖 '.$digestposts.' x '.$digestpostnum.' + 出勤 '.$thismonth.' x '.$thismonthnum.' )。<br>感谢您勤劳的管理,管理报告每月统计1次,奖励每月发放1次,请您继续努力为 '.$_G['setting']['bbname'].' 的发展作出更多贡献!<br>注:每月必须超出'.$gjdata.'次以上管理才有奖励,最高奖励上限 '.$moneyname.' '.$moneymax.' 个。<br><br>'.$_G['setting']['bbname'].'管理组。',0,1);
- updatemembercount($uid , array($money => $alldata));
- DB::query("INSERT INTO ".DB::table('plugin_monthmoney')." (id, uid, username, dateline, alldata, monthpost, modactions, digestposts, thismonth) VALUES (NULL, '$uid', '$username', '$_G[timestamp]', '$alldata', '$monthpost', '$modactions', '$digestposts', '$thismonth')");
- } else {
- notification_add($uid,0,'尊敬的 '.$_G['setting']['bbname'].' 管理成员 '.$username.',这是您在 '.$date.' 月份的管理报告。<br>您出勤了 '.$thismonth.' 小时,您发了 '.$monthpost.' 篇帖子,其中精华帖 '.$digestposts.' 篇,您管理操作了 '.$modactions.' 次。<br>根据您在 '.$date.' 月份的表现,您的管理次数没有达到月考核最低的管理标准'.$gjdata.'次,'.$_G['setting']['bbname'].' 团队不能给您发放工资奖励<br>( 计算公式: 基本工资 '.$moneyname.' '.$moneynum.' 个 + 发帖数 '.$monthpost.' x '.$monthpostnum.' + 管理数 '.$modactions.' x '.$modactionnum.' + 精华帖 '.$digestposts.' x '.$digestpostnum.' + 出勤 '.$thismonth.' x '.$thismonthnum.' )。<br>感谢您勤劳的管理,管理报告每月统计1次,奖励每月发放1次,请您继续努力为 '.$_G['setting']['bbname'].' 的发展作出更多贡献!<br>注:每月必须超出'.$gjdata.'次以上管理才有奖励,最高奖励上限 '.$moneyname.' '.$moneymax.' 个。<br><br>'.$_G['setting']['bbname'].'管理组。',0,1);
- DB::query("INSERT INTO ".DB::table('plugin_monthmoney')." (id, uid, username, dateline, alldata, monthpost, modactions, digestposts, thismonth) VALUES (NULL, '$uid', '$username', '$_G[timestamp]', '$moneynum', '$monthpost', '$modactions', '$digestposts', '$thismonth')");
复制代码
|