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 417a20d commit 5761adeCopy full SHA for 5761ade
app/code/core/Mage/Sales/Model/Order.php
@@ -869,7 +869,7 @@ public function canEdit()
869
*/
870
public function canReorder()
871
{
872
- return $this->_canReorder(false);
+ return $this->_canReorder(true);
873
}
874
875
/**
@@ -890,7 +890,7 @@ public function canReorderIgnoreSalable()
890
891
protected function _canReorder($ignoreSalable = false)
892
893
- if ($this->canUnhold() || $this->isPaymentReview() || !$this->getCustomerId()) {
+ if ($this->canUnhold() || $this->isPaymentReview()) {
894
return false;
895
896
0 commit comments