toutpratique/controllers/admin/AdminSpecificPriceRuleController.php

372 lines
14 KiB
PHP
Raw Normal View History

2015-07-06 16:58:50 +02:00
<?php
/**
* 2007-2015 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-2015 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
/**
* @property SpecificPriceRule $object
*/
class AdminSpecificPriceRuleControllerCore extends AdminController
{
2015-09-22 18:22:11 +02:00
public $list_reduction_type;
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
public function __construct()
{
$this->bootstrap = true;
$this->table = 'specific_price_rule';
$this->className = 'SpecificPriceRule';
$this->lang = false;
$this->multishop_context = Shop::CONTEXT_ALL;
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
/* if $_GET['id_shop'] is transmitted, virtual url can be loaded in config.php, so we wether transmit shop_id in herfs */
if ($this->id_shop = (int)Tools::getValue('shop_id')) {
$_GET['id_shop'] = $this->id_shop;
$_POST['id_shop'] = $this->id_shop;
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$this->list_reduction_type = array(
'percentage' => $this->l('Percentage'),
'amount' => $this->l('Amount')
);
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$this->addRowAction('edit');
$this->addRowAction('delete');
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$this->context = Context::getContext();
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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)
2015-07-06 16:58:50 +02:00
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.')';
2015-09-22 18:22:11 +02:00
$this->_use_found_rows = false;
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'confirm' => $this->l('Delete selected items?'),
'icon' => 'icon-trash'
)
);
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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' => 'datetime',
),
'to' => array(
'title' => $this->l('End'),
'align' => 'right',
'type' => 'datetime'
),
);
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
parent::__construct();
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
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'
);
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
parent::initPageHeaderToolbar();
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
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);
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
foreach ($this->_list as $k => $list) {
if ($list['reduction_type'] == 'amount') {
$this->_list[$k]['reduction_type'] = $this->list_reduction_type['amount'];
} elseif ($list['reduction_type'] == 'percentage') {
$this->_list[$k]['reduction_type'] = $this->list_reduction_type['percentage'];
}
}
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
public function renderForm()
{
if (!$this->object->id) {
$this->object->price = -1;
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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' => 'shop_id',
'options' => array(
'query' => Shop::getShops(),
'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'),
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
),
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' => 'select',
'label' => $this->l('Reduction with or without taxes'),
'name' => 'reduction_tax',
'align' => 'center',
'options' => array(
'query' => array(
array('lab' => $this->l('Tax included'), 'val' => 1),
array('lab' => $this->l('Tax excluded'), 'val' => 0),
),
'id' => 'val',
'name' => 'lab',
)
),
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 = '';
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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
);
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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);
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
$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();
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
public function processSave()
{
$_POST['price'] = Tools::getValue('leave_bprice_on') ? '-1' : Tools::getValue('price');
if (Validate::isLoadedObject(($object = parent::processSave()))) {
/** @var SpecificPriceRule $object */
$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;
}
}
2015-07-06 16:58:50 +02:00
2015-09-22 18:22:11 +02:00
public function postProcess()
{
Tools::clearSmartyCache();
return parent::postProcess();
}
2015-07-06 16:58:50 +02:00
}