View Issue Details

IDProjectCategoryView StatusLast Update
0004226OXID eShop (all versions)3.1. Design, GUI, UXpublic2012-10-23 10:26
Reportermarco_steinhaeuser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.6.2 revision 46646 
Target VersionFixed in Version4.7.0_5.0.0_RC2 
Summary0004226: "* incl. VAT plus shipping" turns to "* plus shipping" once you're logged in
DescriptionThere's this hint at the bottom right corner of the browser "* incl. VAT plus shipping". It turns to "* plus shipping" once you're logged in, which is not correct.
TagsNo tags attached.
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Activities

Firefax

2012-08-05 10:49

reporter   ~0007228

Last edited: 2012-08-05 10:52

View 4 revisions

A quick n dirty solution is to change the /out/azure/tpl/layout/page.tpl

In line 31 (the else row) add the _SHIPPING to the [{ oxmultilang ident="PLUS" }]

Then, the line is identical with the first if clause.
* <span class="deliveryInfo">[{ oxmultilang ident="PLUS_SHIPPING" }]<a ...

Warning! This only works if you have a shop which should always show the incl. VAT. The if clause here is made useless. This changings only manipulate the text output, so its identical now.

The correct way would be, to solve the question why a logged in user got the "wrong" VAT information on the line:
[{if $oView->isVatIncluded()}]
There should be no difference if the user is logged in or not to the question if ther VAT is included or not.

cya

Linas Kukulskis

2012-10-23 10:26

reporter   ~0007652

fixed