тут очень много с карточкой товара и импортом.
This commit is contained in:
@@ -9,11 +9,26 @@ $activeVariant = $variants[0] ?? [
|
||||
'unit' => $product['unit'] ?? '',
|
||||
'price_per_unit' => $product['price_per_unit'] ?? null,
|
||||
'package_price' => $product['package_price'] ?? null,
|
||||
'package_quantity' => $product['package_quantity'] ?? 0,
|
||||
'old_package_price' => $product['old_package_price'] ?? null,
|
||||
];
|
||||
$cardId = 'product-card-' . (int) ($product['id'] ?? 0);
|
||||
$activePackagePrice = (float) ($activeVariant['package_price'] ?? 0);
|
||||
$activeUnitPrice = $activeVariant['price_per_unit'] === null ? null : (float) $activeVariant['price_per_unit'];
|
||||
$activePackageQuantity = (float) ($activeVariant['package_quantity'] ?? 0);
|
||||
$activeVariantOldPackagePrice = $activeVariant['old_package_price'] ?? null;
|
||||
$activeOldPackagePrice = (
|
||||
$activeVariantOldPackagePrice !== null
|
||||
&& (float) $activeVariantOldPackagePrice > $activePackagePrice
|
||||
)
|
||||
? (float) $activeVariantOldPackagePrice
|
||||
: null;
|
||||
$activeOldUnitPrice = ($activeOldPackagePrice !== null && $activePackageQuantity > 0 && $activeUnitPrice !== null)
|
||||
? $activeOldPackagePrice / $activePackageQuantity
|
||||
: null;
|
||||
if ($activeOldUnitPrice !== null && $activeOldUnitPrice <= $activeUnitPrice) {
|
||||
$activeOldUnitPrice = null;
|
||||
}
|
||||
?>
|
||||
<article
|
||||
class="product-card price-aware"
|
||||
@@ -27,38 +42,37 @@ $activeUnitPrice = $activeVariant['price_per_unit'] === null ? null : (float) $a
|
||||
<a class="product-card-image" href="/product/<?= e($product['slug']) ?>" aria-label="<?= e($product['name']) ?>">
|
||||
<img src="<?= e((string) $product['main_image_path']) ?>" alt="<?= e((string) $product['name']) ?>">
|
||||
</a>
|
||||
<?php else: ?>
|
||||
<a class="product-card-image product-card-image-placeholder" href="/product/<?= e($product['slug']) ?>" aria-label="<?= e($product['name']) ?>">
|
||||
<span>Рыбсток</span>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
|
||||
<p class="product-category"><?= e($product['category_display_name'] ?? $product['category_name'] ?? 'Каталог') ?></p>
|
||||
<h3><a href="/product/<?= e($product['slug']) ?>"><?= e($product['name']) ?></a></h3>
|
||||
|
||||
<?php if ($activeVariant['price_per_unit'] !== null): ?>
|
||||
<span class="price-line">Цена за <span data-unit-label><?= e(unit_label((string) $activeVariant['unit'])) ?></span>: <b data-price-unit data-dynamic-unit-price data-base-unit-price="<?= e((string) $activeUnitPrice) ?>"><?= e(money_label($activeVariant['price_per_unit'])) ?></b></span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($activeVariant['package_price'] !== null): ?>
|
||||
<strong class="package-price-line">
|
||||
<span class="old-price" data-old-price<?= empty($activeVariant['old_package_price']) ? ' hidden' : '' ?>><?= e(money_label($activeVariant['old_package_price'] ?? null)) ?></span>
|
||||
За упаковку: <span data-package-price data-dynamic-package-price data-base-package-price="<?= e((string) $activePackagePrice) ?>"><?= e(money_label($activeVariant['package_price'])) ?></span>
|
||||
<button class="price-tier-trigger" type="button" aria-label="Показать градацию цены">?</button>
|
||||
</strong>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="price-tier-popover" role="tooltip">
|
||||
<strong>Варианты цены</strong>
|
||||
<dl>
|
||||
<div><dt>Базовая цена</dt><dd data-tier-base><?= e(money_label($activePackagePrice)) ?></dd></div>
|
||||
<div><dt>Цена при сумме заказа от 20 000р. наличными</dt><dd data-tier-cash-20><?= e(money_label(floor($activePackagePrice * 0.95))) ?></dd></div>
|
||||
<div><dt>Цена при сумме заказа от 50 000р. наличными</dt><dd data-tier-cash-50><?= e(money_label(floor($activePackagePrice * 0.93))) ?></dd></div>
|
||||
<div><dt>Оплата по расчетному счету</dt><dd data-tier-invoice><?= e(money_label(floor($activePackagePrice * 1.08))) ?></dd></div>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<?php if ($variants !== []): ?>
|
||||
<div class="variant-choice" aria-label="Выбор фасовки">
|
||||
<span>Фасовка:</span>
|
||||
<span>Доступные фасовки:</span>
|
||||
<div class="variant-choice-list">
|
||||
<?php foreach ($variants as $index => $variant): ?>
|
||||
<?php
|
||||
$variantPackagePrice = (float) ($variant['package_price'] ?? 0);
|
||||
$variantUnitPrice = $variant['price_per_unit'] === null ? null : (float) $variant['price_per_unit'];
|
||||
$variantPackageQuantity = (float) ($variant['package_quantity'] ?? 0);
|
||||
$variantOldPackagePrice = (
|
||||
!empty($variant['old_package_price'])
|
||||
&& (float) $variant['old_package_price'] > $variantPackagePrice
|
||||
)
|
||||
? (float) $variant['old_package_price']
|
||||
: null;
|
||||
$variantOldUnitPrice = ($variantOldPackagePrice !== null && $variantPackageQuantity > 0 && $variantUnitPrice !== null)
|
||||
? $variantOldPackagePrice / $variantPackageQuantity
|
||||
: null;
|
||||
if ($variantOldUnitPrice !== null && $variantOldUnitPrice <= $variantUnitPrice) {
|
||||
$variantOldUnitPrice = null;
|
||||
}
|
||||
?>
|
||||
<button
|
||||
class="variant-choice-button<?= $index === 0 ? ' is-active' : '' ?>"
|
||||
type="button"
|
||||
@@ -67,10 +81,12 @@ $activeUnitPrice = $activeVariant['price_per_unit'] === null ? null : (float) $a
|
||||
data-variant-name="<?= e((string) ($variant['name'] ?? '')) ?>"
|
||||
data-unit="<?= e(unit_label((string) $variant['unit'])) ?>"
|
||||
data-base-unit-price="<?= e((string) ($variant['price_per_unit'] ?? '')) ?>"
|
||||
data-old-unit-price="<?= e($variantOldUnitPrice === null ? '' : (string) $variantOldUnitPrice) ?>"
|
||||
data-base-package-price="<?= e((string) ($variant['package_price'] ?? '')) ?>"
|
||||
data-price-unit="<?= e(money_label($variant['price_per_unit'])) ?>"
|
||||
data-package-price="<?= e(money_label($variant['package_price'])) ?>"
|
||||
data-old-price="<?= e(money_label($variant['old_package_price'] ?? null)) ?>"
|
||||
data-variant-package-label="<?= e((string) ($variant['name'] ?? '')) ?>"
|
||||
data-variant-unit-price-label="<?= e(money_label($variant['price_per_unit'])) ?>"
|
||||
data-variant-package-price-label="<?= e(money_label($variant['package_price'])) ?>"
|
||||
data-old-price="<?= e($variantOldPackagePrice === null ? '' : money_label($variantOldPackagePrice)) ?>"
|
||||
>
|
||||
<?= e((string) $variant['name']) ?>
|
||||
</button>
|
||||
@@ -79,5 +95,43 @@ $activeUnitPrice = $activeVariant['price_per_unit'] === null ? null : (float) $a
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<button class="add-to-cart-button" type="button">В корзину</button>
|
||||
<?php if ($activeVariant['price_per_unit'] !== null): ?>
|
||||
<span class="price-line">
|
||||
Цена за <span data-unit-label><?= e(unit_label((string) $activeVariant['unit'])) ?></span>:
|
||||
<span class="old-price" data-old-unit-price-display<?= $activeOldUnitPrice === null ? ' hidden' : '' ?>><?= e(money_label($activeOldUnitPrice)) ?></span>
|
||||
<b data-price-unit data-dynamic-unit-price data-base-unit-price="<?= e((string) $activeUnitPrice) ?>"><?= e(money_label($activeVariant['price_per_unit'])) ?></b>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($activeVariant['package_price'] !== null): ?>
|
||||
<strong class="package-price-line">
|
||||
<span class="package-price-label">За фасовку <span data-package-label-display><?= e((string) $activeVariant['name']) ?></span>:</span>
|
||||
<span class="package-price-values">
|
||||
<span class="old-price" data-old-package-price-display<?= $activeOldPackagePrice === null ? ' hidden' : '' ?>><?= e(money_label($activeOldPackagePrice)) ?></span>
|
||||
<span data-package-price data-dynamic-package-price data-base-package-price="<?= e((string) $activePackagePrice) ?>"><?= e(money_label($activeVariant['package_price'])) ?></span>
|
||||
</span>
|
||||
<button class="price-tier-trigger" type="button" aria-label="Показать градацию цены">?</button>
|
||||
</strong>
|
||||
<?php if ($activeVariant['price_per_unit'] !== null): ?>
|
||||
<span class="package-price-note">Цена за <span data-unit-label-note><?= e(unit_label((string) $activeVariant['unit'])) ?></span> × <span data-package-label-note><?= e((string) $activeVariant['name']) ?></span></span>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="price-tier-popover" role="tooltip">
|
||||
<strong>Варианты цены за наличный расчет:</strong>
|
||||
<dl>
|
||||
<div><dt>Базовая цена</dt><dd data-tier-base><?= e(money_label($activePackagePrice)) ?></dd></div>
|
||||
<div><dt>При заказе от 20 000р.</dt><dd data-tier-cash-20><?= e(money_label(floor($activePackagePrice * 0.95))) ?></dd></div>
|
||||
<div><dt>При заказе от 50 000р.</dt><dd data-tier-cash-50><?= e(money_label(floor($activePackagePrice * 0.93))) ?></dd></div>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<div class="product-card-actions">
|
||||
<div class="quantity-stepper" data-quantity-control aria-label="Количество фасовок">
|
||||
<button type="button" data-quantity-minus aria-label="Уменьшить количество">-</button>
|
||||
<input data-quantity-input type="text" inputmode="numeric" value="1" aria-label="Количество">
|
||||
<button type="button" data-quantity-plus aria-label="Увеличить количество">+</button>
|
||||
</div>
|
||||
<button class="add-to-cart-button" type="button">В корзину</button>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
Reference in New Issue
Block a user