Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
according to this post you have to add VAT to shipping yourself.
http://our.umbraco.org/projects/website-utilities/ucommerce/ucommerce-support/33798-Show-ShippingMethodPrice-including-VAT
and if i'm right you still have to do that.
In the Razor store Shipping.cshtml the shipping label and price i fetched by calling
var price = shippingMethod.GetPriceForCurrency( GetPriceForCurrency(basket.BillingCurrency);var formattedPrice = new Money((price == null ? 0 : price.Price), basket.BillingCurrency); @shippingMethod.Name <text>(</text>@formattedPrice<text>)</text>
and in the basket later on the shipping fee is included tax - by using basket.ShippingTotal.Value
Am I correct that I have to add VAT on the Shipping select page where I want it to show it including VAT?
I guess i can get the VATRate from eg. price.PriceGroup.VATRate. But how about an option to get the Shipping fee incl. VAT - as with other prices. ?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Shipping incl. VAT (v3 & Razor store)
according to this post you have to add VAT to shipping yourself.
http://our.umbraco.org/projects/website-utilities/ucommerce/ucommerce-support/33798-Show-ShippingMethodPrice-including-VAT
and if i'm right you still have to do that.
In the Razor store Shipping.cshtml the shipping label and price i fetched by calling
var price = shippingMethod.GetPriceForCurrency( GetPriceForCurrency(basket.BillingCurrency);
var formattedPrice = new Money((price == null ? 0 : price.Price), basket.BillingCurrency); @shippingMethod.Name <text>(</text>@formattedPrice<text>)</text>
and in the basket later on the shipping fee is included tax - by using basket.ShippingTotal.Value
Am I correct that I have to add VAT on the Shipping select page where I want it to show it including VAT?
I guess i can get the VATRate from eg. price.PriceGroup.VATRate. But how about an option to get the Shipping fee incl. VAT - as with other prices. ?
is working on a reply...