111 lines
2.9 KiB
PHP
111 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Order states class, OrderState.php
|
|
* Order states management
|
|
* @category classes
|
|
*
|
|
* @author PrestaShop <support@prestashop.com>
|
|
* @copyright PrestaShop
|
|
* @license http://www.opensource.org/licenses/osl-3.0.php Open-source licence 3.0
|
|
* @version 1.3
|
|
*
|
|
*/
|
|
|
|
class OrderState extends ObjectModel
|
|
{
|
|
/** @var string Name */
|
|
public $name;
|
|
|
|
/** @var string Template name if there is any e-mail to send */
|
|
public $template;
|
|
|
|
/** @var boolean Send an e-mail to customer ? */
|
|
public $send_email;
|
|
|
|
/** @var boolean Allow customer to view and download invoice when order is at this state */
|
|
public $invoice;
|
|
|
|
/** @var string Display state in the specified color */
|
|
public $color;
|
|
|
|
public $unremovable;
|
|
|
|
/** @var boolean Log authorization */
|
|
public $logable;
|
|
|
|
/** @var boolean Delivery */
|
|
public $delivery;
|
|
|
|
/** @var boolean Hidden */
|
|
public $hidden;
|
|
|
|
protected $fieldsValidate = array('send_email' => 'isBool', 'invoice' => 'isBool', 'color' => 'isColor', 'logable' => 'isBool');
|
|
protected $fieldsRequiredLang = array('name');
|
|
protected $fieldsSizeLang = array('name' => 64, 'template' => 64);
|
|
protected $fieldsValidateLang = array('name' => 'isGenericName', 'template' => 'isTplName');
|
|
|
|
protected $table = 'order_state';
|
|
protected $identifier = 'id_order_state';
|
|
|
|
public function getFields()
|
|
{
|
|
parent::validateFields();
|
|
$fields['send_email'] = intval($this->send_email);
|
|
$fields['invoice'] = intval($this->invoice);
|
|
$fields['color'] = pSQL($this->color);
|
|
$fields['unremovable'] = intval($this->unremovable);
|
|
$fields['logable'] = intval($this->logable);
|
|
$fields['delivery'] = intval($this->delivery);
|
|
$fields['hidden'] = intval($this->hidden);
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* Check then return multilingual fields for database interaction
|
|
*
|
|
* @return array Multilingual fields
|
|
*/
|
|
public function getTranslationsFieldsChild()
|
|
{
|
|
parent::validateFieldsLang();
|
|
return parent::getTranslationsFields(array('name', 'template'));
|
|
}
|
|
|
|
/**
|
|
* Get all available order states
|
|
*
|
|
* @param integer $id_lang Language id for state name
|
|
* @return array Order states
|
|
*/
|
|
static public function getOrderStates($id_lang)
|
|
{
|
|
return Db::getInstance()->ExecuteS('
|
|
SELECT *
|
|
FROM `'._DB_PREFIX_.'order_state` os
|
|
LEFT JOIN `'._DB_PREFIX_.'order_state_lang` osl ON (os.`id_order_state` = osl.`id_order_state` AND osl.`id_lang` = '.intval($id_lang).')
|
|
ORDER BY `name` ASC');
|
|
}
|
|
|
|
/**
|
|
* Check if we can make a facture when order is in this state
|
|
*
|
|
* @param integer $id_order_state State ID
|
|
* @return boolean availability
|
|
*/
|
|
static public function invoiceAvailable($id_order_state)
|
|
{
|
|
$result = Db::getInstance()->getRow('
|
|
SELECT `invoice` AS ok
|
|
FROM `'._DB_PREFIX_.'order_state`
|
|
WHERE `id_order_state` = '.intval($id_order_state));
|
|
return $result['ok'];
|
|
}
|
|
|
|
public function isRemovable()
|
|
{
|
|
return !($this->unremovable);
|
|
}
|
|
}
|
|
|
|
?>
|