Skip to content

Commit

Permalink
CC-25835: Fixed creating product return in the backoffice. (#9930)
Browse files Browse the repository at this point in the history
CC-25835 Fixed creating product return in the back-office.
  • Loading branch information
sakharova-yuliia authored Apr 19, 2023
1 parent b95975e commit 36c06c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ protected function isTriggerFormValid(Request $request): bool
*/
protected function getRequestIdSalesOrderItems(Request $request): array
{
$idOrderItems = $request->query->all()[static::REQUEST_PARAMETER_ITEMS] ?? [];
$idOrderItems = $request->query->all(static::REQUEST_PARAMETER_ITEMS);

// Exists for Backward Compatibility reasons only.
$idOrderItem = $request->query->get(static::REQUEST_PARAMETER_ID_SALES_ORDER_ITEM);
Expand Down

0 comments on commit 36c06c9

Please sign in to comment.