作者 jiawen
1 个管道 的构建 通过 耗费 1 秒

奖励金不足正常分享

... ... @@ -330,7 +330,13 @@ class ShareController extends RestBaseController
if ($check) {
$this->error(['code'=>'40010','msg'=>'已关注过该名片']);
}
if ($info['num'] == 0 || $info['money'] == 0) {
if ($info['num'] == 0 || $info['money'] == 0) {//奖励金不足就不给奖励金了 正常分享
$arr2 = [
'card_id'=>$data['card_id'],
'user_id'=>$this->userId,
'share_id'=>$data['user_id']
];
Db::name('card_log')->insert($arr2);
$this->error(['code'=>'40009','msg'=>'奖励金不足']);
}
//业务员自己 不能关注自己的名片
... ...