-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Manual transfer and Sofort orders will be put on hold.
This will prevent magento from automatically canceling the order.
- Loading branch information
Andy Pieters
committed
Aug 15, 2016
1 parent
2eea625
commit 02f70a7
Showing
5 changed files
with
82 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* Copyright © 2015 Pay.nl All rights reserved. | ||
*/ | ||
|
||
namespace Paynl\Payment\Model\Config\Source\Order\Status; | ||
|
||
use Magento\Sales\Model\Order; | ||
use Magento\Sales\Model\Config\Source\Order\Status; | ||
|
||
/** | ||
* Order Status source model | ||
*/ | ||
class Holded extends Status | ||
{ | ||
/** | ||
* @var string[] | ||
*/ | ||
protected $_stateStatuses = [Order::STATE_HOLDED]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters