@Medmek ve @ prince-patel yanıtına teşekkürler. @ Jafar-pinjar'dan özel sipariş durumuyla ilgili soru olarak, setState ve setStatus çağrıları Durum Kodu'nu alabilir. Örneğin, "ücretli" özel durum kodu oluşturulur. Durumu / durumu bir siparişle güncellemek için:
...
use \Magento\Sales\Api\OrderRepositoryInterface;
class nameOfTheClass {
...
protected $_orderRepository;
...
public function __construct(..., OrderRepositoryInterface $orderRepository, ...){
$this->_orderRepository = $orderRepository;
...
}
...
public function setOrderStatus($orderID, $statusCode){
try{
// obtain the order with the order ID
$order = $this->_orderRepository->get($orderID);
$order->setState($statusCode)->setStatus($statusCode);
$this->_orderRepository->save($order);
return true;
} catch (\Exception $e){
// add some logging here
return false;
}
}
...
}
Sipariş durumunu güncellemek için:
$orderID = 1234; // this is the order ID
$code = 'paid';
$this->setOrderStatus($orderID, $code);
Orada birine yardım umuyoruz.