Files
Falcon-PrestaShop-9/templates/checkout/_partials/cart-voucher.tpl

97 lines
3.9 KiB
Smarty

{**
* 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 Academic Free License 3.0 (AFL-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/AFL-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/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*}
{if $cart.vouchers.allowed}
{block name='cart_voucher'}
<div class="block-promo">
<div class="cart-voucher js-cart-voucher">
{if $cart.vouchers.added}
{block name='cart_voucher_list'}
<ul class="promo-name card-block">
{foreach from=$cart.vouchers.added item=voucher}
<li class="cart-summary-line">
<span class="label">{$voucher.name}</span>
<div class="value d-inline-flex align-items-center">
<span>{$voucher.reduction_formatted}</span>
{if isset($voucher.code) && $voucher.code !== ''}
<a href="{$voucher.delete_url}" data-link-action="remove-voucher" class="text-danger ml-1">
<span class="material-icons font-reset btn-icon">delete</span>
</a>
{/if}
</div>
</li>
{/foreach}
</ul>
{/block}
{/if}
<p class="h6 mb-2">
{l s='Have a promo code?' d='Shop.Theme.Checkout'}
</p>
<div id="promo-code">
<div class="promo-code">
{block name='cart_voucher_form'}
<form action="{$urls.pages.cart}" data-link-action="add-voucher" method="post">
<input type="hidden" name="token" value="{$static_token}">
<input type="hidden" name="addDiscount" value="1">
<div class="input-group js-parent-focus">
<input class="promo-input form-control js-child-focus" type="text" name="discount_name" placeholder="{l s='Promo code' d='Shop.Theme.Checkout'}">
<span class="input-group-append">
<button type="submit" class="btn btn-primary">
{l s='Add' d='Shop.Theme.Actions'}
</button>
</span>
</div>
</form>
{/block}
{block name='cart_voucher_notifications'}
<div class="alert alert-danger js-error mt-2" role="alert" style="display:none;">
<span class="js-error-text"></span>
</div>
{/block}
</div>
</div>
{if $cart.discounts|count > 0}
<p class="block-promo promo-highlighted h6 mb-1 mt-3">
{l s='Take advantage of our exclusive offers:' d='Shop.Theme.Actions'}
</p>
<ul class="js-discount card-block promo-discounts mb-0">
{foreach from=$cart.discounts item=discount}
<li class="cart-summary-line">
<span class="label">
<a href="#" class="js-code font-weight-bold">{$discount.code}</a> - {$discount.name}
</span>
</li>
{/foreach}
</ul>
{/if}
</div>
</div>
{/block}
{/if}