Skip to content

Commit

Permalink
[-] BO: Fix module listing with addons module with default currency n…
Browse files Browse the repository at this point in the history
…ot on the xml #PSCFV-8005
  • Loading branch information
rGaillard committed Feb 26, 2013
1 parent 0f5f792 commit e3a4763
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2013 PrestaShop SA
* @copyright 2007-2013 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
Expand Down Expand Up @@ -87,7 +87,7 @@
<ul id="list-action-button">
{if isset($module->type) && $module->type == 'addonsMustHave'}
<li>
<a href="{$module->addons_buy_url}" target="_blank" class="button updated"><span><img src="../img/admin/cart_addons.png">&nbsp;&nbsp;{displayPrice price=$module->price currency=$module->id_currency}</span></a>
<a href="{$module->addons_buy_url}" target="_blank" class="button updated"><span><img src="../img/admin/cart_addons.png">&nbsp;&nbsp;{if isset($module->id_currency) && isset($module->price)}{displayPrice price=$module->price currency=$module->id_currency}{/if}</span></a>
</li>
{else}
{if $module->id && isset($module->version_addons) && $module->version_addons}
Expand Down
8 changes: 4 additions & 4 deletions classes/module/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -1177,12 +1177,12 @@ public static function getModulesOnDisk($useConfig = false, $loggedOnAddons = fa
$id_default_currency = Configuration::get('PS_CURRENCY_DEFAULT');
foreach ($prices as $currency => $price)
if ($id_currency = Currency::getIdByIsoCode($currency))
if ($id_default_currency == $id_currency)
{
{
$item->price = (float)$price;
$item->id_currency = (int)$id_currency;
}
if ($id_default_currency == $id_currency)
break;
}
}
$module_list[] = $item;
}
Expand Down

0 comments on commit e3a4763

Please sign in to comment.