Skip to content

Commit fe616ae

Browse files
committed
ACQE-8253: [AC-11810] [Issue] Magento2.4.6-p4 Order API Simple Item missing price
- Applied fix for webapi encoding soap object has no id issue
1 parent d0b1711 commit fe616ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderApiConfigurableVariationsPriceTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,13 @@ private function callOrderApi(string $orderId): array
190190
'service' => 'salesOrderRepositoryV1',
191191
'operation' => 'salesOrderRepositoryV1Get',
192192
'parameters' => [
193-
'orderId' => ['id' => $orderId],
193+
'id' => $orderId,
194194
],
195195
],
196196
]);
197197
}
198198

199+
199200
/**
200201
* Validates that simple items link correctly to one of the configurable parent items.
201202
*

0 commit comments

Comments
 (0)