?? GreyFile — Mystic File Browser
Current path:
home
/
webdevt
/
prestashop17
/
src
/
Adapter
/
?? Create WP Admin
??
Go up: /home/webdevt/prestashop17/src
?? Editing: CombinationDataProvider.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) */ namespace PrestaShop\PrestaShop\Adapter; use Combination; use PrestaShop\Decimal\DecimalNumber; use PrestaShop\PrestaShop\Adapter\Product\ProductDataProvider; use PrestaShop\PrestaShop\Core\Localization\Locale; use PrestaShopBundle\Form\Admin\Type\CommonAbstractType; use Product; use Tax; /** * This class will provide data from DB / ORM about product combination. */ class CombinationDataProvider { /** * @var LegacyContext */ private $context; /** * @var ProductDataProvider */ private $productAdapter; /** * @var Locale */ private $locale; /** * @param Locale $locale */ public function __construct(Locale $locale) { $this->context = new LegacyContext(); $this->productAdapter = new ProductDataProvider(); $this->locale = $locale; } /** * Get a combination values. * * @deprecated since 1.7.3.1 really slow, use getFormCombinations instead. * * @param int $combinationId The id_product_attribute * * @return array combinations */ public function getFormCombination($combinationId) { $product = new Product((new Combination($combinationId))->id_product); return $this->completeCombination( $product->getAttributeCombinationsById( $combinationId, $this->context->getContext()->language->id ), $product ); } /** * Retrieve combinations data for a specific language id. * * @param array $combinationIds * @param int $languageId * * @return array a list of formatted combinations * * @throws \PrestaShopDatabaseException * @throws \PrestaShopException */ public function getFormCombinations(array $combinationIds, $languageId) { $productId = (new Combination($combinationIds[0]))->id_product; $product = new Product($productId); $combinations = []; foreach ($combinationIds as $combinationId) { $combinations[$combinationId] = $this->completeCombination( $product->getAttributeCombinationsById( $combinationId, $languageId ), $product ); } return $combinations; } /** * @param array $attributesCombinations * @param Product $product * * @return array */ public function completeCombination($attributesCombinations, $product) { $combination = $attributesCombinations[0]; $attribute_price_impact = 0; if ($combination['price'] > 0) { $attribute_price_impact = 1; } elseif ($combination['price'] < 0) { $attribute_price_impact = -1; } $attribute_weight_impact = 0; if ($combination['weight'] > 0) { $attribute_weight_impact = 1; } elseif ($combination['weight'] < 0) { $attribute_weight_impact = -1; } $attribute_unity_price_impact = 0; if ($combination['unit_price_impact'] > 0) { $attribute_unity_price_impact = 1; } elseif ($combination['unit_price_impact'] < 0) { $attribute_unity_price_impact = -1; } $productTaxRate = $product->getTaxesRate(); // Get product basic prices $productPrice = new DecimalNumber((string) $product->price); $productPriceIncluded = $productPrice->times(new DecimalNumber((string) (1 + ($productTaxRate / 100)))); $productEcotax = new DecimalNumber((string) $product->ecotax); $productEcotaxIncluded = $productEcotax->times(new DecimalNumber((string) (1 + (Tax::getProductEcotaxRate() / 100)))); // Get combination prices and impacts $combinationEcotax = new DecimalNumber((string) $combination['ecotax_tax_excluded']); $combinationEcotaxIncluded = new DecimalNumber((string) $combination['ecotax_tax_included']); $combinationImpactTaxExcluded = new DecimalNumber((string) $combination['price']); $combinationImpactTaxIncluded = $combinationImpactTaxExcluded->times(new DecimalNumber((string) (1 + ($productTaxRate / 100)))); $ecotax = $combinationEcotax->equalsZero() ? $productEcotax : $combinationEcotax; $finalPrice = $productPrice ->plus($ecotax) ->plus($combinationImpactTaxExcluded) ->toPrecision(CommonAbstractType::PRESTASHOP_DECIMALS); $ecotaxIncluded = $combinationEcotaxIncluded->equalsZero() ? $productEcotaxIncluded : $combinationEcotaxIncluded; $finalPriceIncluded = $productPriceIncluded ->plus($ecotaxIncluded) ->plus($combinationImpactTaxIncluded) ->toPrecision(CommonAbstractType::PRESTASHOP_DECIMALS); return [ 'id_product_attribute' => $combination['id_product_attribute'], 'attribute_reference' => $combination['reference'], 'attribute_ean13' => $combination['ean13'], 'attribute_isbn' => $combination['isbn'], 'attribute_upc' => $combination['upc'], 'attribute_mpn' => $combination['mpn'], 'attribute_wholesale_price' => $combination['wholesale_price'], 'attribute_price_impact' => $attribute_price_impact, 'attribute_price' => $combinationImpactTaxExcluded->toPrecision(CommonAbstractType::PRESTASHOP_DECIMALS), 'attribute_price_display' => $this->locale->formatPrice((string) $combinationImpactTaxExcluded, $this->context->getContext()->currency->iso_code), 'final_price' => $finalPrice, 'final_price_tax_included' => $finalPriceIncluded, 'attribute_priceTI' => '', // The value is displayed with tax included 'product_ecotax' => $productEcotaxIncluded->toPrecision(CommonAbstractType::PRESTASHOP_DECIMALS), 'attribute_ecotax' => $combination['ecotax_tax_included'], 'attribute_weight_impact' => $attribute_weight_impact, 'attribute_weight' => $combination['weight'], 'attribute_unit_impact' => $attribute_unity_price_impact, 'attribute_unity' => $combination['unit_price_impact'], 'attribute_minimal_quantity' => $combination['minimal_quantity'], 'attribute_low_stock_threshold' => $combination['low_stock_threshold'], 'attribute_low_stock_alert' => (bool) $combination['low_stock_alert'], 'available_date_attribute' => $combination['available_date'], 'attribute_default' => (bool) $combination['default_on'], 'attribute_location' => $this->productAdapter->getLocation($product->id, $combination['id_product_attribute']), 'attribute_quantity' => $this->productAdapter->getQuantity($product->id, $combination['id_product_attribute']), 'name' => $this->getCombinationName($attributesCombinations), 'id_product' => $product->id, ]; } /** * @param array $attributesCombinations * * @return string */ private function getCombinationName($attributesCombinations) { $name = []; foreach ($attributesCombinations as $attribute) { $name[] = $attribute['group_name'] . ' - ' . $attribute['attribute_name']; } return implode(', ', $name); } }
Save
Upload
??
Create Folder
??
Create File
??
Addons
|
??? Delete
??
Address
|
??? Delete
??
Admin
|
??? Delete
??
Assets
|
??? Delete
??
Attachment
|
??? Delete
??
Attribute
|
??? Delete
??
Backup
|
??? Delete
??
BestSales
|
??? Delete
??
Cache
|
??? Delete
??
Carrier
|
??? Delete
??
Cart
|
??? Delete
??
CartRule
|
??? Delete
??
CatalogPriceRule
|
??? Delete
??
Category
|
??? Delete
??
CMS
|
??? Delete
??
Configuration
|
??? Delete
??
Contact
|
??? Delete
??
Container
|
??? Delete
??
Converter
|
??? Delete
??
Country
|
??? Delete
??
CreditSlip
|
??? Delete
??
Currency
|
??? Delete
??
Customer
|
??? Delete
??
CustomerService
|
??? Delete
??
Debug
|
??? Delete
??
Domain
|
??? Delete
??
Email
|
??? Delete
??
Employee
|
??? Delete
??
EntityTranslation
|
??? Delete
??
Feature
|
??? Delete
??
File
|
??? Delete
??
Form
|
??? Delete
??
Geolocation
|
??? Delete
??
Grid
|
??? Delete
??
Group
|
??? Delete
??
Hook
|
??? Delete
??
Hosting
|
??? Delete
??
Image
|
??? Delete
??
Import
|
??? Delete
??
Invoice
|
??? Delete
??
Kpi
|
??? Delete
??
Language
|
??? Delete
??
Localization
|
??? Delete
??
Mail
|
??? Delete
??
MailTemplate
|
??? Delete
??
Manufacturer
|
??? Delete
??
Media
|
??? Delete
??
Meta
|
??? Delete
??
Module
|
??? Delete
??
NewProducts
|
??? Delete
??
News
|
??? Delete
??
Notification
|
??? Delete
??
Number
|
??? Delete
??
OptionalFeatures
|
??? Delete
??
Order
|
??? Delete
??
OrderMessage
|
??? Delete
??
OrderReturnState
|
??? Delete
??
OrderState
|
??? Delete
??
Pack
|
??? Delete
??
PDF
|
??? Delete
??
Preferences
|
??? Delete
??
Presenter
|
??? Delete
??
PricesDrop
|
??? Delete
??
Product
|
??? Delete
??
Profile
|
??? Delete
??
Requirement
|
??? Delete
??
Routes
|
??? Delete
??
Routing
|
??? Delete
??
Search
|
??? Delete
??
Security
|
??? Delete
??
Shop
|
??? Delete
??
Smarty
|
??? Delete
??
SpecificPrice
|
??? Delete
??
SqlManager
|
??? Delete
??
Supplier
|
??? Delete
??
Support
|
??? Delete
??
System
|
??? Delete
??
Tab
|
??? Delete
??
Tax
|
??? Delete
??
TaxRulesGroup
|
??? Delete
??
Theme
|
??? Delete
??
Translations
|
??? Delete
??
Twig
|
??? Delete
??
Upload
|
??? Delete
??
Warehouse
|
??? Delete
??
Webservice
|
??? Delete
??
Zone
|
??? Delete
??
AbstractObjectModelRepository.php
|
?? Edit
|
??? Delete
??
AbstractObjectModelValidator.php
|
?? Edit
|
??? Delete
??
AddressFactory.php
|
?? Edit
|
??? Delete
??
CacheManager.php
|
?? Edit
|
??? Delete
??
ClassLang.php
|
?? Edit
|
??? Delete
??
CombinationDataProvider.php
|
?? Edit
|
??? Delete
??
Configuration.php
|
?? Edit
|
??? Delete
??
ContainerBuilder.php
|
?? Edit
|
??? Delete
??
ContainerFinder.php
|
?? Edit
|
??? Delete
??
ContextStateManager.php
|
?? Edit
|
??? Delete
??
CoreException.php
|
?? Edit
|
??? Delete
??
Database.php
|
?? Edit
|
??? Delete
??
EntityMapper.php
|
?? Edit
|
??? Delete
??
EntityMetaDataRetriever.php
|
?? Edit
|
??? Delete
??
Environment.php
|
?? Edit
|
??? Delete
??
GeneralConfiguration.php
|
?? Edit
|
??? Delete
??
HookManager.php
|
?? Edit
|
??? Delete
??
ImageManager.php
|
?? Edit
|
??? Delete
??
LegacyContext.php
|
?? Edit
|
??? Delete
??
LegacyContextLoader.php
|
?? Edit
|
??? Delete
??
LegacyHookSubscriber.php
|
?? Edit
|
??? Delete
??
LegacyLogger.php
|
?? Edit
|
??? Delete
??
ObjectPresenter.php
|
?? Edit
|
??? Delete
??
RoundingMapper.php
|
?? Edit
|
??? Delete
??
ServiceLocator.php
|
?? Edit
|
??? Delete
??
StockManager.php
|
?? Edit
|
??? Delete
??
SymfonyContainer.php
|
?? Edit
|
??? Delete
??
Tools.php
|
?? Edit
|
??? Delete
??
Validate.php
|
?? Edit
|
??? Delete