本文整理汇总了PHP中Mage_Payment_Model_Info::setAmount方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Payment_Model_Info::setAmount方法的具体用法?PHP Mage_Payment_Model_Info::setAmount怎么用?PHP Mage_Payment_Model_Info::setAmount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Payment_Model_Info
的用法示例。
在下文中一共展示了Mage_Payment_Model_Info::setAmount方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _place
/**
* Send request with new payment to gateway
*
* @param Mage_Payment_Model_Info $payment
* @param decimal $amount
* @param string $requestType
* @return Mage_Paygate_Model_Authorizenet
* @throws Mage_Core_Exception
*/
protected function _place($payment, $amount, $requestType)
{
$payment->setAnetTransType($requestType);
$payment->setAmount($amount);
$request = $this->_buildRequest($payment);
$result = $this->_postRequest($request);
switch ($requestType) {
case self::REQUEST_TYPE_AUTH_ONLY:
$newTransactionType = Mage_Sales_Model_Order_Payment_Transaction::TYPE_AUTH;
$defaultExceptionMessage = Mage::helper('paygate')->__('Payment authorization error.');
break;
case self::REQUEST_TYPE_AUTH_CAPTURE:
$newTransactionType = Mage_Sales_Model_Order_Payment_Transaction::TYPE_CAPTURE;
$defaultExceptionMessage = Mage::helper('paygate')->__('Payment capturing error.');
break;
}
switch ($result->getResponseCode()) {
case self::RESPONSE_CODE_APPROVED:
$this->getCardsStorage($payment)->flushCards();
$card = $this->_registerCard($result, $payment);
$this->_addTransaction($payment, $card->getLastTransId(), $newTransactionType, array('is_transaction_closed' => 0), array($this->_realTransactionIdKey => $card->getLastTransId()), Mage::helper('paygate')->getTransactionMessage($payment, $requestType, $card->getLastTransId(), $card, $amount));
if ($requestType == self::REQUEST_TYPE_AUTH_CAPTURE) {
$card->setCapturedAmount($card->getProcessedAmount());
$this->getCardsStorage($payment)->updateCard($card);
}
return $this;
case self::RESPONSE_CODE_HELD:
if ($result->getResponseReasonCode() == self::RESPONSE_REASON_CODE_PENDING_REVIEW_AUTHORIZED || $result->getResponseReasonCode() == self::RESPONSE_REASON_CODE_PENDING_REVIEW) {
$card = $this->_registerCard($result, $payment);
$this->_addTransaction($payment, $card->getLastTransId(), $newTransactionType, array('is_transaction_closed' => 0), array($this->_realTransactionIdKey => $card->getLastTransId(), $this->_isTransactionFraud => true), Mage::helper('paygate')->getTransactionMessage($payment, $requestType, $card->getLastTransId(), $card, $amount));
if ($requestType == self::REQUEST_TYPE_AUTH_CAPTURE) {
$card->setCapturedAmount($card->getProcessedAmount());
$this->getCardsStorage()->updateCard($card);
}
$payment->setIsTransactionPending(true)->setIsFraudDetected(true);
return $this;
}
if ($result->getResponseReasonCode() == self::RESPONSE_REASON_CODE_PARTIAL_APPROVE) {
$checksum = $this->_generateChecksum($request, $this->_partialAuthorizationChecksumDataKeys);
$this->_getSession()->setData($this->_partialAuthorizationChecksumSessionKey, $checksum);
if ($this->_processPartialAuthorizationResponse($result, $payment)) {
return $this;
}
}
Mage::throwException($defaultExceptionMessage);
case self::RESPONSE_CODE_DECLINED:
case self::RESPONSE_CODE_ERROR:
Mage::throwException($this->_wrapGatewayError($result->getResponseReasonText()));
default:
Mage::throwException($defaultExceptionMessage);
}
return $this;
}
示例2: _refundCardTransaction
/**
* Refund the card transaction through gateway
*
* @param Mage_Payment_Model_Info $payment
* @param Varien_Object $card
* @return Mage_Sales_Model_Order_Payment_Transaction
*/
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, Mage_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()), Mage::helper('paygate')->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 = Mage::helper('paygate')->__('Payment refunding error.');
break;
}
$exceptionMessage = Mage::helper('paygate')->getTransactionMessage($payment, self::REQUEST_TYPE_CREDIT, $realCaptureTransactionId, $card, $amount, $exceptionMessage);
Mage::throwException($exceptionMessage);
}
示例3: _postRequest
/**
* Post the request to the Soap Client in the Profile Model
*
* @param Mage_Payment_Model_Info $payment
* @return Gorilla_ChasePaymentech_Model_Gateway_Result
*/
public function _postRequest($payment)
{
$payment->setAmount($this->_formatAmount($payment->getAmount()));
/** @var $model Gorilla_ChasePaymentech_Model_Profile */
$model = Mage::getModel('chasepaymentech/profile');
switch ($payment->getChasePaymentechTransType()) {
case Gorilla_ChasePaymentech_Model_Profile::TRANS_TYPE_AUTH_ONLY:
case Gorilla_ChasePaymentech_Model_Profile::TRANS_TYPE_AUTH_CAPTURE:
$response = $model->createOrderTransaction($payment, $this->isSavingCc());
break;
case Gorilla_ChasePaymentech_Model_Profile::TRANS_TYPE_REFUND:
$response = $model->createOrderTransaction($payment);
// should be merged with other requests since all are same.
break;
case Gorilla_ChasePaymentech_Model_Profile::TRANS_TYPE_VOID:
$response = $model->createReversalTransaction($payment);
break;
case Gorilla_ChasePaymentech_Model_Profile::TRANS_TYPE_CAPTURE:
$response = $model->createMarkForCaptureTransaction($payment);
break;
default:
$response = false;
break;
}
/** @var $result Gorilla_ChasePaymentech_Model_Gateway_Result */
$result = Mage::getModel('chasepaymentech/gateway_result');
// Parse the direct response
if ($response) {
$r = (array) $response;
} else {
$r = false;
}
if ($r) {
$result->setResponseCode((int) str_replace('"', '', isset($r['respCode']) ? $r['respCode'] : null))->setProcStatusCode((int) str_replace('"', '', $r['procStatus']))->setResponseReasonCode((int) str_replace('"', '', $r['procStatus']))->setResponseReasonText($r['procStatusMessage'])->setApprovalCode($r['approvalStatus'])->setAvsResultCode(isset($r['avsRespCode']) ? $r['avsRespCode'] : null)->setTransactionId($r['txRefNum'])->setTransactionRefIdx(isset($r['txRefIdx']) ? $r['txRefIdx'] : null)->setSplitTransactionId(isset($r['splitTxRefIdx']) ? $r['splitTxRefIdx'] : null)->setInvoiceNumber($r['orderID'])->setAmount($payment->getAmount())->setTransactionType(isset($r['transType']) ? $r['transType'] : null)->setCardCodeResponseCode($r['respCode'])->setCAVVResponseCode(isset($r['cvvRespCode']) ? $r['cvvRespCode'] : null)->setCardType(isset($r['cardBrand']) ? $r['cardBrand'] : null)->setRequestedAmount($payment->getAmount())->setAuthorizationCode(isset($r['authorizationCode']) ? $r['authorizationCode'] : null)->setCcLast4(substr($payment->getCcNumber(), -4))->setCustomerId($this->getCustomer()->getId())->setCustomerRefNum(isset($r['customerRefNum']) ? $r['customerRefNum'] : null);
// if we used a stored credit card we need to set the customer ref number and the last 4 of the cc
if ($payment->getChasePaymentechCustomerRefNum()) {
$cardObj = $model->getCustomerPaymentProfile($payment->getChasePaymentechCustomerRefNum());
$result->setCustomerRefNum($cardObj->customerRefNum)->setCcLast4(substr($cardObj->ccAccountNum, -4));
}
} else {
if ($model->getErrorMessages()) {
//Mage::log($model->getErrorMessages());
Mage::throwException(Mage::helper('paygate')->convertMessagesToMessage($model->getErrorMessages()));
} else {
Mage::throwException($this->_getHelper()->__('Error in payment gateway.'));
}
}
return $result;
}
示例4: _place
/**
* Send request with new payment to PinPayments gateway
*
* @param Mage_Payment_Model_Info $payment
* @param string $requestType
* @param Dwyera_Pinpay_Model_Request
* @return boolean Returns true if order was successfully placed
* @throws Mage_Core_Exception
* @throws InvalidArgumentException
*/
protected function _place($payment, $requestType, $request)
{
$payment->setAmount($request->getAmount());
switch ($requestType) {
case self::REQUEST_TYPE_AUTH_ONLY:
case self::REQUEST_TYPE_AUTH_CAPTURE:
case self::REQUEST_TYPE_CAPTURE_ONLY:
break;
default:
throw new InvalidArgumentException("Invalid request type of {$requestType}");
}
$httpResponse = $this->_postRequest($request, $requestType);
// wrap the gateway response in the pinpay/result model
/** @var Dwyera_Pinpay_Model_Result $result */
$result = Mage::getModel("pinpay/result", $httpResponse);
switch ($result->getGatewayResponseStatus()) {
case $result::RESPONSE_CODE_APPROVED:
// Sets the response token
$payment->setCcTransId('' . $result->getResponseToken());
$payment->setTransactionId('' . $result->getResponseToken());
return true;
case $result::RESPONSE_CODE_SUSP_FRAUD:
$payment->setIsTransactionPending(true);
$payment->setIsFraudDetected(true);
$payment->setCcTransId('' . $result->getErrorToken());
$payment->setTransactionId('' . $result->getErrorToken());
return true;
default:
Mage::log('Payment could not be processed. ' . $result->getErrorDescription(), Zend_Log::INFO, self::$logFile);
Mage::throwException(Mage::helper('pinpay')->__($result->getErrorDescription() . self::RESPONSE_APPEND_MSG));
}
}