Esempio n. 1
0
 /**
  * Invoke invoice add comment service
  *
  * @param \Magento\Sales\Service\V1\Data\Comment $comment
  * @return bool
  * @throws \Exception
  */
 public function invoke(Comment $comment)
 {
     /** @var \Magento\Sales\Model\Order\Invoice\Comment $commentModel */
     $commentModel = $this->commentConverter->getModel($comment);
     $commentModel->save();
     return true;
 }