fixed
This commit is contained in:
@@ -133,7 +133,7 @@ class BaseUserLogic
|
||||
Tools::log_to_write_txt(['title'=>'业务ticket字段不存在','input'=>input()]);
|
||||
return false;
|
||||
}
|
||||
$user = Db::table(TabConf::$fa_users)
|
||||
$user = Db::table('fa_ty_users')
|
||||
->where('ticket',$ticket)
|
||||
->find();
|
||||
if(empty($user)){
|
||||
|
||||
@@ -135,7 +135,7 @@ class WechatMsgPushLogic
|
||||
]);
|
||||
continue;//不发
|
||||
}
|
||||
$users = Db::table(TabConf::$fa_users)
|
||||
$users = Db::table('fa_ty_users')
|
||||
->where('openid',$ToUserOpenid)
|
||||
->find();
|
||||
if(empty($users)){
|
||||
@@ -145,7 +145,7 @@ class WechatMsgPushLogic
|
||||
continue;
|
||||
}
|
||||
//礼包入账
|
||||
Db::table(TabConf::$fa_users)
|
||||
Db::table('fa_ty_users')
|
||||
->where('openid',$ToUserOpenid)
|
||||
->setInc('score',$prize['val'] * $item['Num']);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user