サーチ…


ID順に注文する

$orderid = 12345;
$order = Mage::getModel('sales/order')->load($orderid);

上記のコードは、おおよそ次のSQLクエリに似ています。

select * from sales_flat_order where entity_id=12345;

インクリメントIDで注文する

$incrementid = 100000000;
$order = Mage::getModel('sales/order')->loadByIncrementId($incrementid);

上記のコードは、おおよそ次のSQLクエリに似ています。

select * from sales_flat_order where increment_id=100000000;

increment_idは顧客が注文した注文識別子であり、 entity_idは注文のデータベースレベル識別子である。

注文履歴にコメントを追加する

注文にコメントとステータスを追加できます。注文を得る:

$orderid = 12345;
$order = Mage::getModel('sales/order')->load($orderid);

コメントを追加:

//$isNotify means you want to notify customer or not.

$order->addStatusToHistory($status, $message, $isNotify);
$order->save()


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow