วิธีแสดงส่วนลดสินค้าที่กำหนดค่าได้เป็นเปอร์เซ็นต์ในรายการผลิตภัณฑ์ใน 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>

สวัสดีคุณได้รับคำตอบใช่ไหม
ถาม Bytes

@Ask Bytes ยังไม่
Meera

@AskBytes แจ้งให้เราทราบหากยังไม่ทำงาน ฉันทดสอบโค้ดของฉันและมันทำงานอย่างถูกต้อง
Rohan Hapani

คำตอบ:


2

คุณสามารถเพิ่มไฟล์สร้าง saperate price สำหรับสินค้าและรหัสที่สามารถกำหนดค่าได้

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;
    }

โซลูชันของคุณจะช่วยฉัน .. มันแสดงให้เห็นว่ามีการลดราคาแถบสีน้อยที่สุดเท่านั้น แต่ราคาส่วนลดจะไม่เปลี่ยนแปลงเมื่อเลือกตัวเลือกต่าง ๆ ของ swatch
ถาม Bytes

1

คุณสามารถตรวจสอบได้โดยไม่ต้องแทนที่ไฟล์ใด ๆ คุณต้องใช้afterPluginเพื่อสิ่งนั้น

1) สร้างไฟล์di.xmlที่app / code / VendorName / ModuleName / etc / frontend

<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) สร้างไฟล์ปลั๊กอินProductList.phpที่app / code / VendorName / ModuleName / Plugin

<?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;
        }
    }
}

ผลผลิต (ในผลิตภัณฑ์ที่กำหนดค่าได้):

ป้อนคำอธิบายรูปภาพที่นี่

หวังว่ามันจะมีประโยชน์สำหรับคุณ


คุณควรใช้อย่างอื่นถ้า ($ product-> getTypeId () == "กำหนดค่าได้") {} เพราะหน้าแยกย่อยโดยกลุ่มผลิตภัณฑ์หรือกลุ่ม วิธี getUsedProducts ไม่ได้ใช้สำหรับชุดผลิตภัณฑ์และกลุ่ม
HaFiz 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.