File Manager

Current Path : /webspace/www.babilon.be/html/shop/controllers/admin/
Upload File :
Current File : //webspace/www.babilon.be/html/shop/controllers/admin/AdminSpecificPriceRuleController.php

<?php
/*
* 2007-2014 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <contact@prestashop.com>
*  @copyright  2007-2014 PrestaShop SA
*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/

class AdminSpecificPriceRuleControllerCore extends AdminController
{
	public $list_reduction_type;

	public function __construct()
	{
		$this->bootstrap = true;
	 	$this->table = 'specific_price_rule';
		$this->className = 'SpecificPriceRule';
	 	$this->lang = false;

	 	$this->list_reduction_type = array(
			'percentage' => $this->l('Percentage'),
			'amount' => $this->l('Amount')
		);

		$this->addRowAction('edit');
		$this->addRowAction('delete');

		$this->context = Context::getContext();

		$this->_select = 's.name shop_name, cu.name currency_name, cl.name country_name, gl.name group_name';
		$this->_join = 'LEFT JOIN '._DB_PREFIX_.'shop s ON (s.id_shop = a.id_shop)
		LEFT JOIN '._DB_PREFIX_.'currency cu ON (cu.id_currency = a.id_currency)
		LEFT JOIN '._DB_PREFIX_.'country_lang cl ON (cl.id_country = a.id_country AND cl.id_lang='.(int)$this->context->language->id.')
		LEFT JOIN '._DB_PREFIX_.'group_lang gl ON (gl.id_group = a.id_group AND gl.id_lang='.(int)$this->context->language->id.')';

		$this->bulk_actions = array(
			'delete' => array(
				'text' => $this->l('Delete selected'),
				'confirm' => $this->l('Delete selected items?'),
				'icon' => 'icon-trash'
			)
		);

		$this->fields_list = array(
			'id_specific_price_rule' => array(
				'title' => $this->l('ID'),
				'align' => 'center',
				'class' => 'fixed-width-xs'
			),
			'name' => array(
				'title' => $this->l('Name'),
				'filter_key' => 'a!name',
				'width' => 'auto'
			),
			'shop_name' => array(
				'title' => $this->l('Shop'),
				'filter_key' => 's!name'
			),
			'currency_name' => array(
				'title' => $this->l('Currency'),
				'align' => 'center',
				'filter_key' => 'cu!name'
			),
			'country_name' => array(
				'title' => $this->l('Country'),
				'align' => 'center',
				'filter_key' => 'cl!name'
			),
			'group_name' => array(
				'title' => $this->l('Group'),
				'align' => 'center',
				'filter_key' => 'gl!name'
			),
			'from_quantity' => array(
				'title' => $this->l('From quantity'),
				'align' => 'center',
				'class' => 'fixed-width-xs'
			),
			'reduction_type' => array(
				'title' => $this->l('Reduction type'),
				'align' => 'center',
				'type' => 'select',
				'filter_key' => 'a!reduction_type',
				'list' => $this->list_reduction_type,
			),
			'reduction' => array(
				'title' => $this->l('Reduction'),
				'align' => 'center',
				'type' => 'decimal',
				'class' => 'fixed-width-xs'
			),
			'from' => array(
				'title' => $this->l('Beginning'),
				'align' => 'right',
				'type' => 'date',
			),
			'to' => array(
				'title' => $this->l('End'),
				'align' => 'right',
				'type' => 'date'
			),
		);

		parent::__construct();
	}

	public function initPageHeaderToolbar()
	{
		if (empty($this->display))
			$this->page_header_toolbar_btn['new_specific_price_rule'] = array(
				'href' => self::$currentIndex.'&addspecific_price_rule&token='.$this->token,
				'desc' => $this->l('Add new catalog price rule', null, null, false),
				'icon' => 'process-icon-new'
			);

		parent::initPageHeaderToolbar();
	}

	public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = null, $id_lang_shop = false)
	{
		parent::getList($id_lang, $order_by, $order_way, $start, $limit, $id_lang_shop);

		foreach ($this->_list as $k => $list)
			if ($list['reduction_type'] == 'amount')
				$this->_list[$k]['reduction_type'] = $this->list_reduction_type['amount'];
			else if ($list['reduction_type'] == 'percentage')
				$this->_list[$k]['reduction_type'] = $this->list_reduction_type['percentage'];
	}

	public function renderForm()
	{
		if (!$this->object->id)
			$this->object->price = -1;

		$shops = Shop::getShops();
		if (count($this->context->employee->getAssociatedShops()) > 1)
			$shops = array_merge(array(0 => array('id_shop' => 0, 'name' => $this->l('All shops'))), $shops);

		$this->fields_form = array(
			'legend' => array(
				'title' => $this->l('Catalog price rules'),
				'icon' => 'icon-dollar'
			),
			'input' => array(
				array(
					'type' => 'text',
					'label' => $this->l('Name'),
					'name' => 'name',
					'maxlength' => 32,
					'required' => true,
					'hint' => $this->l('Forbidden characters').' <>;=#{}'
				),
				array(
					'type' => 'select',
					'label' => $this->l('Shop'),
					'name' => 'id_shop',
					'options' => array(
						'query' => $shops,
						'id' => 'id_shop',
						'name' => 'name'
					),
					'condition' => Shop::isFeatureActive(),
					'default_value' => Shop::getContextShopID()
				),
				array(
					'type' => 'select',
					'label' => $this->l('Currency'),
					'name' => 'id_currency',
					'options' => array(
						'query' => array_merge(array(0 => array('id_currency' => 0, 'name' => $this->l('All currencies'))), Currency::getCurrencies()),
						'id' => 'id_currency',
						'name' => 'name'
					),
				),
				array(
					'type' => 'select',
					'label' => $this->l('Country'),
					'name' => 'id_country',
					'options' => array(
						'query' => array_merge(array(0 => array('id_country' => 0, 'name' => $this->l('All countries'))), Country::getCountries((int)$this->context->language->id)),
						'id' => 'id_country',
						'name' => 'name'
					),
				),
				array(
					'type' => 'select',
					'label' => $this->l('Group'),
					'name' => 'id_group',
					'options' => array(
						'query' => array_merge(array(0 => array('id_group' => 0, 'name' => $this->l('All groups'))), Group::getGroups((int)$this->context->language->id)),
						'id' => 'id_group',
						'name' => 'name'
					),
				),
				array(
					'type' => 'text',
					'label' => $this->l('From quantity'),
					'name' => 'from_quantity',
					'maxlength' => 10,
					'required' => true,
				),
				array(
					'type' => 'text',
					'label' => $this->l('Price (tax excl.)'),
					'name' => 'price',
					'disabled' => ($this->object->price == -1 ? 1 : 0),
					'maxlength' => 10,
					'suffix' => $this->context->currency->getSign('right'),

				),
				array(
					'type' => 'checkbox',
					'name' => 'leave_bprice',
					'values' => array(
						'query' => array(
							array(
								'id' => 'on',
								'name' => $this->l('Leave base price'),
								'val' => '1',
								'checked' => '1'
							),
						),
						'id' => 'id',
						'name' => 'name'
					)
				),
				array(
					'type' => 'datetime',
					'label' => $this->l('From'),
					'name' => 'from'
				),
				array(
					'type' => 'datetime',
					'label' => $this->l('To'),
					'name' => 'to'
				),
				array(
					'type' => 'select',
					'label' => $this->l('Reduction type'),
					'name' => 'reduction_type',
					'options' => array(
						'query' => array(array('reduction_type' => 'amount', 'name' => $this->l('Amount')), array('reduction_type' => 'percentage', 'name' => $this->l('Percentage'))),
						'id' => 'reduction_type',
						'name' => 'name'
					),
				),
				array(
					'type' => 'text',
					'label' => $this->l('Reduction'),
					'name' => 'reduction',
					'required' => true,
				),
			),
			'submit' => array(
				'title' => $this->l('Save')
			),
		);
		if (($value = $this->getFieldValue($this->object, 'price')) != -1)	
			$price = number_format($value, 6);
		else
			$price = '';

		$this->fields_value = array(
			'price' => $price,
			'from_quantity' => (($value = $this->getFieldValue($this->object, 'from_quantity')) ? $value : 1),
			'reduction' => number_format((($value = $this->getFieldValue($this->object, 'reduction')) ? $value : 0), 6),
			'leave_bprice_on' => $price ? 0 : 1
		);

		$attribute_groups = array();
		$attributes = Attribute::getAttributes((int)$this->context->language->id);
		foreach ($attributes as $attribute)
		{
			if (!isset($attribute_groups[$attribute['id_attribute_group']]))
			{
				$attribute_groups[$attribute['id_attribute_group']]  = array(
					'id_attribute_group' => $attribute['id_attribute_group'],
					'name' => $attribute['attribute_group']
				);
				$attribute_groups[$attribute['id_attribute_group']]['attributes'][] = array(
					'id_attribute' => $attribute['id_attribute'],
					'name' => $attribute['name']
				);
			}
		}
		$features = Feature::getFeatures((int)$this->context->language->id);
		foreach ($features as &$feature)
			$feature['values'] = FeatureValue::getFeatureValuesWithLang((int)$this->context->language->id, $feature['id_feature'], true);

		$this->tpl_form_vars = array(
			'manufacturers' => Manufacturer::getManufacturers(),
			'suppliers' => Supplier::getSuppliers(),
			'attributes_group' => $attribute_groups,
			'features' => $features,
			'categories' => Category::getSimpleCategories((int)$this->context->language->id),
			'conditions' => $this->object->getConditions(),
			'is_multishop' => Shop::isFeatureActive()
			);
		return parent::renderForm();
	}

	public function processSave()
	{
		$_POST['price'] = Tools::getValue('leave_bprice_on') ? '-1' : Tools::getValue('price');
		if (Validate::isLoadedObject(($object = parent::processSave())))
		{
			$object->deleteConditions();
			foreach ($_POST as $key => $values)
			{
				if (preg_match('/^condition_group_([0-9]+)$/Ui', $key, $condition_group))
				{
					$conditions = array();
					foreach ($values as $value)
					{
						$condition = explode('_', $value);
						$conditions[] = array('type' => $condition[0], 'value' => $condition[1]);
					}
					$object->addConditions($conditions);
				}
			}
			$object->apply();
			return $object;
		}
	}

	public function postProcess()
	{
		Tools::clearSmartyCache();
		return parent::postProcess();
	}
}

File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com