mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 05:06:07 +03:00
fix model prices
This commit is contained in:
parent
5e85d9a958
commit
1ec5e14ddf
@ -56,16 +56,13 @@ class ModelExtensionRetailcrmPrices extends Model
|
||||
if (!$specials) {
|
||||
$productPrice = $this->getEmptyPrice();
|
||||
$prices[] = $this->getPriceRequest($product, $site, $productPrice, $retailcrm);
|
||||
continue;
|
||||
}
|
||||
|
||||
$productPrice = array();
|
||||
|
||||
if (is_array($specials) && count($specials)) {
|
||||
$productPrice = ModelExtensionRetailcrmPrices::getSpecialPrice($specials);
|
||||
}
|
||||
|
||||
if (empty($productPrice)) {
|
||||
continue;
|
||||
$productPrice = $this->getSpecialPrice($specials);
|
||||
}
|
||||
|
||||
$prices[] = $this->getPriceRequest($product, $site, $productPrice, $retailcrm);
|
||||
|
Loading…
Reference in New Issue
Block a user