File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ public function getJsonConfig()
208
208
$ config = [];
209
209
foreach ($ this ->getOptions () as $ option ) {
210
210
/* @var $option \Magento\Catalog\Model\Product\Option */
211
- if ($ option ->getGroupByType () == \ Magento \ Catalog \ Model \ Product \Option:: OPTION_GROUP_SELECT ) {
211
+ if ($ option ->hasValues () ) {
212
212
$ tmpPriceValues = [];
213
213
foreach ($ option ->getValues () as $ valueId => $ value ) {
214
214
$ tmpPriceValues [$ valueId ] = $ this ->_getPriceConfiguration ($ value );
Original file line number Diff line number Diff line change @@ -217,6 +217,17 @@ public function getValueById($valueId)
217
217
return null ;
218
218
}
219
219
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
+
220
231
/**
221
232
* @return ProductCustomOptionValuesInterface[]|null
222
233
*/
Original file line number Diff line number Diff line change @@ -35,6 +35,15 @@ public function testGetProductSku()
35
35
$ this ->assertEquals ($ productSku , $ this ->model ->getProductSku ());
36
36
}
37
37
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
+
38
47
public function testGetRegularPrice ()
39
48
{
40
49
$ priceInfoMock = $ this ->getMockForAbstractClass (
You can’t perform that action at this time.
0 commit comments