수색…


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