View Issue Details

IDProjectCategoryView StatusLast Update
0003619OXID eShop (all versions)1.01. Products (product, categories, manufacturer, promotions etc.)public2012-12-07 14:28
Reporterray 
PriorityhighSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.5.7 revision 41909 
Target VersionFixed in Version4.6.0_beta3 
Summary0003619: rrp not shown when price and rrp have different amount of digits
DescriptionIf price and rrp have different digits, rrp is not shown in frontend, even if rrp is higher.

For example, if price has two digits (70) and rrp has three digits (100) it´s not shown in frontend.

this is shown:
- price 70,- / rrp 99,-
- price 150,- / rrp 299,-

this is not shown:
- price 70,- / rrp 100,-
- price 150,- / rrp 1000,-
Steps To Reproduceassign different amounts for price and rrp
Additional Informationhttp://www.oxid-esales.com/forum/showthread.php?p=82273#top
TagsProducts
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Relationships

related to 0003154 resolvedLinas Kukulskis Wrong comparision in listitem_line.tpl 
has duplicate 0003646 closeddainius.bigelis oxtprice-handling works with errors 

Activities

Tr0nYx

2012-02-29 17:45

reporter   ~0005850

in core/oxarticle.php line 2721 replace:
return oxLang::getInstance()->formatCurrency( oxUtils::getInstance()->fRound($oPrice->getBruttoPrice()));
with:
return $oPrice->getBruttoPrice();

Linas Kukulskis

2012-03-14 13:22

reporter   ~0005986

checked from source code, all changed already added