W widoku strony domyślnie wyświetlana jest najniższa cena powiązanych produktów.
Muszę wyświetlić najwyższą cenę powiązanych produktów. Każdy ma pojęcie, gdzie znajduje się logika. Jak dostosować to zachowanie.
aktualizacja:
Magento \ ConfigurableProduct \ Price \ Price \ ConfigurablePriceResolver
/**
* @param \Magento\Framework\Pricing\SaleableInterface|\Magento\Catalog\Model\Product $product
* @return float
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function resolvePrice(\Magento\Framework\Pricing\SaleableInterface $product)
{
$price = null;
foreach ($this->configurable->getUsedProducts($product) as $subProduct) {
$productPrice = $this->priceResolver->resolvePrice($subProduct);
$price = $price ? min($price, $productPrice) : $productPrice;
}
if (!$price) {
throw new \Magento\Framework\Exception\LocalizedException(
__('Configurable product "%1" do not have sub-products', $product->getName())
);
}
return (float)$price;
}
Próbuję zastąpić ten podstawowy plik, ale nie działa.
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="Magento\ConfigurableProduct\Pricing\Price\ConfigurablePriceResolver" type="Kensium\Catalog\Pricing\Price\ConfigurablePriceResolver" />
<?php
namespace Kensium\Catalog\Pricing\Price;
class ConfigurablePriceResolver extends \Magento\ConfigurableProduct\Pricing\Price\ConfigurablePriceResolver
{
/**
* @param \Magento\Framework\Pricing\SaleableInterface|\Magento\Catalog\Model\Product $product
* @return float
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function resolvePrice(\Magento\Framework\Pricing\SaleableInterface $product)
{
$price = null;
$assPrice=array();
foreach ($this->configurable->getUsedProducts($product) as $subProduct) {
$productPrice = $this->priceResolver->resolvePrice($subProduct);
$assPrice[]=$productPrice;
$price = $price ? min($price, $productPrice) : $productPrice;
}
if (!$price) {
throw new \Magento\Framework\Exception\LocalizedException(
__('Configurable product "%1" do not have sub-products', $product->getName())
);
}
return (float)(max($assPrice));
//return (float)$price;
}
}
magento2
configurable-product
price
sivakumar
źródło
źródło
Odpowiedzi:
Musisz zrobić wtyczkę, aby wyświetlać maksymalną cenę na stronie szczegółów. Poniżej znajduje się moduł krok po kroku dla Twoich potrzeb,
Ścieżka pliku, aplikacja / kod / dostawca / nazwa modułu /
Plik rejestracyjny, aplikacja / kod / dostawca / nazwa modulatora / rejestracja.php
app / code / Vendor / Modulename / etc / module.xml
app / code / Vendor / Modulename / etc / frontend / di.xml
app / code / Vendor / Modulename / Price / ConfigurablePrice.php
Wewnątrz tego pliku musisz pluginize funkcji resolprice ()
Uruchom polecenie
usuń folder var i sprawdź w interfejsie
źródło
Zobaczyć
\Magento\ConfigurableProduct\Pricing\Price\ConfigurablePriceResolver::resolvePrice
. Jest to metoda odpowiedzialna za obliczanie ceny konfigurowalnego produktu na podstawie ceny podrzędnej.Możesz go podłączyć i implementować algorytm.
źródło