Version Notes
This extension implements Litle XML
Additional features include enhanced reporting on orders, transactions, and customers.
Download this release
Release Info
Developer | Litle |
Extension | Litle_Payments |
Version | 8.13.1 |
Comparing to | |
See all releases |
Code changes from version 8.13.0 to 8.13.1
- app/code/local/Litle/CreditCard/Model/PaymentLogic.php +3 -3
- app/code/local/Litle/CreditCard/etc/config.xml +1 -1
- app/code/local/Litle/LEcheck/etc/config.xml +1 -1
- app/code/local/Litle/LitleSDK/LitleOnlineRequest.php +1 -1
- app/code/local/Litle/Palorus/controllers/Adminhtml/MyformController.php +1 -9
- app/code/local/Litle/Palorus/etc/config.xml +1 -1
- package.xml +11 -29
app/code/local/Litle/CreditCard/Model/PaymentLogic.php
CHANGED
@@ -253,7 +253,7 @@ class Litle_CreditCard_Model_PaymentLogic extends Mage_Payment_Model_Method_Cc
|
|
253 |
'password'=> $this->getConfigData("password"),
|
254 |
'merchantId'=> $this->getMerchantId($payment),
|
255 |
'version'=>'8.10',
|
256 |
-
'merchantSdk'=>'Magento;8.13.
|
257 |
'reportGroup'=>$this->getMerchantId($payment),
|
258 |
'customerId'=> $order->getCustomerEmail(),
|
259 |
'url'=>$this->getConfigData("url"),
|
@@ -351,8 +351,8 @@ class Litle_CreditCard_Model_PaymentLogic extends Mage_Payment_Model_Method_Cc
|
|
351 |
$billing = $order->getBillingAddress();
|
352 |
$i = 0;
|
353 |
$hash = array('salesTax'=> $order->getTaxAmount()*100,
|
354 |
-
'discountAmount'=>$order->getDiscountAmount(),
|
355 |
-
'shippingAmount'=>$order->getShippingAmount(),
|
356 |
'destinationPostalCode'=>$billing->getPostcode(),
|
357 |
'destinationCountryCode'=>$billing->getCountry(),
|
358 |
'orderDate'=>$this->getOrderDate($payment),
|
253 |
'password'=> $this->getConfigData("password"),
|
254 |
'merchantId'=> $this->getMerchantId($payment),
|
255 |
'version'=>'8.10',
|
256 |
+
'merchantSdk'=>'Magento;8.13.1',
|
257 |
'reportGroup'=>$this->getMerchantId($payment),
|
258 |
'customerId'=> $order->getCustomerEmail(),
|
259 |
'url'=>$this->getConfigData("url"),
|
351 |
$billing = $order->getBillingAddress();
|
352 |
$i = 0;
|
353 |
$hash = array('salesTax'=> $order->getTaxAmount()*100,
|
354 |
+
'discountAmount'=>$order->getDiscountAmount()*100,
|
355 |
+
'shippingAmount'=>$order->getShippingAmount()*100,
|
356 |
'destinationPostalCode'=>$billing->getPostcode(),
|
357 |
'destinationCountryCode'=>$billing->getCountry(),
|
358 |
'orderDate'=>$this->getOrderDate($payment),
|
app/code/local/Litle/CreditCard/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_CreditCard>
|
5 |
-
<version>8.13.
|
6 |
</Litle_CreditCard>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_CreditCard>
|
5 |
+
<version>8.13.1</version>
|
6 |
</Litle_CreditCard>
|
7 |
</modules>
|
8 |
<global>
|
app/code/local/Litle/LEcheck/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_LEcheck>
|
5 |
-
<version>8.13.
|
6 |
</Litle_LEcheck>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_LEcheck>
|
5 |
+
<version>8.13.1</version>
|
6 |
</Litle_LEcheck>
|
7 |
</modules>
|
8 |
<global>
|
app/code/local/Litle/LitleSDK/LitleOnlineRequest.php
CHANGED
@@ -325,7 +325,7 @@ class LitleOnlineRequest
|
|
325 |
$hash_out['merchantSdk'] = $hash_in['merchantSdk'];
|
326 |
}
|
327 |
else {
|
328 |
-
$hash_out['merchantSdk'] = 'PHP;8.13.
|
329 |
}
|
330 |
if(isset($hash_in['id'])) {
|
331 |
$hash_out['id'] = $hash_in['id'];
|
325 |
$hash_out['merchantSdk'] = $hash_in['merchantSdk'];
|
326 |
}
|
327 |
else {
|
328 |
+
$hash_out['merchantSdk'] = 'PHP;8.13.1';
|
329 |
}
|
330 |
if(isset($hash_in['id'])) {
|
331 |
$hash_out['id'] = $hash_in['id'];
|
app/code/local/Litle/Palorus/controllers/Adminhtml/MyformController.php
CHANGED
@@ -65,13 +65,5 @@ class Litle_Palorus_Adminhtml_MyformController extends Mage_Adminhtml_Controller
|
|
65 |
public function chargebackReportAction()
|
66 |
{
|
67 |
$this->_redirectUrl(Mage::helper('palorus')->getBaseUrl() . '/ui/reports/chargebacks/compliance');
|
68 |
-
}
|
69 |
-
|
70 |
-
public function postAction()
|
71 |
-
{
|
72 |
-
Mage::log("insightAction");
|
73 |
-
echo "hi from insight";
|
74 |
-
}
|
75 |
-
|
76 |
-
|
77 |
}
|
65 |
public function chargebackReportAction()
|
66 |
{
|
67 |
$this->_redirectUrl(Mage::helper('palorus')->getBaseUrl() . '/ui/reports/chargebacks/compliance');
|
68 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
app/code/local/Litle/Palorus/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_Palorus>
|
5 |
-
<version>8.13.
|
6 |
</Litle_Palorus>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Litle_Palorus>
|
5 |
+
<version>8.13.1</version>
|
6 |
</Litle_Palorus>
|
7 |
</modules>
|
8 |
<global>
|
package.xml
CHANGED
@@ -1,29 +1,11 @@
|
|
1 |
-
<?xml version="1.0"
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
You will need to contact Litle to setup a merchant ID prior to processing your transaction. You can test your system against our sandbox without the need to contact Litle first.
|
13 |
-

|
14 |
-
To test with sandbox, you may enter any user name and password, and select 'Sandbox' from the drop down menu in Payment Method configuration.
|
15 |
-

|
16 |
-
Why Litle?
|
17 |
-

|
18 |
-
We deliver the most efficient and effective core processing available to digital and direct merchants. Relevant, value-added solutions help you drive more lasting and profitable customer relationships. We’ll also show you how payments intelligence can power your business and your relationships to greater success. We support you with the best customer experience in the business.
|
19 |
-
</description>
|
20 |
-
<notes>This extension implements Litle XML version 8.13
|
21 |
-

|
22 |
-
Additional features include enhanced reporting on orders, transactions, and customers.</notes>
|
23 |
-
<authors><author><name>Litle </name><user>Litle</user><email>sdksupport@litle.com</email></author></authors>
|
24 |
-
<date>2012-05-25</date>
|
25 |
-
<time>20:40:59</time>
|
26 |
-
<contents><target name="magelocal"><dir name="Litle"><dir><dir name="CreditCard"><dir name="Block"><dir name="Adminhtml"><file name="Ordergrid.php" hash="c01fb8a142a89562c41a1a315f8f1529"/><file name="Orderview.php" hash="a60e3bb449e9001cab70968c0ee9373d"/></dir><dir name="Form"><file name="CreditCard.php" hash="b6300b9c6906aefe4fb1265f6e611a28"/></dir></dir><dir name="Helper"><file name="Data.php" hash="22486958c37955f4d87d052de53cfecd"/></dir><dir name="Model"><file name="Cctypes.php" hash="cf8f9d91ac8bf313aa8d97b865d719de"/><file name="Lpayment.php" hash="2ed8491cef39c7c17638e02b03b334b4"/><dir name="Order"><file name="Payment.php" hash="a3364b0df34829475e913e53507888ea"/></dir><file name="PaymentLogic.php" hash="2332dd84293da66eb949cf74d569dd87"/><file name="Url.php" hash="ce0ca23963d9eb05552528eb440d19fe"/><file name="ValidateMerchantId.php" hash="00b1fdb98ecd344b76581fc98242c4e3"/><file name="Validatehttp.php" hash="3e6ffb4a267fac166bd8e882fc27b39f"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="OrderController.php" hash="ca1347dcfd4dc19b311b31e75c23891e"/></dir></dir><dir name="etc"><file name="config.xml" hash="74c7465ed3eef35e0e6e2b36e9417f45"/><file name="system.xml" hash="82c4b9c1ece8485e97613c9ebc5ca8ee"/></dir></dir><dir name="LEcheck"><dir name="Block"><dir name="Form"><file name="LEcheck.php" hash="ba7cc807aa5e227bb936a196985476a0"/></dir></dir><dir name="Helper"><file name="Data.php" hash="2c2664ab694e0ba70e45157061a01436"/></dir><dir name="Model"><file name="Accounttypes.php" hash="6628bf9982d0d35341975d0bb83be5e1"/><file name="Config.php" hash="fe64d24b39251551b71e37937792b418"/><file name="PaymentLogic.php" hash="cfc4ab4deb96affb632b7d6caf2b8b15"/><file name="Transactiontypes.php" hash="1aa3e3e77c044e77154f9c24afcfc436"/><file name="Url.php" hash="9e3d8ba06bcb9045abc82f20f18d5ef3"/><file name="Validatehttp.php" hash="6a8d4d6f043976ad272c87a885d937f4"/></dir><dir name="etc"><file name="config.xml" hash="43f4cdc1045e0c990cdda6d249121f02"/><file name="system.xml" hash="daaf81623ceca045d3a3e56e296a29fc"/></dir></dir><dir name="LitleSDK"><file name="Checker.php" hash="505ca6afdfbe3fd521848ea6f23b8d07"/><file name="Communication.php" hash="f78ab9b5497554ae47181053f5f20ac8"/><file name="LitleOnline.php" hash="c7253201309ce7e91a41735410cb4f2d"/><file name="LitleOnlineRequest.php" hash="a53ca9120a21af679a09d43f2c0dfd0a"/><file name="LitleXmlMapper.php" hash="17c64c7f34e5c84ab3461b92268ede46"/><file name="Obj2xml.php" hash="7613e168c5d16af1fe2c623041f4012f"/><file name="Setup.php" hash="7344e369d0b1a639dc5cd26b9a1fdbea"/><file name="UrlMapper.php" hash="f7951fbf0fc218eaa041f0265b358499"/><file name="XmlFields.php" hash="fb4806e06412b72ed5a6b96fc20cb18f"/><file name="XmlParser.php" hash="9fb83575223778fad8eaee1bef16ab36"/></dir><dir name="Palorus"><dir name="Block"><dir name="Adminhtml"><dir name="Palorus"><dir name="Insight"><file name="Tab.php" hash="092a1b895aa092a8c19b83578697af5e"/></dir></dir><file name="Transaction.php" hash="d09244a9d0616ffcb1230a4323cd23cf"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a00cb4f2aa593a036f80b8faf5795ab1"/></dir><dir name="Model"><file name="Insight.php" hash="837fd9a46dc1d2a9362742299818aa9f"/><dir name="Mysql4"><dir name="Insight"><file name="Collection.php" hash="ce93a4bc5c69a69967a5a48b8f6a0a6f"/></dir><file name="Insight.php" hash="b8faca9944ba3ccd28505b36a8485e50"/><dir name="Vault"><file name="Collection.php" hash="433f5fee8c86fd2bd73282a7c3f7c1fb"/></dir><file name="Vault.php" hash="6a94ddb1a9d46873d83cc3c71b2828a6"/></dir><file name="Vault.php" hash="0e33db7cfdbae8e9b2a7de77aff12e98"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MyformController.php" hash="0d5c7c9d70f513f5428bee0bf7b5bbaf"/></dir></dir><dir name="etc"><file name="config.xml" hash="f323cc70b36722de292eb2885ec17188"/></dir><dir name="sql"><dir name="palorus_setup"><file name="mysql4-install-8.13.0.php" hash="65e2cda8318d2e986c5644a802e66bf3"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Litle_All.xml" hash="09fb485ff33fb8680e38742182d6d0ba"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="payment"><dir name="form"><file name="litleecheck.phtml" hash="a92047f43e72f60fea75dd536bba0552"/><file name="litlecc.phtml" hash="1d7afe36a27031ca5d4b0ba4c00a956e"/><file name="litlejs.phtml" hash="775224833051c1b7df7c32a626994ec0"/></dir></dir></dir><dir name="layout"><file name="litlecreditcard.xml" hash="4ed33c73b8c2edd3d57e140997a73ca8"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="payment"><dir name="form"><file name="litlecc.phtml" hash="1d7afe36a27031ca5d4b0ba4c00a956e"/><file name="litleecheck.phtml" hash="a92047f43e72f60fea75dd536bba0552"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="litle.xml" hash="c0e6321907f69c20502fd079188fbba4"/></dir><dir name="template"><dir name="payment"><dir name="form"><file name="litlecc.phtml" hash="8abb799e1cf936411912fe996b17cfa7"/><file name="litleecheck.phtml" hash="b9921c8126c2eab4a77bd4f120935753"/></dir></dir></dir></dir></dir></dir></target></contents>
|
27 |
-
<compatible/>
|
28 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
29 |
-
</package>
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?><package><name>Litle_Payments</name><version>8.13.1</version><stability>stable</stability><license>MIT</license><channel>community</channel><extends/><summary>This extension allows you to accept payments through Litle.</summary><description>Installation of this extension will allow you to easily accept payments through Litle. Once installed, you can choose to accept credit cards as well as eChecks to be processed by Litle.&#13;
|
2 |
+
&#13;
|
3 |
+
You will need to contact Litle to setup a merchant ID prior to processing your transaction. You can test your system against our sandbox without the need to contact Litle first.&#13;
|
4 |
+
&#13;
|
5 |
+
To test with sandbox, you may enter any user name and password, and select 'Sandbox' from the drop down menu in Payment Method configuration.&#13;
|
6 |
+
&#13;
|
7 |
+
Why Litle?&#13;
|
8 |
+
&#13;
|
9 |
+
We deliver the most efficient and effective core processing available to digital and direct merchants. Relevant, value-added solutions help you drive more lasting and profitable customer relationships. We’ll also show you how payments intelligence can power your business and your relationships to greater success. We support you with the best customer experience in the business.&#13; </description><notes>This extension implements Litle XML&#13;
|
10 |
+
&#13;
|
11 |
+
Additional features include enhanced reporting on orders, transactions, and customers.</notes><authors><author><name>Litle</name><user>Litle</user><email>sdksupport@litle.com</email></author></authors><date>2012-06-04</date><time>17:15:33</time><contents><target name="magelocal"><dir name="Litle"><dir><dir name="LEcheck"><dir name="Block"><dir name="Form"><file hash="ba7cc807aa5e227bb936a196985476a0" name="LEcheck.php"/></dir></dir><dir name="Helper"><file hash="2c2664ab694e0ba70e45157061a01436" name="Data.php"/></dir><dir name="etc"><file hash="4a147eee93471f90a795ad854545424b" name="config.xml"/><file hash="daaf81623ceca045d3a3e56e296a29fc" name="system.xml"/></dir><dir name="Model"><file hash="1aa3e3e77c044e77154f9c24afcfc436" name="Transactiontypes.php"/><file hash="fe64d24b39251551b71e37937792b418" name="Config.php"/><file hash="cfc4ab4deb96affb632b7d6caf2b8b15" name="PaymentLogic.php"/><file hash="9e3d8ba06bcb9045abc82f20f18d5ef3" name="Url.php"/><file hash="6628bf9982d0d35341975d0bb83be5e1" name="Accounttypes.php"/><file hash="6a8d4d6f043976ad272c87a885d937f4" name="Validatehttp.php"/></dir></dir><dir name="LitleSDK"><file hash="17c64c7f34e5c84ab3461b92268ede46" name="LitleXmlMapper.php"/><file hash="20f27ddee7798c85dcf6180b98744f75" name="LitleOnlineRequest.php"/><file hash="f78ab9b5497554ae47181053f5f20ac8" name="Communication.php"/><file hash="7344e369d0b1a639dc5cd26b9a1fdbea" name="Setup.php"/><file hash="7613e168c5d16af1fe2c623041f4012f" name="Obj2xml.php"/><file hash="9fb83575223778fad8eaee1bef16ab36" name="XmlParser.php"/><file hash="fb4806e06412b72ed5a6b96fc20cb18f" name="XmlFields.php"/><file hash="c7253201309ce7e91a41735410cb4f2d" name="LitleOnline.php"/><file hash="505ca6afdfbe3fd521848ea6f23b8d07" name="Checker.php"/><file hash="f7951fbf0fc218eaa041f0265b358499" name="UrlMapper.php"/></dir><dir name="CreditCard"><dir name="controllers"><dir name="Adminhtml"><file hash="ca1347dcfd4dc19b311b31e75c23891e" name="OrderController.php"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file hash="c01fb8a142a89562c41a1a315f8f1529" name="Ordergrid.php"/><file hash="a60e3bb449e9001cab70968c0ee9373d" name="Orderview.php"/></dir><dir name="Form"><file hash="b6300b9c6906aefe4fb1265f6e611a28" name="CreditCard.php"/></dir></dir><dir name="Helper"><file hash="22486958c37955f4d87d052de53cfecd" name="Data.php"/></dir><dir name="etc"><file hash="fa336670085c7ed1e5ea74383e9f7bb2" name="config.xml"/><file hash="82c4b9c1ece8485e97613c9ebc5ca8ee" name="system.xml"/></dir><dir name="Model"><file hash="00b1fdb98ecd344b76581fc98242c4e3" name="ValidateMerchantId.php"/><file hash="cf8f9d91ac8bf313aa8d97b865d719de" name="Cctypes.php"/><file hash="48b5bae3229304246344cd42a22b107c" name="PaymentLogic.php"/><file hash="ce0ca23963d9eb05552528eb440d19fe" name="Url.php"/><dir name="Order"><file hash="a3364b0df34829475e913e53507888ea" name="Payment.php"/></dir><file hash="2ed8491cef39c7c17638e02b03b334b4" name="Lpayment.php"/><file hash="3e6ffb4a267fac166bd8e882fc27b39f" name="Validatehttp.php"/></dir></dir><dir name="Palorus"><dir name="controllers"><dir name="Adminhtml"><file hash="89faddb2a693533126499504f3809e9d" name="MyformController.php"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file hash="d09244a9d0616ffcb1230a4323cd23cf" name="Transaction.php"/><dir name="Palorus"><dir name="Insight"><file hash="092a1b895aa092a8c19b83578697af5e" name="Tab.php"/></dir></dir></dir></dir><dir name="Helper"><file hash="a00cb4f2aa593a036f80b8faf5795ab1" name="Data.php"/></dir><dir name="etc"><file hash="426688f84094f0d9f4fd7aecb19685ad" name="config.xml"/></dir><dir name="Model"><file hash="837fd9a46dc1d2a9362742299818aa9f" name="Insight.php"/><file hash="0e33db7cfdbae8e9b2a7de77aff12e98" name="Vault.php"/><dir name="Mysql4"><dir name="Vault"><file hash="433f5fee8c86fd2bd73282a7c3f7c1fb" name="Collection.php"/></dir><dir name="Insight"><file hash="ce93a4bc5c69a69967a5a48b8f6a0a6f" name="Collection.php"/></dir><file hash="b8faca9944ba3ccd28505b36a8485e50" name="Insight.php"/><file hash="6a94ddb1a9d46873d83cc3c71b2828a6" name="Vault.php"/></dir></dir><dir name="sql"><dir name="palorus_setup"><file hash="65e2cda8318d2e986c5644a802e66bf3" name="mysql4-install-8.13.0.php"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file hash="09fb485ff33fb8680e38742182d6d0ba" name="Litle_All.xml"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="payment"><dir name="form"><file hash="a92047f43e72f60fea75dd536bba0552" name="litleecheck.phtml"/><file hash="1d7afe36a27031ca5d4b0ba4c00a956e" name="litlecc.phtml"/></dir></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="payment"><dir name="form"><file hash="a92047f43e72f60fea75dd536bba0552" name="litleecheck.phtml"/><file hash="1d7afe36a27031ca5d4b0ba4c00a956e" name="litlecc.phtml"/><file hash="775224833051c1b7df7c32a626994ec0" name="litlejs.phtml"/></dir></dir></dir><dir name="layout"><file hash="4ed33c73b8c2edd3d57e140997a73ca8" name="litlecreditcard.xml"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="payment"><dir name="form"><file hash="b9921c8126c2eab4a77bd4f120935753" name="litleecheck.phtml"/><file hash="8abb799e1cf936411912fe996b17cfa7" name="litlecc.phtml"/></dir></dir></dir><dir name="layout"><file hash="c0e6321907f69c20502fd079188fbba4" name="litle.xml"/></dir></dir></dir></dir></target></contents><compatible/><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies></package>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|