* @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 SupplierOrderReceiptHistoryCore extends ObjectModel { /** * @var int Detail of the supplier order */ public $id_supplier_order_detail; /** * @var int Employee */ public $id_employee; /** * @var int State */ public $id_state; /** * @var int Quantity delivered */ public $quantity; /** * @var string Date of delivery */ public $date_add; protected $fieldsRequired = array( 'id_supplier_order_detail', 'id_state', 'id_employee', 'quantity', 'date_add' ); protected $fieldsValidate = array( 'id_supplier_order_detail' => 'isUnsignedId', 'id_state' => 'isUnsignedId', 'id_employee' => 'isUnsignedId', 'quantity' => 'isUnsignedInt', 'date_add' => 'isDate' ); /** * @var string Database table name */ protected $table = 'supplier_order_receipt_history'; /** * @var string Database ID name */ protected $identifier = 'id_supplier_order_receipt_history'; public function getFields() { $this->validateFields(); $fields['id_supplier_order_detail'] = (int)$this->id_supplier_order_detail; $fields['id_state'] = (int)$this->id_state; $fields['id_employee'] = (int)$this->id_employee; $fields['quantity'] = (int)$this->quantity; $fields['date_add'] = pSQL($this->date_add); return $fields; } }