Magento 2의 제품 목록에 구성 가능한 제품 할인을 백분율로 표시하는 방법


10

제품 세부 정보 페이지에는 할인 비율이 표시됩니다. 목록 페이지를 열면 구성 가능한 제품의 백분율을 표시 할 수 없습니다.

그에 대한 해결책을 알려주십시오.

아래 코드를 사용했지만 구성 가능한 제품에서는 작동하지 않습니다.

<div class="discount-p">
    <?php

    if($_product->getTypeId() == "simple") {
        $simplePrice = $_product->getPrice();
        } else {
            $_children = $_product->getTypeInstance()->getUsedProducts($_product);
            foreach ($_children as $child){
            $simplePrice = $child->getPrice();
            break;
        }
    }

    $_finalPrice =$_product->getFinalPrice();
    $_price = $simplePrice;
    if($_finalPrice < $_price) {
    $_savingPercent = 100 - round(($_finalPrice / $_price)*100);
    echo '('. $_savingPercent . '%off)';

    }
    ?>
</div>

안녕, 당신은 해결책을 얻었습니까?
바이트

@Ask Bytes는 아직
Meera

@AskBytes 여전히 작동하지 않는 경우 알려주십시오. 내 코드를 테스트했는데 제대로 작동합니다.
Rohan Hapani

답변:


2

구성 가능한 제품 및 그 안에 코드에 대한 적정 가격 파일 작성을 추가 할 수 있습니다.

catalog_product_prices.xml

코드 추가

<?xml version="1.0"?>

<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd">
    <referenceBlock name="render.product.prices">
        <arguments>
            <argument name="default" xsi:type="array">
                <item name="prices" xsi:type="array">
                    <item name="final_price" xsi:type="array">
                        <item name="render_class" xsi:type="string">Vendor\Module\Pricing\Render\FinalPriceBox</item>
                        <item name="render_template" xsi:type="string">Vendor_Module::product/price/final_price.phtml</item>
                    </item>
                </item>
            </argument>
            <argument name="configurable" xsi:type="array">
                <item name="prices" xsi:type="array">
                    <item name="final_price" xsi:type="array">
                        <item name="render_class" xsi:type="string">Magento\ConfigurableProduct\Pricing\Render\FinalPriceBox</item>
                        <item name="render_template" xsi:type="string">Vendor_Module::product/price/final_price_configurable.phtml</item>
                    </item>
                </item>
            </argument>
        </arguments>
    </referenceBlock>
</layout>

구성 가능한 제품이므로 getFinalPrice()및 로 확인할 수 없습니다 getSpecialPrice().

구성 가능한 제품에 대한 코드를 아래에 추가하십시오.

$priceModel = $block->getPriceType('regular_price');
$finalPriceModel = $block->getPriceType('final_price');

<?php if($finalPriceModel->getAmount() < $priceModel->getAmount()) : ?>
        <span class="old-price sly-old-price no-display config-old" style="text-decoration: line-through;">
            <?= $block->renderAmount($priceModel->getAmount(), [
                'price_id'          => $block->getPriceId('old-price-' . $idSuffix),
                'price_type'        => 'oldPrice',
                'include_container' => true,
                'skip_adjustments'  => true
            ]); ?>
        </span>
        <?php 

            $array = (array)$priceModel->getAmount();
            $prefix = chr(0).'*'.chr(0);
            $price = $array[$prefix.'amount'];

            $array = (array)$finalPriceModel->getAmount();
            $prefix = chr(0).'*'.chr(0);
            $finalPrice = $array[$prefix.'amount'];

            $percentage = 100 - round(($finalPrice / $price)*100);

            echo "<span class='percent-amt'>- ".$percentage."%</span>";
        ?>
    <?php endif; ?>

참고 : 변경 파일로 직접 얻을 수 있습니다 .app\design\frontend\Vendor\theme\Magento_Catalog\templates\product\price\final_price.phtml 구성 가능한 제품에 대한 조건을 지정해야합니다.

목록 페이지에 백분율이 표시됩니다 여기에 이미지 설명을 입력하십시오


1

나는 이런 식으로 할 것

public function getPercentage(\Magento\Catalog\Model\Product $product)
{
    $baseprice = 0;
    $finalprice = 0;
    $percentage = 0;

    if ($product->getTypeId() == 'configurable') {
        $baseprice = $product->getPriceInfo()
            ->getPrice('regular_price')
            ->getValue();

        $finalprice = $product->getPriceInfo()
            ->getPrice('final_price')
            ->getValue();
    } else {
        $baseprice = $product->getPrice();
        $finalprice = $product->getFinalPrice();
    }

    if ($finalprice < $baseprice) {
        $percentage = round(-100 * (1 - ($finalprice / $baseprice)));
    }

    return $percentage;
}

템플릿으로 불러

    if ($percentage = $helper->getPercentage($product)) {
        echo $percentage;
    }

귀하의 솔루션이 도움이됩니다 .. 제품 견본 할인 만 표시합니다. 그러나 다른 견본 옵션을 선택할 때 할인 가격이 변경되지 않습니다.
Bytes

1

파일을 재정의하지 않고 확인할 수 있습니다. 이를 위해서는 afterPlugin 을 사용해야 합니다.

1) app / code / VendorName / ModuleName / etc / frontend 에서 di.xml 파일을 만듭니다.

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
    <type name="Magento\Catalog\Block\Product\ListProduct">
        <plugin name="block-product-list" type="VendorName\ModuleName\Plugin\ProductList"/>
    </type>
</config>

2) app / code / VendorName / ModuleName / Plugin 에서 ProductList.php 플러그인 파일 생성

<?php
namespace VendorName\ModuleName\Plugin;

class ProductList {

    public function afterGetProductDetailsHtml(
        \Magento\Catalog\Block\Product\ListProduct $subject,
        $result,
        \Magento\Catalog\Model\Product $product
    ) {
        if ($product->getTypeId() == "simple") {
            $simplePrice = $product->getPrice();
        } else {
            $_children = $product->getTypeInstance()->getUsedProducts($product);
            foreach ($_children as $child) {
                $simplePrice = $child->getPrice();
                break;
            }
        }

        $finalPrice = $product->getFinalPrice();
        $_price = $simplePrice;
        if ($finalPrice < $_price) {
            $discountPer = 100 - round(($finalPrice / $_price) * 100);
            return $result . 'Your save : ' . $discountPer . '%';
        } else {
            return $result;
        }
    }
}

출력 (구성 가능한 제품) :

여기에 이미지 설명을 입력하십시오

희망, 그것은 당신에게 도움이 될 것입니다.


번들 또는 그룹 제품의 페이지가 분류되므로 if ($ product-> getTypeId () == "configurable") {}을 사용해야합니다. getUsedProducts 방법은 번들 그룹 제품에 대한 사용하지
하 피즈 Umer

1
구성 가능한 제품에 대한이 질문입니다. 그래서 나는 그것에 대한 대답을 추가합니다.
Rohan Hapani

0

아래 코드로 시도하십시오 :

<?php
    $item = $block->getSaleableItem();
    $_savePercent = 100 - round(((float)$item->getFinalPrice() / (float)$item->getPrice()) * 100);
    echo '<b style="color:#008000">'.$_savePercent . '% off </b>';
    ?>

나는 당신을 위해 그 일을 바랍니다

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.