Exemplo n.º 1
0
 /**
  * Refund the card transaction through gateway
  *
  * @param \Magento\Payment\Model\Info $payment
  * @param float $amount
  * @param \Magento\Framework\Object $card
  * @return \Magento\Sales\Model\Order\Payment\Transaction
  * @throws \Magento\Framework\Model\Exception
  */
 protected function _refundCardTransaction($payment, $amount, $card)
 {
     /**
      * Card has last transaction with type "refund" when all captured amount is refunded.
      * Until this moment card has last transaction with type "capture".
      */
     $captureTransactionId = $card->getLastTransId();
     $captureTransaction = $payment->getTransaction($captureTransactionId);
     $realCaptureTransactionId = $captureTransaction->getAdditionalInformation($this->_realTransactionIdKey);
     $payment->setAnetTransType(self::REQUEST_TYPE_CREDIT);
     $payment->setXTransId($realCaptureTransactionId);
     $payment->setAmount($amount);
     $request = $this->_buildRequest($payment);
     $request->setXCardNum($card->getCcLast4());
     $result = $this->_postRequest($request);
     switch ($result->getResponseCode()) {
         case self::RESPONSE_CODE_APPROVED:
             if ($result->getResponseReasonCode() == self::RESPONSE_REASON_CODE_APPROVED) {
                 $refundTransactionId = $result->getTransactionId() . '-refund';
                 $shouldCloseCaptureTransaction = 0;
                 /**
                  * If it is last amount for refund, transaction with type "capture" will be closed
                  * and card will has last transaction with type "refund"
                  */
                 if ($this->_formatAmount($card->getCapturedAmount() - $card->getRefundedAmount()) == $amount) {
                     $card->setLastTransId($refundTransactionId);
                     $shouldCloseCaptureTransaction = 1;
                 }
                 return $this->_addTransaction($payment, $refundTransactionId, \Magento\Sales\Model\Order\Payment\Transaction::TYPE_REFUND, array('is_transaction_closed' => 1, 'should_close_parent_transaction' => $shouldCloseCaptureTransaction, 'parent_transaction_id' => $captureTransactionId), array($this->_realTransactionIdKey => $result->getTransactionId()), $this->_authorizenetData->getTransactionMessage($payment, self::REQUEST_TYPE_CREDIT, $result->getTransactionId(), $card, $amount));
             }
             $exceptionMessage = $this->_wrapGatewayError($result->getResponseReasonText());
             break;
         case self::RESPONSE_CODE_DECLINED:
         case self::RESPONSE_CODE_ERROR:
             $exceptionMessage = $this->_wrapGatewayError($result->getResponseReasonText());
             break;
         default:
             $exceptionMessage = __('Something went wrong while refunding the payment.');
             break;
     }
     $exceptionMessage = $this->_authorizenetData->getTransactionMessage($payment, self::REQUEST_TYPE_CREDIT, $realCaptureTransactionId, $card, $amount, $exceptionMessage);
     throw new \Magento\Framework\Model\Exception($exceptionMessage);
 }