10 <?php
foreach (
$errors as $addressId => $error) : ?>
11 <div
class=
"message message-error error">
12 <?=
$block->escapeHtml($error); ?>
13 <?=
$block->escapeHtml(
__(
'Please see')); ?>
14 <a href=
"#<?= $block->escapeHtml($block->getCheckoutData()->getAddressAnchorName($addressId)); ?>">
15 <?=
$block->escapeHtml(
__(
'details below')); ?></a>.
18 <
form action=
"<?= $block->escapeUrl($block->getPostActionUrl()); ?>" 20 id=
"review-order-form" 21 data-
mage-init=
'{"orderOverview": {}, "validation":{}}' 22 class=
"form multicheckout order-review">
23 <?=
$block->getBlockHtml(
'formkey'); ?>
24 <div
class=
"block block-billing">
25 <div
class=
"block-title"><strong><?=
$block->escapeHtml(
__(
'Billing Information')); ?></strong></div>
26 <div
class=
"block-content">
27 <div
class=
"box box-billing-address">
29 <strong
class=
"box-title">
30 <span><?=
$block->escapeHtml(
__(
'Billing Address')); ?></span>
31 <a href=
"<?= $block->escapeUrl($block->getEditBillingAddressUrl($address)); ?>" 32 class=
"action edit"><span><?=
$block->escapeHtml(
__(
'Change')); ?></span></a>
34 <div
class=
"box-content">
40 <div
class=
"box box-billing-method">
41 <strong
class=
"box-title">
42 <span><?=
$block->escapeHtml(
__(
'Payment Method')); ?></span>
43 <a href=
"<?= $block->escapeUrl($block->getEditBillingUrl()); ?>" 44 class=
"action edit"><span><?=
$block->escapeHtml(
__(
'Change')); ?></span></a>
46 <div
class=
"box-content">
48 name=
"payment[cc_number]" 49 value=
"<?= $block->escapeHtml($block->getPayment()->getCcNumber()) ?>" />
51 name=
"payment[cc_cid]" 52 value=
"<?= $block->escapeHtml($block->getPayment()->getCcCid()) ?>" />
53 <?=
$block->getPaymentHtml() ?>
58 <div
class=
"block block-shipping">
59 <div
class=
"block-title"><strong><?=
$block->escapeHtml(
__(
'Shipping Information')); ?></strong></div>
60 <?php
$mergedCells = ($this->helper(
Magento\Tax\Helper\Data::class)->displayCartBothPrices() ? 2 : 1); ?>
62 <div
class=
"block-content">
63 <a
name=
"<?= $block->escapeHtml($block->getCheckoutData() 64 ->getAddressAnchorName($address->getId())); ?>"></a>
69 <?=
$block->escapeHtml(
$block->getShippingAddressCount())?>
73 <?php
if ($error =
$block->getCheckoutData()->getAddressError(
$address)) : ?>
74 <div
class=
"error-description"><?=
$block->escapeHtml($error); ?></div>
76 <div
class=
"box box-shipping-address">
77 <strong
class=
"box-title">
78 <span><?=
$block->escapeHtml(
__(
'Shipping To')); ?></span>
79 <a href=
"<?= $block->escapeUrl($block->getEditShippingAddressUrl($address)); ?>" 80 class=
"action edit"><span><?=
$block->escapeHtml(
__(
'Change')); ?></span></a>
82 <div
class=
"box-content">
88 <div
class=
"box box-shipping-method">
89 <strong
class=
"box-title">
90 <span><?=
$block->escapeHtml(
__(
'Shipping Method')); ?></span>
91 <a href=
"<?= $block->escapeUrl($block->getEditShippingUrl()); ?>" 92 class=
"action edit"><span><?=
$block->escapeHtml(
__(
'Change')); ?></span></a>
95 <div
class=
"box-content">
96 <?=
$block->escapeHtml($_rate->getCarrierTitle()) ?>
97 (<?=
$block->escapeHtml($_rate->getMethodTitle()) ?>)
105 <span
class=
"price-including-tax" 106 data-label=
"<?= $block->escapeHtml(__('Incl. Tax')); ?>">
109 <span
class=
"price-excluding-tax" 110 data-label=
"<?= $block->escapeHtml(__('Excl. Tax')); ?>">
119 <div
class=
"box box-items">
120 <div
class=
"box-content">
121 <div
class=
"order-review-wrapper table-wrapper">
122 <table
class=
"items data table table-order-review" 123 id=
"overview-table-<?= $block->escapeHtml($address->getId()); ?>">
124 <caption
class=
"table-caption"><?=
$block->escapeHtml(
__(
'Order Review')); ?></caption>
127 <th
class=
"col item" scope=
"col"><?=
$block->escapeHtml(
__(
'Item')); ?>
128 <a href=
"<?= $block->escapeUrl($block->getAddressesEditUrl()); ?>" 130 <span><?=
$block->escapeHtml(
__(
'Edit')); ?></span>
133 <th
class=
"col price" scope=
"col"><?=
$block->escapeHtml(
__(
'Price')); ?></th>
134 <th
class=
"col qty" scope=
"col"><?=
$block->escapeHtml(
__(
'Qty')); ?></th>
135 <th
class=
"col subtotal" scope=
"col"><?=
$block->escapeHtml(
__(
'Subtotal')); ?></th>
156 <?php
if (
$block->getQuote()->hasVirtualItems()) : ?>
157 <div
class=
"block block-other">
159 <a
name=
"<?= $block->escapeHtml($block->getCheckoutData() 160 ->getAddressAnchorName($billingAddress->getId())); ?>"></a>
161 <div
class=
"block-title"><strong><?=
$block->escapeHtml(
__(
'Other items in your order')); ?></strong></div>
163 <div
class=
"error-description"><?=
$block->escapeHtml($error); ?></div>
165 <div
class=
"block-content">
166 <strong
class=
"subtitle">
167 <span><?=
$block->escapeHtml(
__(
'Items')); ?></span>
168 <a href=
"<?= $block->escapeUrl($block->getVirtualProductEditUrl()); ?>" 169 class=
"action edit"><span><?=
$block->escapeHtml(
__(
'Edit Items')); ?></span></a>
171 <?php
$mergedCells = ($this->helper(
Magento\Tax\Helper\Data::class)->displayCartBothPrices() ? 2 : 1); ?>
172 <div
class=
"order-review-wrapper table-wrapper">
173 <table
class=
"items data table table-order-review" id=
"virtual-overview-table">
174 <caption
class=
"table-caption"><?=
$block->escapeHtml(
__(
'Items')); ?></caption>
177 <th
class=
"col item" scope=
"col"><?=
$block->escapeHtml(
__(
'Product Name')); ?></th>
178 <th
class=
"col price" scope=
"col"><?=
$block->escapeHtml(
__(
'Price')); ?></th>
179 <th
class=
"col qty" scope=
"col"><?=
$block->escapeHtml(
__(
'Qty')); ?></th>
180 <th
class=
"col subtotal" scope=
"col"><?=
$block->escapeHtml(
__(
'Subtotal')); ?></th>
184 <?php
foreach (
$block->getVirtualItems() as
$_item) : ?>
189 <?=
$block->renderTotals(
$block->getBillingAddressTotals()); ?>
197 <?=
$block->getChildHtml(
'items_after') ?>
199 <div
id=
"checkout-review-submit" class=
"checkout-review">
200 <?=
$block->getChildHtml(
'agreements') ?>
201 <div
class=
"grand totals">
202 <strong
class=
"mark"><?=
$block->escapeHtml(
__(
'Grand Total:')); ?></strong>
203 <strong
class=
"amount">
204 <?= $this->helper(
Magento\Checkout\Helper\Data::class)
205 ->formatPrice(
$block->getTotal()); ?>
208 <div
class=
"actions-toolbar" id=
"review-buttons-container">
209 <div
class=
"primary">
210 <button type=
"submit" 211 class=
"action primary submit" 212 id=
"review-button"><span><?=
$block->escapeHtml(
__(
'Place Order')); ?></span>
215 <div
class=
"secondary">
216 <a href=
"<?= $block->escapeUrl($block->getBackUrl()); ?>" class=
"action back">
217 <span><?=
$block->escapeHtml(
__(
'Back to Billing Information')); ?></span>
220 <span
id=
"review-please-wait" 221 class=
"please-wait load indicator" 222 style=
"display: none;" 223 data-text=
"<?= $block->escapeHtml(__('Submitting order information...')); ?>">
224 <span><?=
$block->escapeHtml(
__(
'Submitting order information...')); ?></span>
if( $_rate=$block->getShippingAddressRate( $address))( $_rate->getCarrierTitle()) ?>(<? $exclTax
$block setTitle( 'CMS Block Title') -> setIdentifier('fixture_block') ->setContent('< h1 >Fixture Block Title</h1 >< a href=" store url</a><p> Config value
if( $form)() ?>< script > require(['jquery' mage mage
jquery extjs ext tree mage adminhtml form
if(file_exists($vendorAutoload)) else