From 26822177d6afca338a9d9b8a42e7ab31bf2f2806 Mon Sep 17 00:00:00 2001 From: brianarnold789 Date: Mon, 18 Sep 2017 09:32:21 -0400 Subject: [PATCH] update URLs and massaging to Vantiv --- app/code/local/Litle/CreditCard/Model/PaymentLogic.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/code/local/Litle/CreditCard/Model/PaymentLogic.php b/app/code/local/Litle/CreditCard/Model/PaymentLogic.php index e62eef2..7d5a6d4 100644 --- a/app/code/local/Litle/CreditCard/Model/PaymentLogic.php +++ b/app/code/local/Litle/CreditCard/Model/PaymentLogic.php @@ -78,7 +78,7 @@ public function isFromVT($payment, $txnType) $parentTxnId = $payment->getParentTransactionId(); if ($parentTxnId == 'Litle VT') { Mage::throwException( - "This order was placed using Litle Virtual Terminal. Please process the $txnType by logging into Litle Virtual Terminal (https://reports.litle.com)."); + "This order was placed using Litle Virtual Terminal. Please process the $txnType by logging into Litle Virtual Terminal (https://reports.iq.vantivcnp.com)."); } } @@ -584,11 +584,11 @@ public function handleResponseForNonSuccessfulBackendTransactions(Varien_Object $this->showErrorForFailedTransaction($customerId, $orderId, $litleMessage, $litleResponse, $descriptiveMessage, $litleTxnId, Mage_Sales_Model_Order_Payment_Transaction::TYPE_REFUND); } elseif($litleResponseCode === '370') { - $descriptiveMessage = "Internal System Error - Call Litle. There is a problem with the Litle System. Contact support@litle.com and provide the following transaction id: " . $litleTxnId; + $descriptiveMessage = "Internal System Error - Call Vantiv. There is a problem with the Vantiv eCommerce System. Contact support@vantiv.com and provide the following transaction id: " . $litleTxnId; $this->showErrorForFailedTransaction($customerId, $orderId, $litleMessage, $litleResponse, $descriptiveMessage, $litleTxnId, Mage_Sales_Model_Order_Payment_Transaction::TYPE_PAYMENT); } else { - $descriptiveMessage = "Transaction was not approved and Litle's Magento extension can not tell why. Contact Litle at support@litle.com and provide the following transaction id: " . $litleTxnId; + $descriptiveMessage = "Transaction was not approved and Vantiv's Magento extension can not tell why. Contact Vantiv at support@vantiv.com and provide the following transaction id: " . $litleTxnId; $this->showErrorForFailedTransaction($customerId, $orderId, $litleMessage, $litleResponse, $descriptiveMessage, $litleTxnId, Mage_Sales_Model_Order_Payment_Transaction::TYPE_PAYMENT); }