You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to create a credit memo on the "Channable - Returns" page, the following error is generated:
"Unable to locate the order Item-ID if imported return."
Scenario:
Go to the returns page channable/returns/index/
Select an item
Via the actions choose Create Credit Memo
An error is shown
The error is generated in \Magmodules\Channable\Service\Returns\CreateCreditmemo::execute (link) because \Magmodules\Channable\Service\Returns\CreateCreditmemo::findOrderItemId can't find a itemId because the $item['gtin'] is not the SKU but the afas_eancode . There is no sku in the $item array so this will always result in an error.
There is a getSkuFromGtin method in the GetByOrder class but this is a private method as are the methods needed for this method.
The text was updated successfully, but these errors were encountered:
When we try to create a credit memo on the "Channable - Returns" page, the following error is generated:
"Unable to locate the order Item-ID if imported return."
Scenario:
channable/returns/index/
The error is generated in
\Magmodules\Channable\Service\Returns\CreateCreditmemo::execute
(link) because\Magmodules\Channable\Service\Returns\CreateCreditmemo::findOrderItemId
can't find aitemId
because the$item['gtin']
is not the SKU but theafas_eancode
. There is no sku in the$item
array so this will always result in an error.There is a getSkuFromGtin method in the
GetByOrder
class but this is a private method as are the methods needed for this method.The text was updated successfully, but these errors were encountered: