すべてのマジェント注文ステータス (保留中、完了、処理中など) のリストを取得する方法は?
Magento バックエンドの order-index グリッド ページの「ステータス」ドロップダウン フィールドのようなすべての値を表示する必要があります。
すべてのマジェント注文ステータス (保留中、完了、処理中など) のリストを取得する方法は?
Magento バックエンドの order-index グリッド ページの「ステータス」ドロップダウン フィールドのようなすべての値を表示する必要があります。
次の単純なコード行を使用するだけです。
Mage::getModel('sales/order_status')->getResourceCollection()->getData();
例えば:
var_dump( Mage::getModel('sales/order_status')->getResourceCollection()->getData() );
結果:
array(10) { [0]=> array(2) { ["status"]=> string(8) "canceled" ["label"]=> string(8) "Canceled" } [1]=> array(2) { ["status"]=> string(6) "closed" ["label"]=> string(6) "Closed" } [2]=> array(2) { ["status"]=> string(8) "complete" ["label"]=> string(8) "Complete" } [3]=> array(2) { ["status"]=> string(5) "fraud" ["label"]=> string(15) "Suspected Fraud" } [4]=> array(2) { ["status"]=> string(6) "holded" ["label"]=> string(7) "On Hold" } [5]=> array(2) { ["status"]=> string(14) "payment_review" ["label"]=> string(14) "Payment Review" } [6]=> array(2) { ["status"]=> string(7) "pending" ["label"]=> string(7) "Pending" } [7]=> array(2) { ["status"]=> string(15) "pending_payment" ["label"]=> string(15) "Pending Payment" } [8]=> array(2) { ["status"]=> string(14) "pending_paypal" ["label"]=> string(14) "Pending PayPal" } [9]=> array(2) { ["status"]=> string(10) "processing" ["label"]=> string(10) "Processing" } }
ドップダウンの出力を取得する方法は次のとおりです。
$statuses = Mage::getModel('sales/order_status')->getCollection()
->toOptionArray()
echo '<pre>';print_r($statuses);echo '</pre>';
//this will output:
Array
(
[0] => Array
(
[status] => canceled
[label] => Canceled
)
[1] => Array
(
[status] => cancel_ogone
[label] => Cancelled Ogone
)
[2] => Array
(
[status] => closed
[label] => Closed
)
[3] => Array
(
[status] => complete
[label] => Complete
)
.....