コード例 #1
0
ファイル: oledrion_commands.php プロジェクト: osw17/oledrion
 /**
  * Applique le statut de commande annulée à une commande
  *
  * @param  object $order   La commande à traiter
  * @param  string $comment Optionel, un commentaire pour le mail envoyé au webmaster
  * @return void
  */
 public function setOrderCanceled(oledrion_commands $order, $comment = '')
 {
     $order->setVar('cmd_state', OLEDRION_STATE_CANCELED);
     // Annulée
     $order->setVar('cmd_comment', $comment);
     $this->insert($order, true);
     $this->notifyOrderCanceled($order, $comment);
 }