Version Notes
Bugfix: Avoid getQuote() on the session if quote hasn't been initialized yet
Download this release
Release Info
Developer | Magento Core Team |
Extension | FireGento_GermanSetup |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- app/code/community/FireGento/GermanSetup/Model/Source/Tax/NewProductTaxClass.php +16 -1
- app/code/community/FireGento/GermanSetup/Model/Tax/Config.php +10 -1
- app/code/community/FireGento/GermanSetup/etc/at/tax.xml +3 -3
- app/code/community/FireGento/GermanSetup/etc/ch/tax.xml +3 -3
- app/code/community/FireGento/GermanSetup/etc/config.xml +1 -1
- app/code/community/FireGento/GermanSetup/etc/default/tax.xml +3 -3
- app/code/community/FireGento/GermanSetup/etc/system.xml +3 -1
- package.xml +4 -4
app/code/community/FireGento/GermanSetup/Model/Source/Tax/NewProductTaxClass.php
CHANGED
@@ -76,7 +76,22 @@ class FireGento_GermanSetup_Model_Source_Tax_NewProductTaxClass
|
|
76 |
*/
|
77 |
public function getAllOptions()
|
78 |
{
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
81 |
|
82 |
/**
|
76 |
*/
|
77 |
public function getAllOptions()
|
78 |
{
|
79 |
+
if (!sizeof($this->_options)) {
|
80 |
+
$taxClasses = $this->_getConfigNode('tax_classes', 'default');
|
81 |
+
foreach ($taxClasses as $taxClass) {
|
82 |
+
if ($taxClass['class_type'] != 'PRODUCT' || $taxClass['execute'] != 1) {
|
83 |
+
continue;
|
84 |
+
}
|
85 |
+
|
86 |
+
$this->_options[] = array(
|
87 |
+
'value' => $taxClass['class_id'],
|
88 |
+
'label' => $taxClass['class_name'],
|
89 |
+
);
|
90 |
+
}
|
91 |
+
array_unshift($this->_options, array('value' => '', 'label' =>''));
|
92 |
+
}
|
93 |
+
|
94 |
+
return $this->_options;
|
95 |
}
|
96 |
|
97 |
/**
|
app/code/community/FireGento/GermanSetup/Model/Tax/Config.php
CHANGED
@@ -47,7 +47,16 @@ class FireGento_GermanSetup_Model_Tax_Config extends Mage_Tax_Model_Config
|
|
47 |
/* @var $session Mage_Checkout_Model_Session */
|
48 |
$session = Mage::getSingleton('checkout/session');
|
49 |
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
$taxClassIds = array();
|
52 |
$highestTaxRate = null;
|
53 |
|
47 |
/* @var $session Mage_Checkout_Model_Session */
|
48 |
$session = Mage::getSingleton('checkout/session');
|
49 |
|
50 |
+
if ($session->hasQuote()) {
|
51 |
+
$quoteItems = $session->getQuote()->getAllItems();
|
52 |
+
} else {
|
53 |
+
// This case happens if the store currency is switched by the customer.
|
54 |
+
// The quote isn't yet set on the session model at the time collectTotals()
|
55 |
+
// by the session because of the changed currency, which in turn ends up in this
|
56 |
+
// method, which again triggers collectTotals() by getting the quote from the
|
57 |
+
// session model, ending in a recursion loop.
|
58 |
+
$quoteItems = array();
|
59 |
+
}
|
60 |
$taxClassIds = array();
|
61 |
$highestTaxRate = null;
|
62 |
|
app/code/community/FireGento/GermanSetup/etc/at/tax.xml
CHANGED
@@ -77,14 +77,14 @@
|
|
77 |
<products_20_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
-
<class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_20_percent>
|
84 |
<products_10_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
-
<class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_10_percent>
|
@@ -97,7 +97,7 @@
|
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
-
<class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
77 |
<products_20_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
+
<class_name>Umsatzsteuerpflichtige Güter 20%</class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_20_percent>
|
84 |
<products_10_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
+
<class_name>Umsatzsteuerpflichtige Güter 10%</class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_10_percent>
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
+
<class_name>Versand</class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
app/code/community/FireGento/GermanSetup/etc/ch/tax.xml
CHANGED
@@ -77,14 +77,14 @@
|
|
77 |
<products_8_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
-
<class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_8_percent>
|
84 |
<products_25_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
-
<class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_25_percent>
|
@@ -97,7 +97,7 @@
|
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
-
<class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
77 |
<products_8_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
+
<class_name>Umsatzsteuerpflichtige Güter 8%</class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_8_percent>
|
84 |
<products_25_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
+
<class_name>Umsatzsteuerpflichtige Güter 2.5%</class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_25_percent>
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
+
<class_name>Versand</class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
app/code/community/FireGento/GermanSetup/etc/config.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<config>
|
26 |
<modules>
|
27 |
<FireGento_GermanSetup>
|
28 |
-
<version>1.1.
|
29 |
</FireGento_GermanSetup>
|
30 |
</modules>
|
31 |
<global>
|
25 |
<config>
|
26 |
<modules>
|
27 |
<FireGento_GermanSetup>
|
28 |
+
<version>1.1.2</version>
|
29 |
</FireGento_GermanSetup>
|
30 |
</modules>
|
31 |
<global>
|
app/code/community/FireGento/GermanSetup/etc/default/tax.xml
CHANGED
@@ -77,14 +77,14 @@
|
|
77 |
<products_19_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
-
<class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_19_percent>
|
84 |
<products_7_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
-
<class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_7_percent>
|
@@ -97,7 +97,7 @@
|
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
-
<class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
77 |
<products_19_percent>
|
78 |
<execute>1</execute>
|
79 |
<class_id>1</class_id>
|
80 |
+
<class_name>Umsatzsteuerpflichtige Güter 19%</class_name>
|
81 |
<class_type>PRODUCT</class_type>
|
82 |
<default>1</default>
|
83 |
</products_19_percent>
|
84 |
<products_7_percent>
|
85 |
<execute>1</execute>
|
86 |
<class_id>2</class_id>
|
87 |
+
<class_name>Umsatzsteuerpflichtige Güter 7%</class_name>
|
88 |
<class_type>PRODUCT</class_type>
|
89 |
<default>0</default>
|
90 |
</products_7_percent>
|
97 |
<shipping>
|
98 |
<execute>1</execute>
|
99 |
<class_id>4</class_id>
|
100 |
+
<class_name>Versand</class_name>
|
101 |
<class_type>PRODUCT</class_type>
|
102 |
<default>0</default>
|
103 |
</shipping>
|
app/code/community/FireGento/GermanSetup/etc/system.xml
CHANGED
@@ -274,7 +274,6 @@
|
|
274 |
<show_in_website>1</show_in_website>
|
275 |
<show_in_store>1</show_in_store>
|
276 |
</display_additional_information>
|
277 |
-
|
278 |
<additional_information translate="label">
|
279 |
<label>Additional Information</label>
|
280 |
<frontend_type>textarea</frontend_type>
|
@@ -282,6 +281,9 @@
|
|
282 |
<show_in_default>1</show_in_default>
|
283 |
<show_in_website>1</show_in_website>
|
284 |
<show_in_store>1</show_in_store>
|
|
|
|
|
|
|
285 |
</additional_information>
|
286 |
</fields>
|
287 |
</options>
|
274 |
<show_in_website>1</show_in_website>
|
275 |
<show_in_store>1</show_in_store>
|
276 |
</display_additional_information>
|
|
|
277 |
<additional_information translate="label">
|
278 |
<label>Additional Information</label>
|
279 |
<frontend_type>textarea</frontend_type>
|
281 |
<show_in_default>1</show_in_default>
|
282 |
<show_in_website>1</show_in_website>
|
283 |
<show_in_store>1</show_in_store>
|
284 |
+
<depends>
|
285 |
+
<display_additional_information>1</display_additional_information>
|
286 |
+
</depends>
|
287 |
</additional_information>
|
288 |
</fields>
|
289 |
</options>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>FireGento_GermanSetup</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-3.0">GNU General Public License, version 3 (GPLv3)</license>
|
7 |
<channel>community</channel>
|
@@ -23,11 +23,11 @@ Vorteile:
|
|
23 |
- Keine Rewrites, keine überlagerten Klassen
|
24 |
- Installierbar zu beliebigen Zeitpunkten
|
25 |
- Überschreiben von Daten nur auf Wunsch, nicht automatisch</description>
|
26 |
-
<notes>
|
27 |
<authors><author><name>FireGento Team</name><user>auto-converted</user><email>team@firegento.de</email></author></authors>
|
28 |
<date>2012-08-02</date>
|
29 |
-
<time>
|
30 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="germansetup.xml" hash="e6aaef3c6a9d533e657402d124a37b41"/></dir><dir name="template"><dir name="germansetup"><file name="extensions.phtml" hash="07d9304feb032b5e842f98a6b87084a0"/><file name="form.phtml" hash="3475cd160c0327a44bc721887a4bd422"/><file name="notifications.phtml" hash="e44b09e2449c2975fce78492ddef6dcb"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="germansetup.xml" hash="fe2f7adf187e74421a0ee6453df6efc0"/></dir><dir name="template"><dir name="germansetup"><dir name="checkout"><file name="additional.phtml" hash="4853303a07693827e7de31509ab7f85c"/><dir name="multishipping"><file name="agreements.phtml" hash="b4a9d15f10603b610bd5b2580adf0f61"/><file name="overview.phtml" hash="af1aa216e8e4c2f241df8d0f528744bb"/></dir><dir name="onepage"><file name="agreements.phtml" hash="efa502290a458dac7ea31b8abdd6c327"/></dir></dir><dir name="imprint"><file name="address.phtml" hash="cda9fd3a76ceda0dbd071a4c2eef1529"/><file name="bank.phtml" hash="ecc8bdcdad0db71085cc4d5a1beb58f5"/><file name="communication.phtml" hash="b003c398e387c80404525489b8e92a23"/><file name="email_footer.phtml" hash="9dcf3aa25109a8e7b8d9a236d92fd8e9"/><file name="legal.phtml" hash="0cc7cd9ca235fc2b7d20f12b565764e4"/><file name="tax.phtml" hash="6a766c210c013c6517fcd07d43bba0eb"/></dir><file name="price_info.phtml" hash="2f74f085ca873aad6d02b29368fff397"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><dir name="template"><dir name="germansetup"><dir name="block"><file name="agb.html" hash="12b9765598280cb21db12493500aceb0"/><file name="widerruf.html" hash="470282d7d2aadb660fa57ea70af7aa9b"/></dir><dir name="email"><file name="account_new.html" hash="494a9f9dd113ee67b615c92b780e6c55"/><file name="account_new_confirmation.html" hash="1d8e6c3a56b7c124b854d5eff31a64a7"/><file name="account_new_confirmed.html" hash="8858237e657d8a8993fb23e4d51eece1"/><file name="admin_password_new.html" hash="422a8dabcac72ff06ac482d34746044e"/><file name="contact_form.html" hash="41d4d8c609070e02f48265d6c2cf1721"/><file name="creditmemo_new.html" hash="cb971e21899dce8ab508da2a350fe075"/><file name="creditmemo_new_guest.html" hash="b559c45091b6e730dda656ed318e1c05"/><file name="creditmemo_update.html" hash="3ba7a109994bd1a59fbae720f03bf236"/><file name="creditmemo_update_guest.html" hash="b18d23f8c8ec29c9741ec0989792bc04"/><file name="currency_update_warning.html" hash="e173548da8abb6be3efc7778d85ffdc7"/><file name="enterprise_invitation.html" hash="c7ac145656d0aed2defedbc3f6887def"/><file name="invoice_new.html" hash="8c8e6b61c0cca5e507900c67c1d20d84"/><file name="invoice_new_guest.html" hash="b7e94f2d8eb63200dfd7b846b67bfe54"/><file name="invoice_update.html" hash="268f054ab42b1a7e2d07d23e19feeb80"/><file name="invoice_update_guest.html" hash="895f4c25f2c1d3692c1665303065fc15"/><file name="log_clean_warning.html" hash="f1a16ce983fa9507080085d86ec9b3cf"/><file name="newsletter_subscr_confirm.html" hash="9efddbee1af15277a8cc6228e948c9e1"/><file name="newsletter_subscr_success.html" hash="ca0c234580c0578de8df2acb93fa483a"/><file name="newsletter_unsub_success.html" hash="2dd3d744cbb99b0178c08a44cac022af"/><file name="order_new.html" hash="e9a61fef85458823fbcebc26afca2d62"/><file name="order_new_guest.html" hash="92148feff4df9a8114d3201dcf9b0088"/><file name="order_update.html" hash="bdd2fb4c42d2ed8e0b545d07556f89d1"/><file name="order_update_guest.html" hash="db7cf483e0db009cf5de74f8fb66a506"/><file name="password_new.html" hash="7050754db20197615739447741313bed"/><file name="payment_failed.html" hash="8c273e9a554005a4ee122402f17c8c32"/><file name="product_alert_cron_error.html" hash="adcfca6f2588508b228c24b4255ade87"/><file name="product_price_alert.html" hash="f16a51c3cbcf99dc1ac125d2981bd0a9"/><file name="product_share.html" hash="4101ebfc5c7703cf6c2e54cd783ecb6a"/><file name="product_stock_alert.html" hash="95b6df2f12a3d397755ea2bdf79b2f90"/><file name="shipment_new.html" hash="ab163ee055423112ac3fbebcf80d4ebd"/><file name="shipment_new_guest.html" hash="5956d6299b4331a275cbe7b42a38ecc6"/><file name="shipment_update.html" hash="0a4f664892665ee8fe616bdb5974f487"/><file name="shipment_update_guest.html" hash="228329ca37ad6cf40f128d189638c908"/><file name="sitemap_generate_warning.html" hash="2ef567f4f3d305ec7ac41178c97db7fb"/><file name="wishlist_share.html" hash="4d8bcbe605efa11afa789098e74d35b2"/></dir><dir name="page"><file name="404.html" hash="17dc05fa677b464bbf9d3fc032dbc1ea"/><file name="agb.html" hash="42d4c7af3c93cc9b3554b3990b68700b"/><file name="bestellung.html" hash="bf3939c6556f4386535af869b549cd6e"/><file name="datenschutz.html" hash="e2c6f563374c7b4df4568df738fe576e"/><file name="impressum.html" hash="30fd7a59fdda57d202893b739292c6b7"/><file name="lieferung.html" hash="39f30de78be92b7349c58f294eb0371a"/><file name="rechtlicheinfos.html" hash="cf0b797def0f80b3a26ad7d4fc6477f5"/><file name="widerruf.html" hash="9790bf35b907ed943060d499d427813e"/><file name="zahlung.html" hash="91d9a3e2566521f7bb34f5caa6c51f50"/></dir></dir></dir><file name="FireGento_GermanSetup.csv" hash="cfea44912685695fd95df01c90088030"/></dir></target><target name="magecommunity"><dir name="FireGento"><dir name="GermanSetup"><dir name="Block"><file name="Ga.php" hash="3445bd898d7b23993f9b94e1a900e2e8"/><dir name="Adminhtml"><file name="Germansetup.php" hash="b55bf48a215319d6f56d17a746ac5c05"/><file name="Notifications.php" hash="d43f0b9267bc5b3f65752b69966406d2"/></dir><dir name="Bundle"><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="211e4463300cfc023d07508a28447c2c"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="1c4513a585068a98c007551eb385527e"/></dir></dir><dir name="Checkout"><file name="Information.php" hash="f376a5fa8a91412cb90fc12b0a1cb19b"/></dir><dir name="Imprint"><file name="Content.php" hash="0025837f93b1c5f84c4cd367246c855f"/><file name="Field.php" hash="73e9b043eca8f76844938163b0431dcb"/></dir></dir><dir name="controllers"><file name="FrontendController.php" hash="beef26faeb3ef6206a50dc22ab50fe8f"/><file name="GermansetupController.php" hash="ccc207a54ca2387b17759a2351a5e15b"/></dir><dir name="etc"><file name="config.xml" hash="
|
31 |
<compatible/>
|
32 |
<dependencies/>
|
33 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>FireGento_GermanSetup</name>
|
4 |
+
<version>1.1.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-3.0">GNU General Public License, version 3 (GPLv3)</license>
|
7 |
<channel>community</channel>
|
23 |
- Keine Rewrites, keine überlagerten Klassen
|
24 |
- Installierbar zu beliebigen Zeitpunkten
|
25 |
- Überschreiben von Daten nur auf Wunsch, nicht automatisch</description>
|
26 |
+
<notes>Bugfix: Avoid getQuote() on the session if quote hasn't been initialized yet</notes>
|
27 |
<authors><author><name>FireGento Team</name><user>auto-converted</user><email>team@firegento.de</email></author></authors>
|
28 |
<date>2012-08-02</date>
|
29 |
+
<time>15:22:12</time>
|
30 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="germansetup.xml" hash="e6aaef3c6a9d533e657402d124a37b41"/></dir><dir name="template"><dir name="germansetup"><file name="extensions.phtml" hash="07d9304feb032b5e842f98a6b87084a0"/><file name="form.phtml" hash="3475cd160c0327a44bc721887a4bd422"/><file name="notifications.phtml" hash="e44b09e2449c2975fce78492ddef6dcb"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="germansetup.xml" hash="fe2f7adf187e74421a0ee6453df6efc0"/></dir><dir name="template"><dir name="germansetup"><dir name="checkout"><file name="additional.phtml" hash="4853303a07693827e7de31509ab7f85c"/><dir name="multishipping"><file name="agreements.phtml" hash="b4a9d15f10603b610bd5b2580adf0f61"/><file name="overview.phtml" hash="af1aa216e8e4c2f241df8d0f528744bb"/></dir><dir name="onepage"><file name="agreements.phtml" hash="efa502290a458dac7ea31b8abdd6c327"/></dir></dir><dir name="imprint"><file name="address.phtml" hash="cda9fd3a76ceda0dbd071a4c2eef1529"/><file name="bank.phtml" hash="ecc8bdcdad0db71085cc4d5a1beb58f5"/><file name="communication.phtml" hash="b003c398e387c80404525489b8e92a23"/><file name="email_footer.phtml" hash="9dcf3aa25109a8e7b8d9a236d92fd8e9"/><file name="legal.phtml" hash="0cc7cd9ca235fc2b7d20f12b565764e4"/><file name="tax.phtml" hash="6a766c210c013c6517fcd07d43bba0eb"/></dir><file name="price_info.phtml" hash="2f74f085ca873aad6d02b29368fff397"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><dir name="template"><dir name="germansetup"><dir name="block"><file name="agb.html" hash="12b9765598280cb21db12493500aceb0"/><file name="widerruf.html" hash="470282d7d2aadb660fa57ea70af7aa9b"/></dir><dir name="email"><file name="account_new.html" hash="494a9f9dd113ee67b615c92b780e6c55"/><file name="account_new_confirmation.html" hash="1d8e6c3a56b7c124b854d5eff31a64a7"/><file name="account_new_confirmed.html" hash="8858237e657d8a8993fb23e4d51eece1"/><file name="admin_password_new.html" hash="422a8dabcac72ff06ac482d34746044e"/><file name="contact_form.html" hash="41d4d8c609070e02f48265d6c2cf1721"/><file name="creditmemo_new.html" hash="cb971e21899dce8ab508da2a350fe075"/><file name="creditmemo_new_guest.html" hash="b559c45091b6e730dda656ed318e1c05"/><file name="creditmemo_update.html" hash="3ba7a109994bd1a59fbae720f03bf236"/><file name="creditmemo_update_guest.html" hash="b18d23f8c8ec29c9741ec0989792bc04"/><file name="currency_update_warning.html" hash="e173548da8abb6be3efc7778d85ffdc7"/><file name="enterprise_invitation.html" hash="c7ac145656d0aed2defedbc3f6887def"/><file name="invoice_new.html" hash="8c8e6b61c0cca5e507900c67c1d20d84"/><file name="invoice_new_guest.html" hash="b7e94f2d8eb63200dfd7b846b67bfe54"/><file name="invoice_update.html" hash="268f054ab42b1a7e2d07d23e19feeb80"/><file name="invoice_update_guest.html" hash="895f4c25f2c1d3692c1665303065fc15"/><file name="log_clean_warning.html" hash="f1a16ce983fa9507080085d86ec9b3cf"/><file name="newsletter_subscr_confirm.html" hash="9efddbee1af15277a8cc6228e948c9e1"/><file name="newsletter_subscr_success.html" hash="ca0c234580c0578de8df2acb93fa483a"/><file name="newsletter_unsub_success.html" hash="2dd3d744cbb99b0178c08a44cac022af"/><file name="order_new.html" hash="e9a61fef85458823fbcebc26afca2d62"/><file name="order_new_guest.html" hash="92148feff4df9a8114d3201dcf9b0088"/><file name="order_update.html" hash="bdd2fb4c42d2ed8e0b545d07556f89d1"/><file name="order_update_guest.html" hash="db7cf483e0db009cf5de74f8fb66a506"/><file name="password_new.html" hash="7050754db20197615739447741313bed"/><file name="payment_failed.html" hash="8c273e9a554005a4ee122402f17c8c32"/><file name="product_alert_cron_error.html" hash="adcfca6f2588508b228c24b4255ade87"/><file name="product_price_alert.html" hash="f16a51c3cbcf99dc1ac125d2981bd0a9"/><file name="product_share.html" hash="4101ebfc5c7703cf6c2e54cd783ecb6a"/><file name="product_stock_alert.html" hash="95b6df2f12a3d397755ea2bdf79b2f90"/><file name="shipment_new.html" hash="ab163ee055423112ac3fbebcf80d4ebd"/><file name="shipment_new_guest.html" hash="5956d6299b4331a275cbe7b42a38ecc6"/><file name="shipment_update.html" hash="0a4f664892665ee8fe616bdb5974f487"/><file name="shipment_update_guest.html" hash="228329ca37ad6cf40f128d189638c908"/><file name="sitemap_generate_warning.html" hash="2ef567f4f3d305ec7ac41178c97db7fb"/><file name="wishlist_share.html" hash="4d8bcbe605efa11afa789098e74d35b2"/></dir><dir name="page"><file name="404.html" hash="17dc05fa677b464bbf9d3fc032dbc1ea"/><file name="agb.html" hash="42d4c7af3c93cc9b3554b3990b68700b"/><file name="bestellung.html" hash="bf3939c6556f4386535af869b549cd6e"/><file name="datenschutz.html" hash="e2c6f563374c7b4df4568df738fe576e"/><file name="impressum.html" hash="30fd7a59fdda57d202893b739292c6b7"/><file name="lieferung.html" hash="39f30de78be92b7349c58f294eb0371a"/><file name="rechtlicheinfos.html" hash="cf0b797def0f80b3a26ad7d4fc6477f5"/><file name="widerruf.html" hash="9790bf35b907ed943060d499d427813e"/><file name="zahlung.html" hash="91d9a3e2566521f7bb34f5caa6c51f50"/></dir></dir></dir><file name="FireGento_GermanSetup.csv" hash="cfea44912685695fd95df01c90088030"/></dir></target><target name="magecommunity"><dir name="FireGento"><dir name="GermanSetup"><dir name="Block"><file name="Ga.php" hash="3445bd898d7b23993f9b94e1a900e2e8"/><dir name="Adminhtml"><file name="Germansetup.php" hash="b55bf48a215319d6f56d17a746ac5c05"/><file name="Notifications.php" hash="d43f0b9267bc5b3f65752b69966406d2"/></dir><dir name="Bundle"><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="211e4463300cfc023d07508a28447c2c"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Price.php" hash="1c4513a585068a98c007551eb385527e"/></dir></dir><dir name="Checkout"><file name="Information.php" hash="f376a5fa8a91412cb90fc12b0a1cb19b"/></dir><dir name="Imprint"><file name="Content.php" hash="0025837f93b1c5f84c4cd367246c855f"/><file name="Field.php" hash="73e9b043eca8f76844938163b0431dcb"/></dir></dir><dir name="controllers"><file name="FrontendController.php" hash="beef26faeb3ef6206a50dc22ab50fe8f"/><file name="GermansetupController.php" hash="ccc207a54ca2387b17759a2351a5e15b"/></dir><dir name="etc"><file name="config.xml" hash="327a073d19f927160d833fd54eb11f6d"/><file name="system.xml" hash="0921b538d3a88a7ea39f6a9222042f69"/><dir name="at"><file name="tax.xml" hash="3f8075afda3c48657933e81f59884992"/></dir><dir name="ch"><file name="tax.xml" hash="292790d01fb4bf021e96e91809a1e8b2"/></dir><dir name="default"><file name="cms.xml" hash="652453330db675b6b1a0692c6a285148"/><file name="email.xml" hash="26ad2ffe7bc38e31a309228bd4f4d213"/><file name="systemconfig.xml" hash="4964727275862ad6aaffa5691b74637f"/><file name="tax.xml" hash="587fe6251c12d58fdd34f113f191023e"/></dir></dir><dir name="Helper"><file name="Data.php" hash="0b56390fb61eedad524b3cbe024b0a66"/><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="531ae36317e8588b87a2e4a107372346"/></dir></dir></dir><dir name="Model"><file name="Config.php" hash="13b48b3eb0039d82d946a1bdc7c76d2a"/><file name="Observer.php" hash="4f260278450809be1b7a53fc8f81f133"/><dir name="Setup"><file name="Abstract.php" hash="e3b5a07903602b4a2ab31aedabff0d07"/><file name="Agreements.php" hash="3be7b5250133eaad69c846af23c35a1e"/><file name="Cms.php" hash="cf68bd4426983c4f1d8a56cae0b7c7c8"/><file name="Email.php" hash="8c145b55a2f1d239aadd3f161127a75b"/><file name="Systemconfig.php" hash="4e341afb41a0b5bd180af0c709b614c4"/><file name="Tax.php" hash="2706858f7860a2e6d7bf152d4ef2448f"/></dir><dir name="Source"><dir name="Cms"><file name="Block.php" hash="65619ddf168677d999053590d0582148"/><file name="Page.php" hash="0afcfc4e6bdebf23e0a5d9fd780e725c"/></dir><dir name="Tax"><file name="NewProductTaxClass.php" hash="5730f38d539f84dcbbdbeaf8b0e82918"/></dir></dir><dir name="Tax"><file name="Config.php" hash="6aa117491469cc960c3893e5dc625406"/></dir></dir><dir name="sql"><dir name="germansetup_setup"><file name="mysql4-install-0.5.0.php" hash="61a79c2efcee11a2e82c522a31e80ced"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="5f2fd10c9bababe777dba5b71e8ec3d6"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="germansetup"><file name="checkout.css" hash="97a1074dba79415e2c4e231e224770c7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="FireGento_GermanSetup.xml" hash="6db709b71ec56dadb3b251faaad2e95c"/></dir></target></contents>
|
31 |
<compatible/>
|
32 |
<dependencies/>
|
33 |
</package>
|