Newsale.php 2.62 KB
<?php

use Action\AbstractAction;
use LibModels\Wap\Product\NewsaleData;
use Plugin\DataProcess\NewSaleProcess;

/**
 * 新品到着
 */
class NewsaleController extends AbstractAction
{

    /**
     * 新品到着
     * 
     * @param int channel 1:男生,2:女生,3:潮童,4:创意生活
     */
    public function indexAction()
    {
        $this->setTitle('新品到着');
        $this->setNavHeader('新品到着');

        $channel = $this->get('channel', 1);
        if (!is_numeric($channel)) {
            $this->error();
        }

        $data = array();
        $data['newArrival'] = true;
        $data['headerBanner'] = \Product\NewsaleModel::getNewFocus();
        $goodsList = \Product\NewsaleModel::getNewProducts($channel, 20);
        if (!empty($goodsList)) {
            $data += $goodsList;
        }
        $this->_view->display('new', $data);
    }

    /**
     * 折扣专区
     * 
     * @param int channel 1:男生,2:女生,3:潮童,4:创意生活
     */
    public function discountAction()
    {
        $this->setTitle('折扣专区');
        $this->setNavHeader('Sale');

        $channel = $this->get('channel', 1);
        if (!is_numeric($channel)) {
            $this->error();
        }

        $data = array();
        $data['discount'] = true;
        $data['headerBanner'] = \Product\NewsaleModel::getNewFocus();
        $goodsList = \Product\NewsaleModel::getSaleProducts($channel, 20);
        if (!empty($goodsList)) {
            $data += $goodsList;
        }
        $this->_view->display('sale', $data);
    }

    /**
     * Ajax方式筛选新品到着、折扣专区商品
     * 
     * @return array 根据指定条件筛选之后的商品
     */
    public function selectNewSaleAction()
    {
        if ($this->isAjax()) {
            $gender = $this->get('gender', '1,3');
            $brand = $this->get('brand', null);
            $sort = $this->get('sort', null);
            $color = $this->get('color', null);
            $size = $this->get('size', null);
            $price = $this->get('price', null);
            $p_d = $this->get('p_d', null);
            $channel = $this->get('channel', '1');
            $dayLimit = $this->get('dayLimit', '1');
            $limit = $this->get('limit', 20);
            $page = $this->get('page', 1);

            $data = NewsaleData::selectNewSaleProducts(
                $gender, $brand, $sort, $color, 
                $size, $price, $p_d, $channel, $dayLimit, $limit, $page
            );
            $result = NewSaleProcess::selectData($data);

            $this->_view->display('product', $result);
        } else {
            echo ' ';
        }
    }

}