View Issue Details

IDProjectCategoryView StatusLast Update
0001058OXID eShop (all versions)1.02. Price calculations (discounts, coupons, additional costs etc.)public2012-12-07 15:19
Reportertjungcl Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionno change required 
Product Version4.1.3 revision 19918 
Summary0001058: delivery-costs VAT when ordering books
DescriptionMany articles have a reduced VAT in some countries, for example books in Germany only have 7% VAT instead of 19%

- open the ee-demo-shop admin
- edit article Buch VATER & SOHN Art.Nr.: 2196
- set vat for that article to 7%
- go to frontend
- order that article
-> the shipping-costs will have a VAT of 7%, which is wrong. There is of course a well defined VAT percent for shipping-costs, which in Germany is 19%.

oxbasket.php:
$fDelVATPercent = $this->getMostUsedVatPercent(); // <----- :-(


TagsVAT
Theme
BrowserAll
PHP Version5.2.6
Database Version5.0.33

Relationships

has duplicate 0001370 resolveddainius.bigelis Wrong delivery-costs VAT when various VAT-products in basket 

Activities

tjungcl

2009-07-01 10:44

reporter   ~0001130

It's the same with payment-costs and wrappings-costs.

marco_steinhaeuser

2009-07-03 20:13

reporter   ~0001148

Last edited: 2009-07-03 20:13

My 2 cents:

> the shipping-costs will have a VAT of 7%, which is wrong. There is of course a well defined VAT percent for shipping-costs, which in Germany is 19%.

This is not true.
German legal says: Shipping-, payment- and wrapping costs will get the tax from "what is more in the cart". BTW, they forgot to define the "what is more" (wheight, price, size ...) so we decided to set the net price as a basis.

Examples:

a) Buy a book with a tax of 7% -> checkout -> shipping will be taxed with 7% as well.
b) Buy a CD with a tax of 19% -> checkout -> shipping will be taxed with 19%.
c) Buy books with a value of 20 EUR, taxed with 7% and CDs in a value of 20 EUR, taxed with 19% -> tax for shipping will go at 7% (because the net price of the books < the net price of the CDs)
d) Buy books with a value of 10 EUR taxed with 7% and CDs in a value of 20 EUR taxed with 19% -> tax for shipping will go at 19% because of the higher net price of the CDs.

Sounds strange, doesn't it? But seems to be like this ;) I love German law for this stuff...
If unsure, ask Ralf.

dainius.bigelis

2009-07-14 08:17

reporter   ~0001198

Yes, it's not a bug: wrapping costs will get the tax from "what is more in the cart". See comment from Marco for detailed explanation.