Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-msrp/view/frontend/web/template/product/item/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-msrp/view/frontend/web/template/product/item/popup.html

<!--
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<div class="map-popup"
     data-role="msrp-popup">
    <div class="map-info-price">
        <div class="price-box">
            <div class="map-msrp">
                <span class="label"
                      translate="'Price'"></span>

                <span class="old-price map-old-price">
                    <span class="price-container price-msrp">
                        <span class="price-wrapper"
                              html="getMsrpPriceUnsanitizedHtml($row())"></span>
                    </span>
                </span>
            </div>

            <div class="map-price">
                <span class="label"
                      translate="'Actual Price'"></span>

                <span class="actual-price">
                    <if args="isAllowed()">
                        <each args="data: getPrices($row()), as: '$price'">
                            <with args="$price">
                                <render args="getBody()"></render>
                            </with>
                        </each>
                    </if>
                </span>
            </div>
        </div>

        <div class="map-form-addtocart">
            <with args="$parent.getComponentByCode('addtocart-button')">
                <render args="getBody()"></render>
            </with>
        </div>
    </div>

    <div class="map-text"
         html="getExplanationMessageUnsanitizedHtml($row())"></div>
</div>