Skip to content

Commit

Permalink
fix multicurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
superdav42 committed Aug 20, 2024
1 parent cb27df7 commit 38ad53a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Block/Usage/View/Options/Type/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function getValuesHtml()
$select->addOption(
$_value->getOptionTypeId(),
$_value->getTitle(),
['price' => $this->pricingHelper->currencyByStore($_value->getPrice(), $store, false)]
['price' => $_value->getPrice()]
);
}
if ($_option->getType() == \Magento\Catalog\Api\Data\ProductCustomOptionInterface::OPTION_TYPE_MULTIPLE) {
Expand Down Expand Up @@ -150,7 +150,7 @@ public function getValuesHtml()
$checked .
' data-selector="' . $dataSelector . '"' .
' price="' .
$this->pricingHelper->currencyByStore($_value->getPrice(true), $store, false) .
$_value->getPrice(true) .
'" />' .
'<label class="label admin__field-label" for="options_' .
$_option->getId() .
Expand Down

0 comments on commit 38ad53a

Please sign in to comment.