Skip to content

Commit cac21cb

Browse files
authored
MAGETWO-67474: Make a hardcoded value in Customizable Options interceptable #6792
2 parents a1ab32d + 4fd7283 commit cac21cb

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

app/code/Magento/Catalog/Block/Product/View/Options.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function getJsonConfig()
208208
$config = [];
209209
foreach ($this->getOptions() as $option) {
210210
/* @var $option \Magento\Catalog\Model\Product\Option */
211-
if ($option->getGroupByType() == \Magento\Catalog\Model\Product\Option::OPTION_GROUP_SELECT) {
211+
if ($option->hasValues()) {
212212
$tmpPriceValues = [];
213213
foreach ($option->getValues() as $valueId => $value) {
214214
$tmpPriceValues[$valueId] = $this->_getPriceConfiguration($value);

app/code/Magento/Catalog/Model/Product/Option.php

+11
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,17 @@ public function getValueById($valueId)
217217
return null;
218218
}
219219

220+
/**
221+
* Whether or not the option type contains sub-values
222+
*
223+
* @param string $type
224+
* @return bool
225+
*/
226+
public function hasValues($type = null)
227+
{
228+
return $this->getGroupByType($type) == self::OPTION_GROUP_SELECT;
229+
}
230+
220231
/**
221232
* @return ProductCustomOptionValuesInterface[]|null
222233
*/

app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php

+9
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ public function testGetProductSku()
3535
$this->assertEquals($productSku, $this->model->getProductSku());
3636
}
3737

38+
public function testHasValues()
39+
{
40+
$this->model->setType('drop_down');
41+
$this->assertTrue($this->model->hasValues());
42+
43+
$this->model->setType('field');
44+
$this->assertFalse($this->model->hasValues());
45+
}
46+
3847
public function testGetRegularPrice()
3948
{
4049
$priceInfoMock = $this->getMockForAbstractClass(

0 commit comments

Comments
 (0)