|
@@ -208,11 +208,30 @@ class Books extends Api
|
|
|
$uid = $this->auth->id;
|
|
|
foreach ($lists as $k => $v) {
|
|
|
$UserGoods = new UserGoods();
|
|
|
+ $Certificate = new Certificate();
|
|
|
$good = $UserGoods->where('user_id', $uid)->where('goods_type', 0)->where('goods_id', $v['id'])->find();
|
|
|
if (!$good) {
|
|
|
$listss[] = $v;
|
|
|
// unset($lists[$k]);
|
|
|
}
|
|
|
+ //免费/付费
|
|
|
+ $lists['data'][$k]['is_free'] = 1;
|
|
|
+ if($v['price'] <= 0){
|
|
|
+ $lists['data'][$k]['is_free'] = 0;
|
|
|
+ }
|
|
|
+ //体验卡
|
|
|
+ $cer = $Certificate->where('user_id',$uid)
|
|
|
+ ->where('goods_id',$v['id'])
|
|
|
+ ->where('status',1)
|
|
|
+ ->where('is_expire',1)
|
|
|
+ ->where('free_end_time','>',date("Y-m-d H:i:s"))
|
|
|
+ ->where('is_deleted',1)->find();
|
|
|
+ if($cer){
|
|
|
+ $list['is_certificate'] = 0;
|
|
|
+ $list['free_end_time'] = $cer['free_end_time'];
|
|
|
+ }else{
|
|
|
+ $list['is_certificate'] = 1;
|
|
|
+ }
|
|
|
}
|
|
|
}else{
|
|
|
$listss = $lists;
|