Your IP : 216.73.216.111


Current Path : /home/bateauecpx/www/administrator/components/com_j2store/models/
Upload File :
Current File : /home/bateauecpx/www/administrator/components/com_j2store/models/productprices.php

<?php
/**
 * @package J2Store
 * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org
 * @license GNU GPL v3 or later
 */

// No direct access
defined('_JEXEC') or die;

class J2StoreModelProductPrices extends F0FModel {

	private function getFilterValues()
	{

		return (object)array(
				'date_from'		=> $this->getState('date_from',null,'string'),
				'date_to'			=> $this->getState('date_to',null,'string'),
				'filter_date'		=> $this->getState('filter_date',null,'string'),
				'quantity_from'		=> $this->getState('quantity_from',null,'int'),
				'quantity_to'		=> $this->getState('quantity_to',null,'int'),
				'filter_quantity'		=> $this->getState('filter_quantity',null,'int'),
				'group_id'		=> $this->getState('group_id',null,'string'),
				'variant_id'		=> $this->getState('variant_id',null,'int'),
				'orderby'		=> $this->getState('orderby',null,'string'),
				'direction'		=> $this->getState('direction',null,'string')
				);
	}

	public function buildQuery($overrideLimits = false) {

		$db = JFactory::getDbo();
		$query = $db->getQuery(true)->select('#__j2store_product_prices.*')
		->from('#__j2store_product_prices');

		$this->_buildQueryWhere($query);
		$this->_buildQueryOrder($query);
		J2Store::plugin()->event('ProductPricesAfterBuildQuery', array(&$query, &$this));
		return $query;
	}

    protected function _buildQueryWhere($query)
    {
        $db = $this->getDbo();
        $state = $this->getFilterValues();
        JLoader::import('joomla.utilities.date');

        $from = trim($state->filter_date);
        if (strlen($from))
        {
            $nullDate	= JFactory::getDbo()->getNullDate();
            $query->where("#__j2store_product_prices.date_from <= ".$db->q($from));
            $query->where("(#__j2store_product_prices.date_to >= ".$db->q($from)." OR #__j2store_product_prices.date_to = ".$db->q($nullDate)." )");
        }


        if ($state->filter_quantity)
        {
            $query->where("(#__j2store_product_prices.quantity_from <= ".$db->q($state->filter_quantity).")");
        }

        if ($state->group_id)
        {
            $query->where('#__j2store_product_prices.customer_group_id IN ('.$state->group_id.')');
        }

        if ($state->variant_id)
        {
            $query->where('#__j2store_product_prices.variant_id = '.$db->q((int)$state->variant_id));
        }


    }

	protected function _buildQueryOrder($query) {
		$state = $this->getFilterValues();
		if($state->orderby) {
			$query->order('#__j2store_product_prices.'.$state->orderby.' '.$state->direction);
		}
	}

	public function &getItem($id = null) {

		$query = $this->buildQuery();
		$this->_db->setQuery( (string) $query );
		$item = $this->_db->loadObject();
		return $item;
	}


}