where(['id'=>$special_id])->find(); if ($special['type'] == SPECIAL_COLUMN) { $special_source = SpecialSource::getSpecialSource($special['id']); if (!$special_source) return false; foreach ($special_source as $k => $v) { $task_special = Special::PreWhere()->where(['id'=>$v['source_id']])->find(); if (!$task_special) continue; if ($task_special['is_show'] != 1) continue; self::setBuySpecial($order_id, $uid, $v['source_id'], $type, $task_special['validity'], $special_id); } } self::setBuySpecial($order_id, $uid, $special_id, $type, $special['validity']); } public static function setBuySpecial($order_id, $uid, $special_id, $type = 0, $validity = 0, $column_id = 0) { $add_time = time(); if (self::be(['uid' => $uid, 'special_id' => $special_id, 'column_id' => $column_id, 'type' => $type, 'is_del' => 0])) return false; $validity_time = 0; if ($validity > 0) { $validity_time = (int)bcadd(time(), bcmul($validity, 86400, 0), 0); } return self::set(compact('order_id', 'column_id', 'uid', 'special_id', 'type', 'validity_time', 'add_time')); } /**专栏更新数据 * @param $special_id */ public static function columnUpdate($special_id) { if (!self::be(['special_id' => $special_id, 'is_del' => 0])) return true; self::where(['special_id' => $special_id, 'is_del' => 0])->update(['is_update'=>1]); } /**专题获得情况 * @param $special_id * @param $uid * @return bool * @throws \think\Exception */ public static function PaySpecial($special_id, $uid) { self::where(['uid' => $uid, 'special_id' => $special_id, 'is_del' => 0])->where('validity_time', ['>', 0], ['<', time()], 'and')->update(['is_del' => 1]); return self::where(['uid' => $uid, 'special_id' => $special_id, 'is_del' => 0])->count() ? true : false; } /**购买列表 * @param $where * @return mixed */ public static function getPayList($where) { $list = self::where(['a.uid' => $where['uid'], 'a.is_del' => 0])->alias('a')->group('a.special_id')->join('__SPECIAL__ s', 's.id=a.special_id') ->field('a.*,s.title')->order('a.add_time desc')->page((int)$where['page'], (int)$where['limit'])->select(); foreach ($list as &$item) { $pay_price = self::getDb('store_order')->where('order_id', $item['order_id'])->value('pay_price'); $item['pay_price'] = $pay_price > 0 ? $pay_price : 0; } return $list; } }