View Issue Details

IDProjectCategoryView StatusLast Update
0002638OXID eShop (all versions)1.03. Basket, checkout processpublic2012-12-07 14:06
Reportertjungcl 
PriorityhighSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.4.8 revision 34028 
Target Version4.6.0_beta3Fixed in Version4.6.0_beta3 
Summary0002638: wrapping costs and greeting card include VAT even if order is free of vat.
Description"Show wrapping-vat in basket" has to be switched on.

It behaves a bit strange: In a normal vat-including order the greeting-card-vat is correct (including 19% vat), and the vat-percentage is correctly displayed in the vat-coumn ("19%") and net and gross are also correct below the table in the sum-rows.

But when you switch your country and ustid so the order becomes vat-free, all prices are shown in net except shipping costs and wrapping costs.

See screenshot attached.

Solution:
need to implement the option, which tells that price inserted for Wrapping or Greeting Card is Netto or Brutto. There are such options for Shipping Costs. Having this option shop owner can set that Wrapping price is neto, so in this case when VAT is 0% - there will be no problem.
TagsGift Wrapping, VAT
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Relationships

related to 0003757 resolvedvilma_liorensaityte VAT should always be included in Price and should change only VAT displaying. 

Activities

tjungcl

2011-03-23 09:43

reporter  

wrappingvat.JPG (75,435 bytes)
wrappingvat.JPG (75,435 bytes)

dainius.bigelis

2011-04-01 13:47

reporter   ~0004295

Problem exists also in previous eShop versions (i.e. 4.4.8).
For shipping costs it can be solved by seting an option, that inserted shipping costs is a Neto.
But this concept should be considered how to solve all such issues to have the universal solution.

vilma_liorensaityte

2011-09-20 09:23

reporter   ~0005245

How it works now:
1) in shop admin base prices are added in brutto.
2) in shop basket to calculate shipping or wrapping netto price we take the biggest VAT of basket items.
3) in this situation it is 0%. So netto price will be calculated with 0%.
4) example:
wrapping base price in admin: 3.00
wrapping calculation in shop basket: netto 3.00 ( 3.00 base price - 0 (0% biggest VAT of basket items)
                                                          VAT 0 (0% biggest VAT of basket items)
                                                          brutto 3.00 (3.00 netto price + 0 VAT)

Possible solution:
1) in shop admin base prices are added in brutto.
2) in shop basket to calculate shipping or wrapping netto price the default shop VAT would be taken.
3) in shop basket to calculate shipping or wrapping brutto price the biggest VAT of basket items would be taken. In this situation it is 0%
4) example:
wrapping base price in admin: 3.00
wrapping calculation in shop basket: netto 2.43 ( 3.00 base price - 0.57 (19% default shop VAT)
                                                          VAT 0 (0% biggest VAT of basket items)
                                                          brutto 2.43 (2.43 netto price + 0 VAT)

dainius.bigelis

2012-01-10 18:01

reporter   ~0005599

The problem does not existing in case if price for wrapping is inserted as Neto. Such possibility is missing currently in eShop. Need to implement this option so the case would be solved.
Will add solution to description of issue.

vilma_liorensaityte

2012-02-08 08:46

reporter   ~0005692

1)Added two additional options:
    * "Enter Gift Wrapping Prices as net Price (plus VAT)"
    * "Enter Payment Method Charges as net Price (plus VAT)"
 
2)According to these changes, we had to change option:
    "Product and Gift Wrapping prices entered/displayed in Admin are Net Prices"
      into
    "Product prices entered/displayed in Admin are Net Prices".
 
3)And created update: if user had option "Product and Gift Wrapping prices entered/displayed in Admin are Net Prices" on, the new option "Enter Gift Wrapping Prices as net Price (plus VAT)" will be set on too.