Files
PrestaShop/classes/stock/SupplierOrderHistory.php
T
2011-10-26 16:24:36 +00:00

88 lines
2.0 KiB
PHP
Executable File

<?php
/*
* 2007-2011 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-2011 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
/**
* @since 1.5.0
*/
class SupplierOrderHistoryCore extends ObjectModel
{
/**
* @var int Supplier order
*/
public $id_supplier_order;
/**
* @var int Employee
*/
public $id_employee;
/**
* @var int State
*/
public $id_state;
/**
* @var string Date
*/
public $date_add;
protected $fieldsRequired = array(
'id_supplier_order',
'id_employee',
'id_state',
'date_add'
);
protected $fieldsValidate = array(
'id_supplier_order' => 'isUnsignedId',
'id_employee' => 'isUnsignedId',
'id_state' => 'isUnsignedId',
'date_add' => 'isDate'
);
/**
* @var string Database table name
*/
protected $table = 'supplier_order_history';
/**
* @var string Database ID name
*/
protected $identifier = 'id_supplier_order_history';
public function getFields()
{
$this->validateFields();
$fields['id_supplier_order'] = (int)$this->id_supplier_order;
$fields['id_employee'] = (int)$this->id_employee;
$fields['id_state'] = (int)$this->id_state;
$fields['date_add'] = pSQL($this->date_add);
return $fields;
}
}