2017-03-15 4 views

Antwort

1

I durch die folgende Codeänderung in Controller \ Front \ ProductController.php gelöst

Add-Funktion:

protected function getGroupReduction() { 
    $id_customer = (isset($this->context->customer) ? (int)$this->context->customer->id : 0); 
    $id_group = (int)Group::getCurrent()->id; 
    $id_country = $id_customer ? (int)Customer::getCurrentCountry($id_customer) : (int)Tools::getCountry(); 

    $group_reduction = GroupReduction::getValueForProduct($this->product->id, $id_group); 
    if ($group_reduction === false) { 
     $group_reduction = Group::getReduction((int)$this->context->cookie->id_customer)/100; 
    } 
    return $group_reduction; 
} 

ersetzen Linie 467:

$combinations[$row['id_product_attribute']]['price'] = (float)Tools::convertPriceFull($row['price'], null, Context::getContext()->currency, false); 

mit folgenden Zeilen:

  $group_reduction = $this->getGroupReduction(); 
      $price = $row['price'] - $row['price']* $group_reduction; 
      $combinations[$row['id_product_attribute']]['price'] = (float)Tools::convertPriceFull($price, null, Context::getContext()->currency, false); 
Verwandte Themen