| | |
| | | use app\common\logic\Basic as BasicLogic; |
| | | use app\common\model\user\Browse as ModelUserBrowse; |
| | | use app\api\logic\taoke\device\Jd as LogicJd; |
| | | |
| | | use think\Db; |
| | | |
| | | class UserBrowse extends BasicLogic |
| | | { |
| | |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 标记浏览0元购商品记录 |
| | | * |
| | | * * @param [type] $user_id |
| | | * @param [type] $ids |
| | | * @return void |
| | | */ |
| | | public function updatefirstfreelog($user_id,$ids,$new_goodsId) |
| | | { |
| | | if(empty($ids)||empty($new_goodsId)){ |
| | | fault('宝贝ID不能为空'); |
| | | return true; |
| | | } |
| | | //查询是否已经标记过 |
| | | $res=Db::query('SELECT id FROM t_user_first_free_browse WHERE user_id=? AND goodsId=?',[$user_id,$ids]); |
| | | if(!empty($res)){ |
| | | return true; |
| | | } |
| | | $res=Db::execute('INSERT INTO t_user_first_free_browse(user_id,goodsId,new_goodsId) VALUES (?,?,?)',[$user_id,$ids,$new_goodsId]); |
| | | |
| | | return true; |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 查询是否首购 |
| | | * |
| | | * * @param [type] $user_id |
| | | * @param [type] $ids |
| | | * @return void |
| | | */ |
| | | |
| | | public function checkisfirstfree($user_id) |
| | | { |
| | | //查询是否已经标记过 |
| | | $res=Db::query('SELECT id FROM t_user_first_free_browse WHERE user_id=? AND is_order=?',[$user_id,1]); |
| | | return $res; |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |