privilegedemarque/classes/Delivery.php
Serveur preprod f0c0c48223 first push
2016-04-14 16:14:31 +02:00

99 lines
2.8 KiB
PHP
Executable File

<?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 DeliveryCore extends ObjectModel
{
/** @var integer */
public $id_delivery;
/** @var int **/
public $id_shop;
/** @var int **/
public $id_shop_group;
/** @var integer */
public $id_carrier;
/** @var integer */
public $id_range_price;
/** @var integer */
public $id_range_weight;
/** @var integer */
public $id_zone;
/** @var float */
public $price;
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'delivery',
'primary' => 'id_delivery',
'fields' => array(
'id_carrier' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'id_range_price' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'id_range_weight' =>array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'id_zone' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'id_shop' => array('type' => self::TYPE_INT),
'id_shop_group' => array('type' => self::TYPE_INT),
'price' => array('type' => self::TYPE_FLOAT, 'validate' => 'isPrice', 'required' => true),
),
);
protected $webserviceParameters = array(
'objectsNodeName' => 'deliveries',
'fields' => array(
'id_carrier' => array('xlink_resource' => 'carriers'),
'id_range_price' => array('xlink_resource' => 'price_ranges'),
'id_range_weight' => array('xlink_resource' => 'weight_ranges'),
'id_zone' => array('xlink_resource' => 'zones'),
)
);
public function getFields()
{
$fields = parent::getFields();
// @todo add null management in definitions
if ($this->id_shop)
$fields['id_shop'] = (int)$this->id_shop;
else
$fields['id_shop'] = null;
if ($this->id_shop_group)
$fields['id_shop_group'] = (int)$this->id_shop_group;
else
$fields['id_shop_group'] = null;
return $fields;
}
}