View Issue Details

IDProjectCategoryView StatusLast Update
0002030OXID eShop (all versions)4. ------ eShop Core -------public2012-12-10 13:42
Reporterleofonic 
PrioritylowSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.4.1 revision 28950 
Target VersionFixed in Version4.6.0_beta3 
Summary0002030: Option "Calculate Product Price" does not work with variants
DescriptionIf this option is turned off in Performance Tab, prices of variants still appear in the dropdown in list view, in detail view of parent variant-selection is not displayed.
TagsNo tags attached.
Theme
BrowserAll
PHP Versionany
Database Versionany

Activities

saulius.stasiukaitis

2012-03-12 09:06

reporter   ~0005948

Price showing in variants dropdown fixed in patch.
Changes in file core/oxsimplevariant.php. In method getPrice() add check from artiticles class
if ( !$myConfig->getConfigParam( 'bl_perfLoadPrice' ) ) {
        return;
}

Not closed as there is still currency marker visible.

saulius.stasiukaitis

2012-03-12 15:56

reporter   ~0005954

Still need to check some cases, when variant has dvariants to be sure that no price calculation are made.

saulius.stasiukaitis

2012-03-12 16:24

reporter   ~0005955

Price showing in mdvariants dropdown fixed in patch.
Changes in file oxmdvariant.php

Still need to check, if other unit tests are written with having in mind, that price calculation might be turned off.