帮忙看下怎么把下面代码调用每月的数据改成调用所有数据或某年份的数据
//往期团购列表
public function expired()
{
$partitions = d(goods)->getgoodspartitions();
$this->assign(partitions,$partitions);
$site_name = trim($_request['site_name']);
$cate_id = intval($_request['cate_id']);
$name = trim($_request['name']);
$status = trim($_request['status']);
$city = trim($_request['city']);
$end_time = intval($_request['end_time']);
if(isset($partitions[$end_time]))
$partition = $partitions[$end_time];
else
{
$partition = current($partitions);
$end_time = $partition['min_date'];
}
$this->assign(end_time,$end_time);
$parameter = array();
$parameter['end_time'] = $end_time;
$is_empty = false;
$where = '';
if(!empty($site_name))
{
$this->assign(site_name,$site_name);
$parameter['site_name'] = $site_name;
$ids = array();
$site_ids = d('site')->where(name like '%$site_name%')->field('id')->findall();
foreach($site_ids as $site)
{
$ids[] = $site['id'];
}
if(count($ids) > 0)
$where .= ' and gk.site_id in ('.implode(',', $ids).')';
else
$is_empty = true;
}
if(!empty($cate_id))
{
$this->assign(cate_id,$cate_id);
$where.= and gk.cate_id = $cate_id;
$parameter['cate_id'] = $cate_id;
}
if(!empty($city))
{
$this->assign(city,$city);
$where.= and gk.city = '$city';
$parameter['city'] = $city;
}
if(!empty($name))
{
$name_query = clearsymbol($name);
if(!empty($name_query))
{
$name_query = segmenttounicode($name_query,'+');
$match_sql = ' inner join '.c(db_prefix).'goods_match as gm on gm.id = gk.id ';
$where.= and match (gm.content) against ('$name_query' in boolean mode);
$this->assign(name,$name);
$parameter['name'] = $name;
}
}
if($status != && $status >= 0)
{
$where.= and g.status = $status;
$this->assign(status,$status);
$parameter['status'] = $status;
}
else
{
$this->assign(status,-1);
}
if(!$is_empty)
{
$model = m();
$count_str = 'select count(g.id) as gcount
from '.c(db_prefix).'goods_key as gk
inner join '.c(db_prefix).'goods as g on g.id = gk.id '.$match_sql.
where $partition[where] $where ;
$count = $model->query($count_str);
$count = $count[0]['gcount'];
$sql_str = 'select g.id,g.name,g.shop_price,g.city,g.end_time,g.status,g.is_best,g.sort,g.cate_id,g.bought,g.site_name
from '.c(db_prefix).'goods_key as gk
inner join '.c(db_prefix).'goods as g on g.id = gk.id '.$match_sql.
where $partition[where] $where ;
$volist = $this->_sqllist($model, $sql_str, $count,$parameter, 'id', false);
}
else
$volist = array();
l(forbid,未审核);
l(normal,已审核);
$group_city_list = d(groupcity)->where(status=1)->order(sort asc,id asc)->findall();
$this->assign(group_city_list,$group_city_list);
$goodscates = d('goodscate')-> where(status=1)-> findall();
$goodscates = d('goodscate')-> toformattree($goodscates,array('name'));
$this->assign(goodscates,$goodscates);
$this->display();
}
前台的调用代码是这样的:
selected >{$partition.date}
他的下拉菜单选择都是每个月的所有过期数据,我要的效果是下拉菜单加一个全部过期数据或每年份的过期数据
------解决思路----------------------
看一下 d(goods)->getgoodspartitions(); 这个方法,改一改
等楼下
------解决思路----------------------
$partitions = d(goods)->getgoodspartitions();
这个函数长什么样子