We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900ecea commit 8f4efeeCopy full SHA for 8f4efee
app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php
@@ -57,14 +57,16 @@ protected function _construct()
57
}
58
59
/**
60
- * Used to emulate after load functionality for each item without loading them
+ * Unserialize packages in each item
61
*
62
* @return $this
63
*/
64
protected function _afterLoad()
65
{
66
- $this->walk('afterLoad');
+ foreach ($this->_items as $item) {
67
+ $this->getResource()->unserializeFields($item);
68
+ }
69
- return $this;
70
+ return parent::_afterLoad();
71
72
0 commit comments