File Manager Lite
Dir:
/home/u540325668/domains/dumbafarm.in/public_html/src/Adapter
Upload
[..]
AbstractObjectModelValidator.php (3.63 KB)
Edit
Rename
Del
Address/
Rename
Del
Admin/
Rename
Del
Assets/
Rename
Del
Attachment/
Rename
Del
Attribute/
Rename
Del
AttributeGroup/
Rename
Del
Backup/
Rename
Del
BestSales/
Rename
Del
CMS/
Rename
Del
Cache/
Rename
Del
Carrier/
Rename
Del
Cart/
Rename
Del
CartRule/
Rename
Del
CatalogPriceRule/
Rename
Del
Category/
Rename
Del
ClassLang.php (1.68 KB)
Edit
Rename
Del
CombinationDataProvider.php (8.38 KB)
Edit
Rename
Del
Configuration/
Rename
Del
Configuration.php (13.63 KB)
Edit
Rename
Del
Contact/
Rename
Del
Container/
Rename
Del
ContainerBuilder.php (8.76 KB)
Edit
Rename
Del
ContainerFinder.php (2.34 KB)
Edit
Rename
Del
ContextStateManager.php (10.09 KB)
Edit
Rename
Del
Converter/
Rename
Del
CoreException.php (1.2 KB)
Edit
Rename
Del
Country/
Rename
Del
CreditSlip/
Rename
Del
Currency/
Rename
Del
Customer/
Rename
Del
Debug/
Rename
Del
Domain/
Rename
Del
Email/
Rename
Del
Employee/
Rename
Del
EntityMapper.php (5.44 KB)
Edit
Rename
Del
EntityMetaDataRetriever.php (1.99 KB)
Edit
Rename
Del
EntityTranslation/
Rename
Del
Environment.php (2.61 KB)
Edit
Rename
Del
Feature/
Rename
Del
File/
Rename
Del
Form/
Rename
Del
Geolocation/
Rename
Del
Grid/
Rename
Del
Group/
Rename
Del
Hook/
Rename
Del
HookManager.php (3.88 KB)
Edit
Rename
Del
Hosting/
Rename
Del
Image/
Rename
Del
ImageManager.php (4.22 KB)
Edit
Rename
Del
Import/
Rename
Del
Invoice/
Rename
Del
Kpi/
Rename
Del
Language/
Rename
Del
LegacyContext.php (10.75 KB)
Edit
Rename
Del
LegacyContextLoader.php (4.16 KB)
Edit
Rename
Del
LegacyHookSubscriber.php (4.67 KB)
Edit
Rename
Del
LegacyLogger.php (4.78 KB)
Edit
Rename
Del
Localization/
Rename
Del
Mail/
Rename
Del
MailTemplate/
Rename
Del
Manufacturer/
Rename
Del
Media/
Rename
Del
Meta/
Rename
Del
Module/
Rename
Del
NewProducts/
Rename
Del
Notification/
Rename
Del
Number/
Rename
Del
ObjectPresenter.php (1.3 KB)
Edit
Rename
Del
OptionalFeatures/
Rename
Del
Order/
Rename
Del
OrderMessage/
Rename
Del
OrderReturn/
Rename
Del
OrderReturnState/
Rename
Del
OrderState/
Rename
Del
PDF/
Rename
Del
Pack/
Rename
Del
Preferences/
Rename
Del
Presenter/
Rename
Del
PricesDrop/
Rename
Del
Product/
Rename
Del
Profile/
Rename
Del
Requirement/
Rename
Del
RoundingMapper.php (2.46 KB)
Edit
Rename
Del
Routes/
Rename
Del
Routing/
Rename
Del
Search/
Rename
Del
SearchEngine/
Rename
Del
Security/
Rename
Del
ServiceLocator.php (2.02 KB)
Edit
Rename
Del
Session/
Rename
Del
Shop/
Rename
Del
Smarty/
Rename
Del
SpecificPrice/
Rename
Del
SqlManager/
Rename
Del
State/
Rename
Del
StockManager.php (7.73 KB)
Edit
Rename
Del
Store/
Rename
Del
Supplier/
Rename
Del
Support/
Rename
Del
SymfonyContainer.php (1.92 KB)
Edit
Rename
Del
System/
Rename
Del
Tab/
Rename
Del
Tax/
Rename
Del
TaxRulesGroup/
Rename
Del
Theme/
Rename
Del
Title/
Rename
Del
Tools.php (5.79 KB)
Edit
Rename
Del
Translations/
Rename
Del
Twig/
Rename
Del
Upload/
Rename
Del
Validate.php (3.74 KB)
Edit
Rename
Del
Warehouse/
Rename
Del
Webservice/
Rename
Del
Zone/
Rename
Del
Edit: 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; /** * @deprecated since 8.1 and will be removed in next major. * * 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); } }
Simpan