View Portion Handled
This commit is contained in:
parent
abc9d727e8
commit
3a04aa37ac
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"/js/velocity.js": "/js/velocity.js?id=62226e927739251367f9",
|
"/js/velocity.js": "/js/velocity.js?id=11b21ab87b3a1163f3ea",
|
||||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
|
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
|
||||||
"/css/velocity.css": "/css/velocity.css?id=888af38c032d3290b74a"
|
"/css/velocity.css": "/css/velocity.css?id=888af38c032d3290b74a"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
<input type="text" disabled :value="item.quantity" class="ml5" />
|
<input type="text" disabled :value="item.quantity" class="ml5" />
|
||||||
</div>
|
</div>
|
||||||
<span class="card-total-price fw6">
|
<span class="card-total-price fw6">
|
||||||
{{ item.base_total_with_tax }}
|
{{ isTaxInclusive == '1' ? item.base_total_with_tax : item.base_total }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
{{ subtotalText }}
|
{{ subtotalText }}
|
||||||
</h5>
|
</h5>
|
||||||
|
|
||||||
<h5 class="col-6 text-right fw6 no-padding">{{ cartInformation.base_grand_total }}</h5>
|
<h5 class="col-6 text-right fw6 no-padding">{{ isTaxInclusive == '1' ? cartInformation.base_grand_total : cartInformation.base_sub_total }}</h5>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|
@ -73,6 +73,7 @@
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: [
|
props: [
|
||||||
|
'isTaxInclusive',
|
||||||
'cartText',
|
'cartText',
|
||||||
'viewCart',
|
'viewCart',
|
||||||
'checkoutUrl',
|
'checkoutUrl',
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
<div class="mini-cart-container">
|
<div class="mini-cart-container">
|
||||||
<mini-cart
|
<mini-cart
|
||||||
|
is-tax-inclusive="{{ (bool) core()->getConfigData('catalog.products.attribute.price_attribute_tax_inclusive') }}"
|
||||||
view-cart="{{ route('shop.checkout.cart.index') }}"
|
view-cart="{{ route('shop.checkout.cart.index') }}"
|
||||||
cart-text="{{ __('shop::app.minicart.view-cart') }}"
|
cart-text="{{ __('shop::app.minicart.view-cart') }}"
|
||||||
checkout-text="{{ __('shop::app.minicart.checkout') }}"
|
checkout-text="{{ __('shop::app.minicart.checkout') }}"
|
||||||
|
|
|
||||||
|
|
@ -126,9 +126,11 @@
|
||||||
<div class="col-12 price">
|
<div class="col-12 price">
|
||||||
@include ('shop::products.price', ['product' => $product])
|
@include ('shop::products.price', ['product' => $product])
|
||||||
|
|
||||||
<span>
|
@if ((bool) core()->getConfigData('catalog.products.attribute.price_attribute_tax_inclusive'))
|
||||||
Inclusive of all taxes.
|
<span>
|
||||||
</span>
|
Inclusive of all taxes.
|
||||||
|
</span>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if (count($product->getTypeInstance()->getCustomerGroupPricingOffers()) > 0)
|
@if (count($product->getTypeInstance()->getCustomerGroupPricingOffers()) > 0)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue