Version Notes
Supports refunds for invoice orders now
Download this release
Release Info
| Developer | Komfortkasse |
| Extension | Ltc_Komfortkasse |
| Version | 1.4.4.7 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4.4.6 to 1.4.4.7
app/code/community/Ltc/Komfortkasse/Helper/Komfortkasse_Order.php
CHANGED
|
@@ -8,7 +8,7 @@
|
|
| 8 |
* status: data type according to the shop system
|
| 9 |
* delivery_ and billing_: _firstname, _lastname, _company, _street, _postcode, _city, _countrycode
|
| 10 |
* products: an Array of item numbers
|
| 11 |
-
* @version 1.4.4.
|
| 12 |
*/
|
| 13 |
$path = Mage::getModuleDir('', 'Ltc_Komfortkasse');
|
| 14 |
$order_extension = false;
|
|
@@ -132,6 +132,7 @@ class Komfortkasse_Order
|
|
| 132 |
}
|
| 133 |
|
| 134 |
$paymentMethods = explode(',', Komfortkasse_Config::getConfig(Komfortkasse_Config::payment_methods, $store_id_order));
|
|
|
|
| 135 |
|
| 136 |
$cmModel = Mage::getModel("sales/order_creditmemo");
|
| 137 |
$cmCollection = $cmModel->getCollection()->addFieldToFilter('store_id', $store_id);
|
|
@@ -145,7 +146,7 @@ class Komfortkasse_Order
|
|
| 145 |
// payment method has been deleted
|
| 146 |
$method = null;
|
| 147 |
}
|
| 148 |
-
if ($method && in_array($method, $paymentMethods, true) === true) {
|
| 149 |
$cmId = $creditMemo->getIncrementId();
|
| 150 |
$ret [] = $cmId;
|
| 151 |
}
|
| 8 |
* status: data type according to the shop system
|
| 9 |
* delivery_ and billing_: _firstname, _lastname, _company, _street, _postcode, _city, _countrycode
|
| 10 |
* products: an Array of item numbers
|
| 11 |
+
* @version 1.4.4.7-Magento1
|
| 12 |
*/
|
| 13 |
$path = Mage::getModuleDir('', 'Ltc_Komfortkasse');
|
| 14 |
$order_extension = false;
|
| 132 |
}
|
| 133 |
|
| 134 |
$paymentMethods = explode(',', Komfortkasse_Config::getConfig(Komfortkasse_Config::payment_methods, $store_id_order));
|
| 135 |
+
$paymentMethodsInvoice = explode(',', Komfortkasse_Config::getConfig(Komfortkasse_Config::payment_methods_invoice, $store_id_order));
|
| 136 |
|
| 137 |
$cmModel = Mage::getModel("sales/order_creditmemo");
|
| 138 |
$cmCollection = $cmModel->getCollection()->addFieldToFilter('store_id', $store_id);
|
| 146 |
// payment method has been deleted
|
| 147 |
$method = null;
|
| 148 |
}
|
| 149 |
+
if ($method && (in_array($method, $paymentMethods, true) === true || in_array($method, $paymentMethodsInvoice, true) === true)) {
|
| 150 |
$cmId = $creditMemo->getIncrementId();
|
| 151 |
$ret [] = $cmId;
|
| 152 |
}
|
app/code/community/Ltc/Komfortkasse/etc/config.xml
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
<config>
|
| 4 |
<modules>
|
| 5 |
<Ltc_Komfortkasse>
|
| 6 |
-
<version>1.4.4.
|
| 7 |
</Ltc_Komfortkasse>
|
| 8 |
</modules>
|
| 9 |
<global>
|
| 3 |
<config>
|
| 4 |
<modules>
|
| 5 |
<Ltc_Komfortkasse>
|
| 6 |
+
<version>1.4.4.7</version>
|
| 7 |
</Ltc_Komfortkasse>
|
| 8 |
</modules>
|
| 9 |
<global>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Ltc_Komfortkasse</name>
|
| 4 |
-
<version>1.4.4.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://creativecommons.org/licenses/by-nd/4.0/">CC BY-ND 4.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -13,11 +13,11 @@ Zusätzlich können automatische Zahlungserinnerungen versendet werden u
|
|
| 13 |

|
| 14 |
Es ist eine Anmeldung auf www.komfortkasse.eu erforderlich (kostenloses Paket verfügbar).
|
| 15 |
</description>
|
| 16 |
-
<notes>
|
| 17 |
<authors><author><name>Komfortkasse</name><user>komfortkasse</user><email>integration@komfortkasse.eu</email></author></authors>
|
| 18 |
-
<date>2016-03-
|
| 19 |
-
<time>
|
| 20 |
-
<contents><target name="magecommunity"><dir name="Ltc"><dir name="Komfortkasse"><dir name="Helper"><file name="Data.php" hash="42f1d168bb70725128e15daf305802ba"/><file name="Komfortkasse.php" hash="94437288becf611e7f4035d1b6318e0c"/><file name="Komfortkasse_Config.php" hash="44cf103f0ddef60890cd6c221262b7e5"/><file name="Komfortkasse_Order.php" hash="
|
| 21 |
<compatible/>
|
| 22 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
| 23 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Ltc_Komfortkasse</name>
|
| 4 |
+
<version>1.4.4.7</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://creativecommons.org/licenses/by-nd/4.0/">CC BY-ND 4.0</license>
|
| 7 |
<channel>community</channel>
|
| 13 |

|
| 14 |
Es ist eine Anmeldung auf www.komfortkasse.eu erforderlich (kostenloses Paket verfügbar).
|
| 15 |
</description>
|
| 16 |
+
<notes>Supports refunds for invoice orders now</notes>
|
| 17 |
<authors><author><name>Komfortkasse</name><user>komfortkasse</user><email>integration@komfortkasse.eu</email></author></authors>
|
| 18 |
+
<date>2016-03-11</date>
|
| 19 |
+
<time>08:53:05</time>
|
| 20 |
+
<contents><target name="magecommunity"><dir name="Ltc"><dir name="Komfortkasse"><dir name="Helper"><file name="Data.php" hash="42f1d168bb70725128e15daf305802ba"/><file name="Komfortkasse.php" hash="94437288becf611e7f4035d1b6318e0c"/><file name="Komfortkasse_Config.php" hash="44cf103f0ddef60890cd6c221262b7e5"/><file name="Komfortkasse_Order.php" hash="bb0d0897b9b82caeb0c12052b62dfdbb"/></dir><dir name="Model"><file name="Encryptionoptions.php" hash="774297014fb6ce333a3a0b6063de2ac9"/><file name="Observer.php" hash="5b616b6d3651df44f8297c732dc478bb"/></dir><dir name="controllers"><file name="MainController.php" hash="b983fe60b2bbfa3aa1d57850cc6c045b"/></dir><dir name="etc"><file name="config.xml" hash="b43010bb8901a336689658244d909eeb"/><file name="system.xml" hash="3364fe33d7518eb136721fb81957c447"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ltc_Komfortkasse.xml" hash="433066ef75047d9468dcea87888283d2"/></dir></target></contents>
|
| 21 |
<compatible/>
|
| 22 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
| 23 |
</package>
|
