Version Notes
- Many small fixes and features
Download this release
Release Info
| Developer | FireGento Team |
| Extension | FireGento_GermanSetup |
| Version | 1.2.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.4 to 1.2.3
- app/code/community/FireGento/GermanSetup/Block/Adminhtml/Germansetup.php +1 -1
- app/code/community/FireGento/GermanSetup/Block/Bundle/Catalog/Product/Price.php +22 -0
- app/code/community/FireGento/GermanSetup/Block/Catalog/Product/Price.php +67 -3
- app/code/community/FireGento/GermanSetup/Block/Catalog/Product/Price/Abstract.php +12 -1
- app/code/community/FireGento/GermanSetup/Block/Checkout/Agreements.php +68 -0
- app/code/community/FireGento/GermanSetup/Block/Checkout/Information.php +11 -7
- app/code/community/FireGento/GermanSetup/Block/Customer/Account/Agreements.php +53 -0
- app/code/community/FireGento/GermanSetup/Helper/Checkout/Data.php +25 -3
- app/code/community/FireGento/GermanSetup/Model/Config.php +20 -3
- app/code/community/FireGento/GermanSetup/Model/Observer.php +74 -11
- app/code/community/FireGento/GermanSetup/Model/Setup.php +142 -0
- app/code/community/FireGento/GermanSetup/Model/Setup/Email.php +5 -5
- app/code/community/FireGento/GermanSetup/Model/Source/AgreementType.php +81 -0
- app/code/community/FireGento/GermanSetup/Model/Source/Tax/ProductTaxClass.php +59 -0
- app/code/community/FireGento/GermanSetup/Model/Tax/Config.php +5 -1
- app/code/community/FireGento/GermanSetup/controllers/GermansetupController.php +4 -1
- app/code/community/FireGento/GermanSetup/etc/at/tax.xml +8 -8
- app/code/community/FireGento/GermanSetup/etc/ch/tax.xml +8 -8
- app/code/community/FireGento/GermanSetup/etc/config.xml +26 -8
- app/code/community/FireGento/GermanSetup/etc/default/tax.xml +2782 -671
- app/code/community/FireGento/GermanSetup/etc/system.xml +103 -16
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-install-0.5.0.php +10 -11
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.0.4-1.0.5.php +1 -2
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.1.3-1.1.4.php +2 -2
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.1.4-1.2.0.php +89 -0
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.0-1.2.1.php +47 -0
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.1-1.2.2.php +60 -0
- app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.2-1.2.3.php +62 -0
- app/design/adminhtml/default/default/template/germansetup/extensions.phtml +65 -43
- app/design/frontend/base/default/layout/germansetup.xml +433 -84
- app/design/frontend/base/default/template/germansetup/checkout/onepage/agreements.phtml +12 -11
- app/design/frontend/base/default/template/germansetup/customer/form/tc-confirmation.phtml +55 -0
- app/design/frontend/base/default/template/germansetup/delivery_time.phtml +44 -0
- app/design/frontend/base/default/template/germansetup/imprint/legal.phtml +17 -1
- app/design/frontend/base/default/template/germansetup/price_info.phtml +24 -15
- app/design/frontend/base/default/template/germansetup/shipping.phtml +46 -0
- app/locale/de_DE/FireGento_GermanSetup.csv +28 -8
- app/locale/de_DE/template/germansetup/page/impressum.html +2 -1
- package.xml +5 -9
- skin/frontend/base/default/css/germansetup/checkout.css +24 -2
app/code/community/FireGento/GermanSetup/Block/Adminhtml/Germansetup.php
CHANGED
|
@@ -61,7 +61,7 @@ class FireGento_GermanSetup_Block_Adminhtml_Germansetup extends Mage_Adminhtml_B
|
|
| 61 |
*/
|
| 62 |
public function getProductTaxClasses()
|
| 63 |
{
|
| 64 |
-
return Mage::getSingleton('
|
| 65 |
}
|
| 66 |
|
| 67 |
/**
|
| 61 |
*/
|
| 62 |
public function getProductTaxClasses()
|
| 63 |
{
|
| 64 |
+
return Mage::getSingleton('germansetup/source_tax_productTaxClass')->getAllOptions();
|
| 65 |
}
|
| 66 |
|
| 67 |
/**
|
app/code/community/FireGento/GermanSetup/Block/Bundle/Catalog/Product/Price.php
CHANGED
|
@@ -53,6 +53,8 @@ class FireGento_GermanSetup_Block_Bundle_Catalog_Product_Price
|
|
| 53 |
->setFormattedTaxRate($this->getFormattedTaxRate())
|
| 54 |
->setIsIncludingTax($this->isIncludingTax())
|
| 55 |
->setIsShowShippingLink($this->isShowShippingLink())
|
|
|
|
|
|
|
| 56 |
->toHtml();
|
| 57 |
|
| 58 |
return $html;
|
|
@@ -145,4 +147,24 @@ class FireGento_GermanSetup_Block_Bundle_Catalog_Product_Price
|
|
| 145 |
|
| 146 |
return 0;
|
| 147 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 148 |
}
|
| 53 |
->setFormattedTaxRate($this->getFormattedTaxRate())
|
| 54 |
->setIsIncludingTax($this->isIncludingTax())
|
| 55 |
->setIsShowShippingLink($this->isShowShippingLink())
|
| 56 |
+
->setIsShowWeightInfo($this->getIsShowWeightInfo())
|
| 57 |
+
->setFormattedWeight($this->getFormattedWeight())
|
| 58 |
->toHtml();
|
| 59 |
|
| 60 |
return $html;
|
| 147 |
|
| 148 |
return 0;
|
| 149 |
}
|
| 150 |
+
|
| 151 |
+
/**
|
| 152 |
+
* Check if Shipping by Weight is active
|
| 153 |
+
*
|
| 154 |
+
* @return bool
|
| 155 |
+
*/
|
| 156 |
+
public function getIsShowWeightInfo()
|
| 157 |
+
{
|
| 158 |
+
return Mage::getStoreConfigFlag('catalog/price/display_product_weight');
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
/**
|
| 162 |
+
* Get formatted weight incl. unit
|
| 163 |
+
*
|
| 164 |
+
* @return string
|
| 165 |
+
*/
|
| 166 |
+
public function getFormattedWeight()
|
| 167 |
+
{
|
| 168 |
+
return floatval($this->getProduct()->getWeight()) . ' ' . Mage::getStoreConfig('catalog/price/weight_unit');
|
| 169 |
+
}
|
| 170 |
}
|
app/code/community/FireGento/GermanSetup/Block/Catalog/Product/Price.php
CHANGED
|
@@ -36,9 +36,12 @@ class FireGento_GermanSetup_Block_Catalog_Product_Price
|
|
| 36 |
extends FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 37 |
{
|
| 38 |
/**
|
| 39 |
-
* @var
|
| 40 |
*/
|
| 41 |
-
protected $
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
/**
|
| 44 |
* Add content of template block below price html if defined in config
|
|
@@ -53,7 +56,7 @@ class FireGento_GermanSetup_Block_Catalog_Product_Price
|
|
| 53 |
return $html;
|
| 54 |
}
|
| 55 |
|
| 56 |
-
if ($this->getTemplate()
|
| 57 |
$htmlObject = new Varien_Object();
|
| 58 |
$htmlObject->setParentHtml($html);
|
| 59 |
$htmlTemplate = $this->getLayout()->createBlock('core/template')
|
|
@@ -62,9 +65,13 @@ class FireGento_GermanSetup_Block_Catalog_Product_Price
|
|
| 62 |
->setIsIncludingTax($this->isIncludingTax())
|
| 63 |
->setIsIncludingShippingCosts($this->isIncludingShippingCosts())
|
| 64 |
->setIsShowShippingLink($this->isShowShippingLink())
|
|
|
|
|
|
|
| 65 |
->toHtml();
|
| 66 |
$htmlObject->setHtml($htmlTemplate);
|
| 67 |
|
|
|
|
|
|
|
| 68 |
Mage::dispatchEvent('germansetup_after_product_price',
|
| 69 |
array(
|
| 70 |
'html_obj' => $htmlObject,
|
|
@@ -81,6 +88,29 @@ class FireGento_GermanSetup_Block_Catalog_Product_Price
|
|
| 81 |
return $html;
|
| 82 |
}
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
/**
|
| 85 |
* Read tax rate from current product.
|
| 86 |
*
|
|
@@ -186,4 +216,38 @@ class FireGento_GermanSetup_Block_Catalog_Product_Price
|
|
| 186 |
|
| 187 |
return 0;
|
| 188 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
}
|
| 36 |
extends FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 37 |
{
|
| 38 |
/**
|
| 39 |
+
* @var array Path to common tier price template
|
| 40 |
*/
|
| 41 |
+
protected $_tierPriceDefaultTemplates = array(
|
| 42 |
+
'catalog/product/view/tierprices.phtml',
|
| 43 |
+
'dermodpro/bcp/catalog/product/view/tierprices.phtml'
|
| 44 |
+
);
|
| 45 |
|
| 46 |
/**
|
| 47 |
* Add content of template block below price html if defined in config
|
| 56 |
return $html;
|
| 57 |
}
|
| 58 |
|
| 59 |
+
if (!in_array($this->getTemplate(), $this->_tierPriceDefaultTemplates)) {
|
| 60 |
$htmlObject = new Varien_Object();
|
| 61 |
$htmlObject->setParentHtml($html);
|
| 62 |
$htmlTemplate = $this->getLayout()->createBlock('core/template')
|
| 65 |
->setIsIncludingTax($this->isIncludingTax())
|
| 66 |
->setIsIncludingShippingCosts($this->isIncludingShippingCosts())
|
| 67 |
->setIsShowShippingLink($this->isShowShippingLink())
|
| 68 |
+
->setIsShowWeightInfo($this->getIsShowWeightInfo())
|
| 69 |
+
->setFormattedWeight($this->getFormattedWeight())
|
| 70 |
->toHtml();
|
| 71 |
$htmlObject->setHtml($htmlTemplate);
|
| 72 |
|
| 73 |
+
$this->_addDeliveryTimeHtml($htmlObject);
|
| 74 |
+
|
| 75 |
Mage::dispatchEvent('germansetup_after_product_price',
|
| 76 |
array(
|
| 77 |
'html_obj' => $htmlObject,
|
| 88 |
return $html;
|
| 89 |
}
|
| 90 |
|
| 91 |
+
/**
|
| 92 |
+
* Add delivery time on category pages only
|
| 93 |
+
*
|
| 94 |
+
* @param $htmlObject
|
| 95 |
+
*/
|
| 96 |
+
protected function _addDeliveryTimeHtml($htmlObject)
|
| 97 |
+
{
|
| 98 |
+
if (!Mage::getStoreConfigFlag('catalog/price/display_delivery_time_on_categories')) {
|
| 99 |
+
return;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
$pathInfo = Mage::app()->getRequest()->getPathInfo();
|
| 103 |
+
if (strpos($pathInfo, 'catalog/category/view') !== false
|
| 104 |
+
|| strpos($pathInfo, 'catalogsearch/result') !== false) {
|
| 105 |
+
if ($this->getProduct()->getDeliveryTime()) {
|
| 106 |
+
$html = '<p class="delivery-time">';
|
| 107 |
+
$html .= $this->__('Delivery Time') . ': ' . $this->getProduct()->getDeliveryTime();
|
| 108 |
+
$html .= '</p>';
|
| 109 |
+
$htmlObject->setSuffix($html);
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
/**
|
| 115 |
* Read tax rate from current product.
|
| 116 |
*
|
| 216 |
|
| 217 |
return 0;
|
| 218 |
}
|
| 219 |
+
|
| 220 |
+
/**
|
| 221 |
+
* Check if Shipping by Weight is active
|
| 222 |
+
*
|
| 223 |
+
* @return bool
|
| 224 |
+
*/
|
| 225 |
+
public function getIsShowWeightInfo()
|
| 226 |
+
{
|
| 227 |
+
return Mage::getStoreConfigFlag('catalog/price/display_product_weight');
|
| 228 |
+
}
|
| 229 |
+
|
| 230 |
+
/**
|
| 231 |
+
* Get formatted weight incl. unit
|
| 232 |
+
*
|
| 233 |
+
* @return string
|
| 234 |
+
*/
|
| 235 |
+
public function getFormattedWeight()
|
| 236 |
+
{
|
| 237 |
+
return floatval($this->getProduct()->getWeight()) . ' ' . Mage::getStoreConfig('catalog/price/weight_unit');
|
| 238 |
+
}
|
| 239 |
+
|
| 240 |
+
/**
|
| 241 |
+
* Translate block sentence
|
| 242 |
+
*
|
| 243 |
+
* @return string
|
| 244 |
+
*/
|
| 245 |
+
public function __()
|
| 246 |
+
{
|
| 247 |
+
$args = func_get_args();
|
| 248 |
+
$expr = new Mage_Core_Model_Translate_Expr(array_shift($args), 'Mage_Catalog');
|
| 249 |
+
array_unshift($args, $expr);
|
| 250 |
+
|
| 251 |
+
return Mage::app()->getTranslator()->translate($args);
|
| 252 |
+
}
|
| 253 |
}
|
app/code/community/FireGento/GermanSetup/Block/Catalog/Product/Price/Abstract.php
CHANGED
|
@@ -33,7 +33,10 @@
|
|
| 33 |
* @since 0.1.0
|
| 34 |
*/
|
| 35 |
|
| 36 |
-
if (
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
abstract class FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 39 |
extends Sitewards_B2BProfessional_Block_Price
|
|
@@ -41,6 +44,14 @@ if (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active'
|
|
| 41 |
|
| 42 |
}
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
} else {
|
| 45 |
|
| 46 |
abstract class FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 33 |
* @since 0.1.0
|
| 34 |
*/
|
| 35 |
|
| 36 |
+
if (
|
| 37 |
+
Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->is('active', 'true')
|
| 38 |
+
&& version_compare (Mage::getConfig()->getModuleConfig('Sitewards_B2BProfessional')->version, '2.1.0', '<=' )
|
| 39 |
+
) {
|
| 40 |
|
| 41 |
abstract class FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 42 |
extends Sitewards_B2BProfessional_Block_Price
|
| 44 |
|
| 45 |
}
|
| 46 |
|
| 47 |
+
} elseif (Mage::getConfig()->getModuleConfig('Belvg_CallForPrice')->is('active', 'true')) {
|
| 48 |
+
|
| 49 |
+
abstract class FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
| 50 |
+
extends Belvg_CallForPrice_Block_Catalog_Product_Price
|
| 51 |
+
{
|
| 52 |
+
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
} else {
|
| 56 |
|
| 57 |
abstract class FireGento_GermanSetup_Block_Catalog_Product_Price_Abstract
|
app/code/community/FireGento/GermanSetup/Block/Checkout/Agreements.php
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Block to display agreements on checkout.
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.2
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
class FireGento_GermanSetup_Block_Checkout_Agreements extends Mage_Checkout_Block_Agreements
|
| 36 |
+
{
|
| 37 |
+
|
| 38 |
+
/**
|
| 39 |
+
* Filter by "Agreement Type"
|
| 40 |
+
*
|
| 41 |
+
* @return mixed
|
| 42 |
+
*/
|
| 43 |
+
public function getAgreements()
|
| 44 |
+
{
|
| 45 |
+
$agreements = parent::getAgreements();
|
| 46 |
+
if ($this->_getCustomerSession()->isLoggedIn()) {
|
| 47 |
+
$agreements->addFieldToFilter('agreement_type', array('in' => array(
|
| 48 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
|
| 49 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 50 |
+
)));
|
| 51 |
+
} else {
|
| 52 |
+
$agreements->addFieldToFilter('agreement_type', array('in' => array(
|
| 53 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
|
| 54 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
|
| 55 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 56 |
+
)));
|
| 57 |
+
}
|
| 58 |
+
return $agreements;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
/**
|
| 62 |
+
* @return Mage_Customer_Model_Session
|
| 63 |
+
*/
|
| 64 |
+
protected function _getCustomerSession()
|
| 65 |
+
{
|
| 66 |
+
return Mage::getSingleton('customer/session');
|
| 67 |
+
}
|
| 68 |
+
}
|
app/code/community/FireGento/GermanSetup/Block/Checkout/Information.php
CHANGED
|
@@ -50,17 +50,21 @@ class FireGento_GermanSetup_Block_Checkout_Information extends Mage_Core_Block_T
|
|
| 50 |
*/
|
| 51 |
public function getCheckoutAdditionalInformation()
|
| 52 |
{
|
| 53 |
-
|
| 54 |
-
|
|
|
|
|
|
|
| 55 |
}
|
| 56 |
|
| 57 |
-
|
| 58 |
-
$
|
|
|
|
|
|
|
| 59 |
|
| 60 |
-
if (
|
| 61 |
-
return
|
| 62 |
}
|
| 63 |
|
| 64 |
-
return
|
| 65 |
}
|
| 66 |
}
|
| 50 |
*/
|
| 51 |
public function getCheckoutAdditionalInformation()
|
| 52 |
{
|
| 53 |
+
$additional = '';
|
| 54 |
+
|
| 55 |
+
if (Mage::getStoreConfigFlag(self::XML_PATH_CHECKOUT_DISPLAY_ADDITIONAL_INFORMATION)) {
|
| 56 |
+
$additional = trim(Mage::getStoreConfig(self::XML_PATH_CHECKOUT_ADDITIONAL_INFORMATION));
|
| 57 |
}
|
| 58 |
|
| 59 |
+
// Dispatch Event in order to allow adding more additional information texts
|
| 60 |
+
$additionalObject = new Varien_Object(array('text' => $additional));
|
| 61 |
+
Mage::dispatchEvent('checkout_additional_information', array('additional' => $additionalObject));
|
| 62 |
+
$additional = $additionalObject->getText();
|
| 63 |
|
| 64 |
+
if (!$additional) {
|
| 65 |
+
return false;
|
| 66 |
}
|
| 67 |
|
| 68 |
+
return $additional;
|
| 69 |
}
|
| 70 |
}
|
app/code/community/FireGento/GermanSetup/Block/Customer/Account/Agreements.php
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Block to display agreements on customer registration.
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.2
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
class FireGento_GermanSetup_Block_Customer_Account_Agreements extends Mage_Checkout_Block_Agreements
|
| 36 |
+
{
|
| 37 |
+
|
| 38 |
+
/**
|
| 39 |
+
* Filter by "Agreement Type"
|
| 40 |
+
*
|
| 41 |
+
* @return mixed
|
| 42 |
+
*/
|
| 43 |
+
public function getAgreements()
|
| 44 |
+
{
|
| 45 |
+
$agreements = parent::getAgreements();
|
| 46 |
+
$agreements->addFieldToFilter('agreement_type', array('in' => array(
|
| 47 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
|
| 48 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 49 |
+
)));
|
| 50 |
+
return $agreements;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
}
|
app/code/community/FireGento/GermanSetup/Helper/Checkout/Data.php
CHANGED
|
@@ -45,14 +45,36 @@ class FireGento_GermanSetup_Helper_Checkout_Data
|
|
| 45 |
if (!Mage::getStoreConfigFlag('checkout/options/enable_agreements')) {
|
| 46 |
$this->_agreements = array();
|
| 47 |
} else {
|
| 48 |
-
$
|
| 49 |
->addStoreFilter(Mage::app()->getStore()->getId())
|
| 50 |
->addFieldToFilter('is_active', 1)
|
| 51 |
-
->addFieldToFilter('is_required', 1) // Only get Required Elements
|
| 52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
}
|
| 54 |
}
|
| 55 |
|
| 56 |
return $this->_agreements;
|
| 57 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
}
|
| 45 |
if (!Mage::getStoreConfigFlag('checkout/options/enable_agreements')) {
|
| 46 |
$this->_agreements = array();
|
| 47 |
} else {
|
| 48 |
+
$agreements = Mage::getModel('checkout/agreement')->getCollection()
|
| 49 |
->addStoreFilter(Mage::app()->getStore()->getId())
|
| 50 |
->addFieldToFilter('is_active', 1)
|
| 51 |
+
->addFieldToFilter('is_required', 1); // Only get Required Elements
|
| 52 |
+
|
| 53 |
+
if ($this->_getCustomerSession()->isLoggedIn()) {
|
| 54 |
+
$agreements->addFieldToFilter('agreement_type', array('in' => array(
|
| 55 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
|
| 56 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 57 |
+
)));
|
| 58 |
+
} else {
|
| 59 |
+
$agreements->addFieldToFilter('agreement_type', array('in' => array(
|
| 60 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
|
| 61 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CHECKOUT,
|
| 62 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 63 |
+
)));
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
$this->_agreements = $agreements->getAllIds();
|
| 67 |
}
|
| 68 |
}
|
| 69 |
|
| 70 |
return $this->_agreements;
|
| 71 |
}
|
| 72 |
+
|
| 73 |
+
/**
|
| 74 |
+
* @return Mage_Customer_Model_Session
|
| 75 |
+
*/
|
| 76 |
+
protected function _getCustomerSession()
|
| 77 |
+
{
|
| 78 |
+
return Mage::getSingleton('customer/session');
|
| 79 |
+
}
|
| 80 |
}
|
app/code/community/FireGento/GermanSetup/Model/Config.php
CHANGED
|
@@ -36,6 +36,11 @@ class FireGento_GermanSetup_Model_Config extends Varien_Simplexml_Config
|
|
| 36 |
const CACHE_ID = 'germansetup_config';
|
| 37 |
const CACHE_TAG = 'germansetup_config';
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
/**
|
| 40 |
* Sets cache ID and cache tags and loads configuration
|
| 41 |
*
|
|
@@ -50,6 +55,16 @@ class FireGento_GermanSetup_Model_Config extends Varien_Simplexml_Config
|
|
| 50 |
$this->_loadConfig();
|
| 51 |
}
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
/**
|
| 54 |
* Merge default config with config from additional xml files
|
| 55 |
*
|
|
@@ -63,6 +78,10 @@ class FireGento_GermanSetup_Model_Config extends Varien_Simplexml_Config
|
|
| 63 |
}
|
| 64 |
}
|
| 65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
$mergeConfig = Mage::getModel('core/config_base');
|
| 67 |
$config = Mage::getConfig();
|
| 68 |
|
|
@@ -87,10 +106,8 @@ class FireGento_GermanSetup_Model_Config extends Varien_Simplexml_Config
|
|
| 87 |
*/
|
| 88 |
protected function _addConfigFile($fileName, $mergeConfig)
|
| 89 |
{
|
| 90 |
-
$country = Mage::app()->getRequest()->getParam('country');
|
| 91 |
-
|
| 92 |
$config = Mage::getConfig();
|
| 93 |
-
$configFile = $config->getModuleDir('etc', 'FireGento_GermanSetup') . DS . $
|
| 94 |
if (!file_exists($configFile)) {
|
| 95 |
$configFile = $config->getModuleDir('etc', 'FireGento_GermanSetup') . DS . 'default' . DS . $fileName;
|
| 96 |
}
|
| 36 |
const CACHE_ID = 'germansetup_config';
|
| 37 |
const CACHE_TAG = 'germansetup_config';
|
| 38 |
|
| 39 |
+
/**
|
| 40 |
+
* @var string
|
| 41 |
+
*/
|
| 42 |
+
protected $_country = 'de';
|
| 43 |
+
|
| 44 |
/**
|
| 45 |
* Sets cache ID and cache tags and loads configuration
|
| 46 |
*
|
| 55 |
$this->_loadConfig();
|
| 56 |
}
|
| 57 |
|
| 58 |
+
/**
|
| 59 |
+
* @param string $country
|
| 60 |
+
* @return FireGento_GermanSetup_Model_Config
|
| 61 |
+
*/
|
| 62 |
+
public function setCountry($country)
|
| 63 |
+
{
|
| 64 |
+
$this->_country = $country;
|
| 65 |
+
return $this;
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
/**
|
| 69 |
* Merge default config with config from additional xml files
|
| 70 |
*
|
| 78 |
}
|
| 79 |
}
|
| 80 |
|
| 81 |
+
if (!is_null(Mage::registry('setup_country'))) {
|
| 82 |
+
$this->setCountry(Mage::registry('setup_country'));
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
$mergeConfig = Mage::getModel('core/config_base');
|
| 86 |
$config = Mage::getConfig();
|
| 87 |
|
| 106 |
*/
|
| 107 |
protected function _addConfigFile($fileName, $mergeConfig)
|
| 108 |
{
|
|
|
|
|
|
|
| 109 |
$config = Mage::getConfig();
|
| 110 |
+
$configFile = $config->getModuleDir('etc', 'FireGento_GermanSetup') . DS . $this->_country . DS . $fileName;
|
| 111 |
if (!file_exists($configFile)) {
|
| 112 |
$configFile = $config->getModuleDir('etc', 'FireGento_GermanSetup') . DS . 'default' . DS . $fileName;
|
| 113 |
}
|
app/code/community/FireGento/GermanSetup/Model/Observer.php
CHANGED
|
@@ -124,7 +124,8 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 124 |
$keywords = $this->_getCategoryKeywords($product);
|
| 125 |
if (!empty($keywords)) {
|
| 126 |
if (mb_strlen($keywords) > 255) {
|
| 127 |
-
$
|
|
|
|
| 128 |
}
|
| 129 |
$product->setMetaKeyword($keywords);
|
| 130 |
}
|
|
@@ -138,7 +139,8 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 138 |
$description = $keywords;
|
| 139 |
}
|
| 140 |
if (mb_strlen($description) > 255) {
|
| 141 |
-
$
|
|
|
|
| 142 |
}
|
| 143 |
$product->setMetaDescription($description);
|
| 144 |
}
|
|
@@ -213,7 +215,7 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 213 |
/**
|
| 214 |
* Processes the category array and generates a string
|
| 215 |
*
|
| 216 |
-
* @param array $
|
| 217 |
* @return string Keywords
|
| 218 |
*/
|
| 219 |
protected function _buildKeywords($categoryTypes)
|
|
@@ -227,31 +229,41 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 227 |
}
|
| 228 |
|
| 229 |
/**
|
| 230 |
-
* Add "Required" Option to Checkout Agreements
|
| 231 |
*
|
| 232 |
* @param Varien_Event_Observer $observer Observer
|
| 233 |
* @event adminhtml_block_html_before
|
| 234 |
* @return FireGento_GermanSetup_Model_Observer
|
| 235 |
*/
|
| 236 |
-
public function
|
| 237 |
{
|
| 238 |
$block = $observer->getEvent()->getBlock();
|
| 239 |
if ($block instanceof Mage_Adminhtml_Block_Checkout_Agreement_Edit_Form) {
|
|
|
|
| 240 |
$form = $block->getForm();
|
| 241 |
|
| 242 |
$fieldset = $form->getElement('base_fieldset');
|
| 243 |
$fieldset->addField('is_required', 'select', array(
|
| 244 |
-
'label' =>
|
| 245 |
-
'title' =>
|
| 246 |
-
'note' =>
|
| 247 |
'name' => 'is_required',
|
| 248 |
'required' => true,
|
| 249 |
'options' => array(
|
| 250 |
-
'1' =>
|
| 251 |
-
'0' =>
|
| 252 |
),
|
| 253 |
));
|
| 254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 255 |
Mage::dispatchEvent('germansetup_adminhtml_checkout_agreement_edit_form', array(
|
| 256 |
'form' => $form,
|
| 257 |
'fieldset' => $fieldset,
|
|
@@ -268,9 +280,11 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 268 |
/**
|
| 269 |
* After updating the quantities of cart items, it might be needed to recalculate the shipping tax
|
| 270 |
*
|
|
|
|
|
|
|
| 271 |
* @return void
|
| 272 |
*/
|
| 273 |
-
public function recollectAfterQuoteItemUpdate()
|
| 274 |
{
|
| 275 |
$store = Mage::app()->getStore();
|
| 276 |
if (Mage::getStoreConfig(FireGento_GermanSetup_Model_Tax_Config::XML_PATH_SHIPPING_TAX_ON_PRODUCT_TAX, $store)
|
|
@@ -282,4 +296,53 @@ class FireGento_GermanSetup_Model_Observer
|
|
| 282 |
->collectTotals();
|
| 283 |
}
|
| 284 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 285 |
}
|
| 124 |
$keywords = $this->_getCategoryKeywords($product);
|
| 125 |
if (!empty($keywords)) {
|
| 126 |
if (mb_strlen($keywords) > 255) {
|
| 127 |
+
$remainder = '';
|
| 128 |
+
$keywords = Mage::helper('core/string')->truncate($keywords, 255, '', $remainder, false);
|
| 129 |
}
|
| 130 |
$product->setMetaKeyword($keywords);
|
| 131 |
}
|
| 139 |
$description = $keywords;
|
| 140 |
}
|
| 141 |
if (mb_strlen($description) > 255) {
|
| 142 |
+
$remainder = '';
|
| 143 |
+
$description = Mage::helper('core/string')->truncate($description, 255, '...', $remainder, false);
|
| 144 |
}
|
| 145 |
$product->setMetaDescription($description);
|
| 146 |
}
|
| 215 |
/**
|
| 216 |
* Processes the category array and generates a string
|
| 217 |
*
|
| 218 |
+
* @param array $categoryTypes Categories
|
| 219 |
* @return string Keywords
|
| 220 |
*/
|
| 221 |
protected function _buildKeywords($categoryTypes)
|
| 229 |
}
|
| 230 |
|
| 231 |
/**
|
| 232 |
+
* Add "Required" and "Visible on Custom Creation" Option to Checkout Agreements
|
| 233 |
*
|
| 234 |
* @param Varien_Event_Observer $observer Observer
|
| 235 |
* @event adminhtml_block_html_before
|
| 236 |
* @return FireGento_GermanSetup_Model_Observer
|
| 237 |
*/
|
| 238 |
+
public function addOptionsForAgreements(Varien_Event_Observer $observer)
|
| 239 |
{
|
| 240 |
$block = $observer->getEvent()->getBlock();
|
| 241 |
if ($block instanceof Mage_Adminhtml_Block_Checkout_Agreement_Edit_Form) {
|
| 242 |
+
$helper = Mage::helper('germansetup');
|
| 243 |
$form = $block->getForm();
|
| 244 |
|
| 245 |
$fieldset = $form->getElement('base_fieldset');
|
| 246 |
$fieldset->addField('is_required', 'select', array(
|
| 247 |
+
'label' => $helper->__('Required'),
|
| 248 |
+
'title' => $helper->__('Required'),
|
| 249 |
+
'note' => $helper->__('Display Checkbox on Frontend'),
|
| 250 |
'name' => 'is_required',
|
| 251 |
'required' => true,
|
| 252 |
'options' => array(
|
| 253 |
+
'1' => $helper->__('Yes'),
|
| 254 |
+
'0' => $helper->__('No'),
|
| 255 |
),
|
| 256 |
));
|
| 257 |
|
| 258 |
+
$fieldset->addField('agreement_type', 'select', array(
|
| 259 |
+
'label' => $helper->__('Display on'),
|
| 260 |
+
'title' => $helper->__('Display on'),
|
| 261 |
+
'note' => $helper->__('Require Confirmation on Customer Registration and/or Checkout'),
|
| 262 |
+
'name' => 'agreement_type',
|
| 263 |
+
'required' => true,
|
| 264 |
+
'options' => Mage::getSingleton('germansetup/source_agreementType')->getOptionArray(),
|
| 265 |
+
));
|
| 266 |
+
|
| 267 |
Mage::dispatchEvent('germansetup_adminhtml_checkout_agreement_edit_form', array(
|
| 268 |
'form' => $form,
|
| 269 |
'fieldset' => $fieldset,
|
| 280 |
/**
|
| 281 |
* After updating the quantities of cart items, it might be needed to recalculate the shipping tax
|
| 282 |
*
|
| 283 |
+
* @param Varien_Event_Observer $observer
|
| 284 |
+
* @event checkout_cart_update_items_after
|
| 285 |
* @return void
|
| 286 |
*/
|
| 287 |
+
public function recollectAfterQuoteItemUpdate(Varien_Event_Observer $observer)
|
| 288 |
{
|
| 289 |
$store = Mage::app()->getStore();
|
| 290 |
if (Mage::getStoreConfig(FireGento_GermanSetup_Model_Tax_Config::XML_PATH_SHIPPING_TAX_ON_PRODUCT_TAX, $store)
|
| 296 |
->collectTotals();
|
| 297 |
}
|
| 298 |
}
|
| 299 |
+
|
| 300 |
+
/**
|
| 301 |
+
* Get required agreements on custom registration
|
| 302 |
+
*
|
| 303 |
+
* @return array
|
| 304 |
+
*/
|
| 305 |
+
protected function _getCustomerCreateAgreements()
|
| 306 |
+
{
|
| 307 |
+
$ids = Mage::getModel('checkout/agreement')->getCollection()
|
| 308 |
+
->addStoreFilter(Mage::app()->getStore()->getId())
|
| 309 |
+
->addFieldToFilter('is_active', 1)
|
| 310 |
+
->addFieldToFilter('agreement_type', array('in' => array(
|
| 311 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_CUSTOMER,
|
| 312 |
+
FireGento_GermanSetup_Model_Source_AgreementType::AGREEMENT_TYPE_BOTH,
|
| 313 |
+
))) // Only get Required Elements
|
| 314 |
+
->getAllIds();
|
| 315 |
+
|
| 316 |
+
return $ids;
|
| 317 |
+
}
|
| 318 |
+
|
| 319 |
+
/**
|
| 320 |
+
* Check if there are required agreements for the customer registration
|
| 321 |
+
* and validate them if applicable.
|
| 322 |
+
*
|
| 323 |
+
* @param Varien_Event_Observer $observer
|
| 324 |
+
* @event controller_action_predispatch_customer_account_createpost
|
| 325 |
+
* @return void
|
| 326 |
+
*/
|
| 327 |
+
public function customerCreatePreDispatch(Varien_Event_Observer $observer)
|
| 328 |
+
{
|
| 329 |
+
$requiredAgreements = $this->_getCustomerCreateAgreements();
|
| 330 |
+
$controller = $observer->getEvent()->getControllerAction();
|
| 331 |
+
$postedAgreements = array_keys($controller->getRequest()->getPost('agreement', array()));
|
| 332 |
+
|
| 333 |
+
if ($diff = array_diff($requiredAgreements, $postedAgreements)) {
|
| 334 |
+
$session = Mage::getSingleton('customer/session');
|
| 335 |
+
$session->addException(
|
| 336 |
+
new Mage_Customer_Exception('Cannot create customer: agreements not confirmed'),
|
| 337 |
+
Mage::helper('germansetup')->__('Agreements not confirmed.')
|
| 338 |
+
);
|
| 339 |
+
|
| 340 |
+
$controller->getResponse()->setRedirect( Mage::getUrl('*/*/create', array('_secure' => true)) );
|
| 341 |
+
$controller->setFlag(
|
| 342 |
+
$controller->getRequest()->getActionName(),
|
| 343 |
+
Mage_Core_Controller_Varien_Action::FLAG_NO_DISPATCH,
|
| 344 |
+
true
|
| 345 |
+
);
|
| 346 |
+
}
|
| 347 |
+
}
|
| 348 |
}
|
app/code/community/FireGento/GermanSetup/Model/Setup.php
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.2.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Setup class
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.0
|
| 33 |
+
*/
|
| 34 |
+
class FireGento_GermanSetup_Model_Setup extends Mage_Core_Model_Abstract
|
| 35 |
+
{
|
| 36 |
+
/**
|
| 37 |
+
* Setup GermanSetup as if a user sends the adminhtml form
|
| 38 |
+
* See method _getDefaultParams for possible params
|
| 39 |
+
*
|
| 40 |
+
* @param array $params
|
| 41 |
+
* @return FireGento_GermanSetup_Model_Setup
|
| 42 |
+
*/
|
| 43 |
+
public function setup($params = array())
|
| 44 |
+
{
|
| 45 |
+
$defaultParams = $this->_getDefaultParams();
|
| 46 |
+
|
| 47 |
+
$params = array_merge($defaultParams, $params);
|
| 48 |
+
|
| 49 |
+
Mage::register('setup_country', $params['country']);
|
| 50 |
+
|
| 51 |
+
if ($params['systemconfig']) {
|
| 52 |
+
Mage::getSingleton('germansetup/setup_systemconfig')->setup();
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
if ($params['cms']) {
|
| 56 |
+
Mage::getSingleton('germansetup/setup_cms')->setup();
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
if ($params['agreements']) {
|
| 60 |
+
Mage::getSingleton('germansetup/setup_agreements')->setup();
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
if ($params['email']) {
|
| 64 |
+
Mage::getSingleton('germansetup/setup_email')->setup($params['email_locale'], $params['overwrite_emails']);
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
if ($params['tax']) {
|
| 68 |
+
Mage::getSingleton('germansetup/setup_tax')->setup();
|
| 69 |
+
|
| 70 |
+
$this->_updateProductTaxClasses($params);
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
// Set a config flag to indicate that the setup has been initialized and refresh config cache.
|
| 74 |
+
Mage::getModel('eav/entity_setup', 'core_setup')->setConfigData('germansetup/is_initialized', '1');
|
| 75 |
+
Mage::app()->getCacheInstance()->cleanType('config');
|
| 76 |
+
Mage::dispatchEvent('adminhtml_cache_refresh_type', array('type' => 'config'));
|
| 77 |
+
|
| 78 |
+
return $this;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
/**
|
| 82 |
+
* Get default parameters like they are in the backend form
|
| 83 |
+
*
|
| 84 |
+
* @return array
|
| 85 |
+
*/
|
| 86 |
+
protected function _getDefaultParams()
|
| 87 |
+
{
|
| 88 |
+
$productTaxClassTargets = array();
|
| 89 |
+
foreach (Mage::getSingleton('germansetup/source_tax_productTaxClass')->getAllOptions() as $option) {
|
| 90 |
+
$productTaxClassTargets[$option['value']] = 1;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
return array(
|
| 94 |
+
'country' => 'de',
|
| 95 |
+
'systemconfig' => true,
|
| 96 |
+
'cms' => true,
|
| 97 |
+
'agreements' => true,
|
| 98 |
+
'email' => true,
|
| 99 |
+
'email_locale' => 'de_DE',
|
| 100 |
+
'overwrite_emails' => false,
|
| 101 |
+
'tax' => true,
|
| 102 |
+
'product_tax_class_target' => $productTaxClassTargets,
|
| 103 |
+
);
|
| 104 |
+
}
|
| 105 |
+
|
| 106 |
+
/**
|
| 107 |
+
* Update the old product tax classes to the new tax class ids
|
| 108 |
+
*
|
| 109 |
+
* @param array $params
|
| 110 |
+
* @return void
|
| 111 |
+
*/
|
| 112 |
+
protected function _updateProductTaxClasses($params)
|
| 113 |
+
{
|
| 114 |
+
$taxClasses = $params['product_tax_class_target'];
|
| 115 |
+
foreach ($taxClasses as $source => $target) {
|
| 116 |
+
if ($target = intval($target)) {
|
| 117 |
+
Mage::getSingleton('germansetup/setup_tax')->updateProductTaxClasses($source, $target);
|
| 118 |
+
}
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
$this->_markIndicesOutdated();
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
/**
|
| 125 |
+
* Mark relevant indices as outdated after changing tax rates
|
| 126 |
+
*
|
| 127 |
+
* @return void
|
| 128 |
+
*/
|
| 129 |
+
protected function _markIndicesOutdated()
|
| 130 |
+
{
|
| 131 |
+
// Indexes which need to be updated after setup
|
| 132 |
+
$indexes = array('catalog_product_price', 'catalog_product_flat', 'catalog_product_attribute');
|
| 133 |
+
|
| 134 |
+
$indices = Mage::getModel('index/process')
|
| 135 |
+
->getCollection()
|
| 136 |
+
->addFieldToFilter('indexer_code', array('in' => $indexes));
|
| 137 |
+
|
| 138 |
+
foreach ($indices as $index) {
|
| 139 |
+
$index->setStatus(Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX)->save();
|
| 140 |
+
}
|
| 141 |
+
}
|
| 142 |
+
}
|
app/code/community/FireGento/GermanSetup/Model/Setup/Email.php
CHANGED
|
@@ -39,19 +39,19 @@ class FireGento_GermanSetup_Model_Setup_Email extends FireGento_GermanSetup_Mode
|
|
| 39 |
/**
|
| 40 |
* Setup Transaction Emails
|
| 41 |
*
|
|
|
|
|
|
|
| 42 |
* @return void
|
| 43 |
*/
|
| 44 |
-
public function setup()
|
| 45 |
{
|
| 46 |
// execute emails
|
| 47 |
foreach ($this->_getConfigEmails() as $data) {
|
| 48 |
|
| 49 |
if ($data['execute'] == 1) {
|
| 50 |
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
/** Change third param from false to true to override existing templates for testing */
|
| 54 |
-
$this->_createEmail($data, $locale, false);
|
| 55 |
}
|
| 56 |
}
|
| 57 |
}
|
| 39 |
/**
|
| 40 |
* Setup Transaction Emails
|
| 41 |
*
|
| 42 |
+
* @param string $locale
|
| 43 |
+
* @param bool $overwrite
|
| 44 |
* @return void
|
| 45 |
*/
|
| 46 |
+
public function setup($locale = 'de_DE', $overwrite = false)
|
| 47 |
{
|
| 48 |
// execute emails
|
| 49 |
foreach ($this->_getConfigEmails() as $data) {
|
| 50 |
|
| 51 |
if ($data['execute'] == 1) {
|
| 52 |
|
| 53 |
+
/** Change override param from false to true to override existing templates for testing */
|
| 54 |
+
$this->_createEmail($data, $locale, $overwrite);
|
|
|
|
|
|
|
| 55 |
}
|
| 56 |
}
|
| 57 |
}
|
app/code/community/FireGento/GermanSetup/Model/Source/AgreementType.php
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Source model for attribute "agreement_type"
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.2
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
class FireGento_GermanSetup_Model_Source_AgreementType
|
| 36 |
+
{
|
| 37 |
+
const AGREEMENT_TYPE_CHECKOUT = 0;
|
| 38 |
+
const AGREEMENT_TYPE_CUSTOMER = 1;
|
| 39 |
+
const AGREEMENT_TYPE_BOTH = 2;
|
| 40 |
+
const AGREEMENT_TYPE_NOWHERE = 3;
|
| 41 |
+
|
| 42 |
+
/**
|
| 43 |
+
* Options getter
|
| 44 |
+
*
|
| 45 |
+
* @return array
|
| 46 |
+
*/
|
| 47 |
+
public function toOptionArray()
|
| 48 |
+
{
|
| 49 |
+
$helper = Mage::helper('germansetup');
|
| 50 |
+
return array(
|
| 51 |
+
array(
|
| 52 |
+
'value' => self::AGREEMENT_TYPE_CHECKOUT,
|
| 53 |
+
'label' => $helper->__('On checkout (Magento Default)')
|
| 54 |
+
),
|
| 55 |
+
array(
|
| 56 |
+
'value' => self::AGREEMENT_TYPE_CUSTOMER,
|
| 57 |
+
'label' => $helper->__('On customer registration (or on checkout, if customer not registered before)')
|
| 58 |
+
),
|
| 59 |
+
array(
|
| 60 |
+
'value' => self::AGREEMENT_TYPE_BOTH,
|
| 61 |
+
'label' => $helper->__('On customer registration and on checkout')
|
| 62 |
+
),
|
| 63 |
+
array(
|
| 64 |
+
'value' => self::AGREEMENT_TYPE_NOWHERE,
|
| 65 |
+
'label' => $helper->__('Nowhere')
|
| 66 |
+
),
|
| 67 |
+
);
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
/**
|
| 71 |
+
* @return array
|
| 72 |
+
*/
|
| 73 |
+
public function getOptionArray()
|
| 74 |
+
{
|
| 75 |
+
$options = array();
|
| 76 |
+
foreach ($this->toOptionArray() as $option) {
|
| 77 |
+
$options[$option['value']] = $option['label'];
|
| 78 |
+
}
|
| 79 |
+
return $options;
|
| 80 |
+
}
|
| 81 |
+
}
|
app/code/community/FireGento/GermanSetup/Model/Source/Tax/ProductTaxClass.php
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Tax Source model for new tax classes, possibly not created yet
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.0
|
| 33 |
+
*/
|
| 34 |
+
class FireGento_GermanSetup_Model_Source_Tax_ProductTaxClass extends Mage_Tax_Model_Class_Source_Product
|
| 35 |
+
{
|
| 36 |
+
public function getAllOptions($withEmpty = false)
|
| 37 |
+
{
|
| 38 |
+
$options = parent::getAllOptions($withEmpty);
|
| 39 |
+
|
| 40 |
+
foreach ($options as $optionKey => $option) {
|
| 41 |
+
|
| 42 |
+
if (intval($option['value']) <= 0) {
|
| 43 |
+
continue;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
/** @var $productCollection Mage_Catalog_Model_Resource_Product_Collection */
|
| 47 |
+
$productCollection = Mage::getModel('catalog/product')
|
| 48 |
+
->getCollection()
|
| 49 |
+
->addAttributeToFilter('tax_class_id', $option['value'])
|
| 50 |
+
->setPageSize(1);
|
| 51 |
+
|
| 52 |
+
if (!$productCollection->getSize()) {
|
| 53 |
+
unset($options[$optionKey]);
|
| 54 |
+
}
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
return $options;
|
| 58 |
+
}
|
| 59 |
+
}
|
app/code/community/FireGento/GermanSetup/Model/Tax/Config.php
CHANGED
|
@@ -48,11 +48,15 @@ class FireGento_GermanSetup_Model_Tax_Config extends Mage_Tax_Model_Config
|
|
| 48 |
*/
|
| 49 |
public function getShippingTaxClass($store = null)
|
| 50 |
{
|
|
|
|
|
|
|
| 51 |
|
| 52 |
/* @var $session Mage_Checkout_Model_Session */
|
| 53 |
$session = Mage::getSingleton('checkout/session');
|
| 54 |
|
| 55 |
-
if ($
|
|
|
|
|
|
|
| 56 |
$quoteItems = $session->getQuote()->getAllItems();
|
| 57 |
} else {
|
| 58 |
// This case happens if the store currency is switched by the customer.
|
| 48 |
*/
|
| 49 |
public function getShippingTaxClass($store = null)
|
| 50 |
{
|
| 51 |
+
/** @var Mage_Adminhtml_Model_Session_Quote */
|
| 52 |
+
$adminhtmlSession = Mage::getSingleton('adminhtml/session_quote');
|
| 53 |
|
| 54 |
/* @var $session Mage_Checkout_Model_Session */
|
| 55 |
$session = Mage::getSingleton('checkout/session');
|
| 56 |
|
| 57 |
+
if (Mage::app()->getStore()->getId() == Mage_Core_Model_App::ADMIN_STORE_ID && $adminhtmlSession->getQuote()) {
|
| 58 |
+
$quoteItems = $adminhtmlSession->getQuote()->getAllItems();
|
| 59 |
+
} elseif ($session->hasQuote()) {
|
| 60 |
$quoteItems = $session->getQuote()->getAllItems();
|
| 61 |
} else {
|
| 62 |
// This case happens if the store currency is switched by the customer.
|
app/code/community/FireGento/GermanSetup/controllers/GermansetupController.php
CHANGED
|
@@ -79,6 +79,8 @@ class FireGento_GermanSetup_GermansetupController extends Mage_Adminhtml_Control
|
|
| 79 |
public function saveAction()
|
| 80 |
{
|
| 81 |
if ($this->getRequest()->isPost()) {
|
|
|
|
|
|
|
| 82 |
try {
|
| 83 |
if ($this->getRequest()->getParam('systemconfig') == 1) {
|
| 84 |
Mage::getSingleton('germansetup/setup_systemconfig')->setup();
|
|
@@ -102,7 +104,8 @@ class FireGento_GermanSetup_GermansetupController extends Mage_Adminhtml_Control
|
|
| 102 |
}
|
| 103 |
|
| 104 |
if ($this->getRequest()->getParam('email') == 1) {
|
| 105 |
-
|
|
|
|
| 106 |
$this->_getSession()->addSuccess(
|
| 107 |
$this->__('German Setup: Email Templates have been created.')
|
| 108 |
);
|
| 79 |
public function saveAction()
|
| 80 |
{
|
| 81 |
if ($this->getRequest()->isPost()) {
|
| 82 |
+
$country = $this->getRequest()->getParam('country');
|
| 83 |
+
Mage::register('setup_country', $country);
|
| 84 |
try {
|
| 85 |
if ($this->getRequest()->getParam('systemconfig') == 1) {
|
| 86 |
Mage::getSingleton('germansetup/setup_systemconfig')->setup();
|
| 104 |
}
|
| 105 |
|
| 106 |
if ($this->getRequest()->getParam('email') == 1) {
|
| 107 |
+
$emailLocale = $this->getRequest()->getParam('email_locale');
|
| 108 |
+
Mage::getSingleton('germansetup/setup_email')->setup($emailLocale);
|
| 109 |
$this->_getSession()->addSuccess(
|
| 110 |
$this->__('German Setup: Email Templates have been created.')
|
| 111 |
);
|
app/code/community/FireGento/GermanSetup/etc/at/tax.xml
CHANGED
|
@@ -55,20 +55,20 @@
|
|
| 55 |
<priority>1</priority>
|
| 56 |
<position>0</position>
|
| 57 |
</products_20_percent_companies>
|
| 58 |
-
<products_10_percent_companies>
|
| 59 |
-
<execute>1</execute>
|
| 60 |
-
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 61 |
-
<code>Produkte mit 10% MwSt.</code>
|
| 62 |
-
<priority>2</priority>
|
| 63 |
-
<position>0</position>
|
| 64 |
-
</products_10_percent_companies>
|
| 65 |
<shipping_companies>
|
| 66 |
<execute>1</execute>
|
| 67 |
-
<tax_calculation_rule_id>
|
| 68 |
<code>Versand mit 20% MwSt.</code>
|
| 69 |
<priority>3</priority>
|
| 70 |
<position>0</position>
|
| 71 |
</shipping_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
</default>
|
| 73 |
</tax_calculation_rules>
|
| 74 |
|
| 55 |
<priority>1</priority>
|
| 56 |
<position>0</position>
|
| 57 |
</products_20_percent_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
<shipping_companies>
|
| 59 |
<execute>1</execute>
|
| 60 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 61 |
<code>Versand mit 20% MwSt.</code>
|
| 62 |
<priority>3</priority>
|
| 63 |
<position>0</position>
|
| 64 |
</shipping_companies>
|
| 65 |
+
<products_10_percent_companies>
|
| 66 |
+
<execute>1</execute>
|
| 67 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 68 |
+
<code>Produkte mit 10% MwSt.</code>
|
| 69 |
+
<priority>2</priority>
|
| 70 |
+
<position>0</position>
|
| 71 |
+
</products_10_percent_companies>
|
| 72 |
</default>
|
| 73 |
</tax_calculation_rules>
|
| 74 |
|
app/code/community/FireGento/GermanSetup/etc/ch/tax.xml
CHANGED
|
@@ -55,20 +55,20 @@
|
|
| 55 |
<priority>1</priority>
|
| 56 |
<position>0</position>
|
| 57 |
</products_8_percent_companies>
|
| 58 |
-
<products_25_percent_companies>
|
| 59 |
-
<execute>1</execute>
|
| 60 |
-
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 61 |
-
<code>Produkte mit 2.5% MwSt.</code>
|
| 62 |
-
<priority>2</priority>
|
| 63 |
-
<position>0</position>
|
| 64 |
-
</products_25_percent_companies>
|
| 65 |
<shipping_companies>
|
| 66 |
<execute>1</execute>
|
| 67 |
-
<tax_calculation_rule_id>
|
| 68 |
<code>Versand mit 8% MwSt.</code>
|
| 69 |
<priority>3</priority>
|
| 70 |
<position>0</position>
|
| 71 |
</shipping_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
</default>
|
| 73 |
</tax_calculation_rules>
|
| 74 |
|
| 55 |
<priority>1</priority>
|
| 56 |
<position>0</position>
|
| 57 |
</products_8_percent_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
<shipping_companies>
|
| 59 |
<execute>1</execute>
|
| 60 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 61 |
<code>Versand mit 8% MwSt.</code>
|
| 62 |
<priority>3</priority>
|
| 63 |
<position>0</position>
|
| 64 |
</shipping_companies>
|
| 65 |
+
<products_25_percent_companies>
|
| 66 |
+
<execute>1</execute>
|
| 67 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 68 |
+
<code>Produkte mit 2.5% MwSt.</code>
|
| 69 |
+
<priority>2</priority>
|
| 70 |
+
<position>0</position>
|
| 71 |
+
</products_25_percent_companies>
|
| 72 |
</default>
|
| 73 |
</tax_calculation_rules>
|
| 74 |
|
app/code/community/FireGento/GermanSetup/etc/config.xml
CHANGED
|
@@ -25,7 +25,7 @@
|
|
| 25 |
<config>
|
| 26 |
<modules>
|
| 27 |
<FireGento_GermanSetup>
|
| 28 |
-
<version>1.
|
| 29 |
</FireGento_GermanSetup>
|
| 30 |
</modules>
|
| 31 |
<global>
|
|
@@ -77,7 +77,7 @@
|
|
| 77 |
<germansetup_setup>
|
| 78 |
<setup>
|
| 79 |
<module>FireGento_GermanSetup</module>
|
| 80 |
-
<class>
|
| 81 |
</setup>
|
| 82 |
</germansetup_setup>
|
| 83 |
</resources>
|
|
@@ -141,6 +141,15 @@
|
|
| 141 |
</recalculate_dynamic_shipping_tax>
|
| 142 |
</observers>
|
| 143 |
</checkout_cart_update_items_after>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 144 |
</events>
|
| 145 |
<routers>
|
| 146 |
<germansetup>
|
|
@@ -222,7 +231,7 @@
|
|
| 222 |
<germansetup_observer_agreement>
|
| 223 |
<class>germansetup/observer</class>
|
| 224 |
<type>model</type>
|
| 225 |
-
<method>
|
| 226 |
</germansetup_observer_agreement>
|
| 227 |
</observers>
|
| 228 |
</adminhtml_block_html_before>
|
|
@@ -243,7 +252,9 @@
|
|
| 243 |
<catalog>
|
| 244 |
<price>
|
| 245 |
<display_block_below_price>1</display_block_below_price>
|
|
|
|
| 246 |
<cms_page_shipping>lieferung</cms_page_shipping>
|
|
|
|
| 247 |
</price>
|
| 248 |
</catalog>
|
| 249 |
<general>
|
|
@@ -258,10 +269,15 @@
|
|
| 258 |
</general>
|
| 259 |
<checkout>
|
| 260 |
<options>
|
| 261 |
-
<additional_information><![CDATA[
|
| 262 |
-
|
|
|
|
|
|
|
| 263 |
</checkout>
|
| 264 |
<customer>
|
|
|
|
|
|
|
|
|
|
| 265 |
<address_templates>
|
| 266 |
<text><![CDATA[
|
| 267 |
{{depend company}}{{var company}}
|
|
@@ -276,7 +292,8 @@ Tel: {{var telephone}}
|
|
| 276 |
{{depend fax}}Fax: {{var fax}}
|
| 277 |
{{/depend}}
|
| 278 |
]]></text>
|
| 279 |
-
<oneline
|
|
|
|
| 280 |
<html><![CDATA[
|
| 281 |
{{depend company}}{{var company}}<br />{{/depend}}
|
| 282 |
{{depend prefix}}{{var prefix}} {{/depend}}{{var firstname}} {{depend middlename}}{{var middlename}} {{/depend}}{{var lastname}}{{depend suffix}} {{var suffix}}{{/depend}}<br/>
|
|
@@ -292,7 +309,7 @@ Tel: {{var telephone}}
|
|
| 292 |
<pdf><![CDATA[
|
| 293 |
{{depend company}}{{var company}}|{{/depend}}
|
| 294 |
{{depend prefix}}{{var prefix}} {{/depend}}{{var firstname}} {{depend middlename}}{{var middlename}} {{/depend}}{{var lastname}}{{depend suffix}} {{var suffix}}{{/depend}}|
|
| 295 |
-
{{if street1}}{{var street1}}
|
| 296 |
{{/if}}
|
| 297 |
{{depend street2}}{{var street2}}|{{/depend}}
|
| 298 |
{{depend street3}}{{var street3}}|{{/depend}}
|
|
@@ -304,7 +321,8 @@ Tel: {{var telephone}}
|
|
| 304 |
]]></pdf>
|
| 305 |
<js_template template="title" module="customer">
|
| 306 |
<title>Javascript Template</title>
|
| 307 |
-
<defaultFormat
|
|
|
|
| 308 |
</defaultFormat>
|
| 309 |
</js_template>
|
| 310 |
</address_templates>
|
| 25 |
<config>
|
| 26 |
<modules>
|
| 27 |
<FireGento_GermanSetup>
|
| 28 |
+
<version>1.2.3</version>
|
| 29 |
</FireGento_GermanSetup>
|
| 30 |
</modules>
|
| 31 |
<global>
|
| 77 |
<germansetup_setup>
|
| 78 |
<setup>
|
| 79 |
<module>FireGento_GermanSetup</module>
|
| 80 |
+
<class>Mage_Catalog_Model_Resource_Eav_Mysql4_Setup</class>
|
| 81 |
</setup>
|
| 82 |
</germansetup_setup>
|
| 83 |
</resources>
|
| 141 |
</recalculate_dynamic_shipping_tax>
|
| 142 |
</observers>
|
| 143 |
</checkout_cart_update_items_after>
|
| 144 |
+
<controller_action_predispatch_customer_account_createpost>
|
| 145 |
+
<observers>
|
| 146 |
+
<germansetup_observer>
|
| 147 |
+
<class>germansetup/observer</class>
|
| 148 |
+
<type>model</type>
|
| 149 |
+
<method>customerCreatePreDispatch</method>
|
| 150 |
+
</germansetup_observer>
|
| 151 |
+
</observers>
|
| 152 |
+
</controller_action_predispatch_customer_account_createpost>
|
| 153 |
</events>
|
| 154 |
<routers>
|
| 155 |
<germansetup>
|
| 231 |
<germansetup_observer_agreement>
|
| 232 |
<class>germansetup/observer</class>
|
| 233 |
<type>model</type>
|
| 234 |
+
<method>addOptionsForAgreements</method>
|
| 235 |
</germansetup_observer_agreement>
|
| 236 |
</observers>
|
| 237 |
</adminhtml_block_html_before>
|
| 252 |
<catalog>
|
| 253 |
<price>
|
| 254 |
<display_block_below_price>1</display_block_below_price>
|
| 255 |
+
<display_delivery_time_on_categories>1</display_delivery_time_on_categories>
|
| 256 |
<cms_page_shipping>lieferung</cms_page_shipping>
|
| 257 |
+
<weight_unit>kg</weight_unit>
|
| 258 |
</price>
|
| 259 |
</catalog>
|
| 260 |
<general>
|
| 269 |
</general>
|
| 270 |
<checkout>
|
| 271 |
<options>
|
| 272 |
+
<additional_information><![CDATA[Beim Versand ins Nicht-EU-Ausland können zusätzlich Zölle, Steuern und Gebühren entstehen.]]></additional_information></options>
|
| 273 |
+
<cart>
|
| 274 |
+
<hide_shipping>1</hide_shipping>
|
| 275 |
+
</cart>
|
| 276 |
</checkout>
|
| 277 |
<customer>
|
| 278 |
+
<create_account>
|
| 279 |
+
<avoid_tc>Yes</avoid_tc>
|
| 280 |
+
</create_account>
|
| 281 |
<address_templates>
|
| 282 |
<text><![CDATA[
|
| 283 |
{{depend company}}{{var company}}
|
| 292 |
{{depend fax}}Fax: {{var fax}}
|
| 293 |
{{/depend}}
|
| 294 |
]]></text>
|
| 295 |
+
<oneline>
|
| 296 |
+
<![CDATA[{{depend prefix}}{{var prefix}} {{/depend}}{{var firstname}} {{depend middlename}}{{var middlename}} {{/depend}}{{var lastname}}{{depend suffix}} {{var suffix}}{{/depend}}, {{var street}}, {{var postcode}} {{var city}}, {{var country}}]]></oneline>
|
| 297 |
<html><![CDATA[
|
| 298 |
{{depend company}}{{var company}}<br />{{/depend}}
|
| 299 |
{{depend prefix}}{{var prefix}} {{/depend}}{{var firstname}} {{depend middlename}}{{var middlename}} {{/depend}}{{var lastname}}{{depend suffix}} {{var suffix}}{{/depend}}<br/>
|
| 309 |
<pdf><![CDATA[
|
| 310 |
{{depend company}}{{var company}}|{{/depend}}
|
| 311 |
{{depend prefix}}{{var prefix}} {{/depend}}{{var firstname}} {{depend middlename}}{{var middlename}} {{/depend}}{{var lastname}}{{depend suffix}} {{var suffix}}{{/depend}}|
|
| 312 |
+
{{if street1}}{{var street1}}|
|
| 313 |
{{/if}}
|
| 314 |
{{depend street2}}{{var street2}}|{{/depend}}
|
| 315 |
{{depend street3}}{{var street3}}|{{/depend}}
|
| 321 |
]]></pdf>
|
| 322 |
<js_template template="title" module="customer">
|
| 323 |
<title>Javascript Template</title>
|
| 324 |
+
<defaultFormat>
|
| 325 |
+
<![CDATA[#{company}<br/>#{prefix} #{firstname} #{middlename} #{lastname} #{suffix}<br/>#{street0}<br/>#{street1}<br/>#{street2}<br/>#{street3}<br/>#{postcode} #{city}<br/>#{country_id}<br/>Tel: #{telephone}<br/>Fax: #{fax}]]>
|
| 326 |
</defaultFormat>
|
| 327 |
</js_template>
|
| 328 |
</address_templates>
|
app/code/community/FireGento/GermanSetup/etc/default/tax.xml
CHANGED
|
@@ -30,45 +30,57 @@
|
|
| 30 |
<products_19_percent>
|
| 31 |
<execute>1</execute>
|
| 32 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 33 |
-
<code>
|
| 34 |
<priority>1</priority>
|
| 35 |
<position>0</position>
|
| 36 |
</products_19_percent>
|
| 37 |
<products_7_percent>
|
| 38 |
<execute>1</execute>
|
| 39 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 40 |
-
<code>
|
| 41 |
<priority>2</priority>
|
| 42 |
<position>0</position>
|
| 43 |
</products_7_percent>
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 47 |
-
<code>Versand mit 19% MwSt.</code>
|
| 48 |
-
<priority>3</priority>
|
| 49 |
-
<position>0</position>
|
| 50 |
-
</shipping>
|
| 51 |
<products_19_percent_companies>
|
| 52 |
<execute>1</execute>
|
| 53 |
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 54 |
-
<code>
|
| 55 |
<priority>1</priority>
|
| 56 |
<position>0</position>
|
| 57 |
</products_19_percent_companies>
|
| 58 |
<products_7_percent_companies>
|
| 59 |
<execute>1</execute>
|
| 60 |
-
<tax_calculation_rule_id>
|
| 61 |
-
<code>
|
| 62 |
<priority>2</priority>
|
| 63 |
<position>0</position>
|
| 64 |
</products_7_percent_companies>
|
| 65 |
-
<
|
| 66 |
<execute>1</execute>
|
| 67 |
-
<tax_calculation_rule_id>
|
| 68 |
-
<code>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
<priority>3</priority>
|
| 70 |
<position>0</position>
|
| 71 |
-
</
|
|
|
|
| 72 |
</default>
|
| 73 |
</tax_calculation_rules>
|
| 74 |
|
|
@@ -77,14 +89,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>
|
|
@@ -94,24 +106,38 @@
|
|
| 94 |
<class_name>Endkunden</class_name>
|
| 95 |
<class_type>CUSTOMER</class_type>
|
| 96 |
</customer_customers>
|
| 97 |
-
<
|
| 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 |
-
</
|
| 104 |
<customer_companies>
|
| 105 |
<execute>1</execute>
|
| 106 |
<class_id>5</class_id>
|
| 107 |
-
<class_name>Unternehmen</class_name>
|
| 108 |
<class_type>CUSTOMER</class_type>
|
| 109 |
</customer_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
</default>
|
| 111 |
</tax_classes>
|
| 112 |
|
| 113 |
<tax_calculation_rates>
|
| 114 |
<default>
|
|
|
|
| 115 |
<tax_calculation_rate_DE_19>
|
| 116 |
<execute>1</execute>
|
| 117 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
|
@@ -122,26 +148,29 @@
|
|
| 122 |
<label>MwSt.</label>
|
| 123 |
<rate>19</rate>
|
| 124 |
</tax_calculation_rate_DE_19>
|
| 125 |
-
|
|
|
|
| 126 |
<execute>1</execute>
|
| 127 |
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 128 |
<tax_country_id>DE</tax_country_id>
|
| 129 |
<tax_region_id>0</tax_region_id>
|
| 130 |
<tax_postcode>*</tax_postcode>
|
| 131 |
-
<code>DE
|
| 132 |
-
<label>
|
| 133 |
-
<rate>
|
| 134 |
-
</
|
| 135 |
-
|
|
|
|
| 136 |
<execute>1</execute>
|
| 137 |
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 138 |
<tax_country_id>DE</tax_country_id>
|
| 139 |
<tax_region_id>0</tax_region_id>
|
| 140 |
<tax_postcode>*</tax_postcode>
|
| 141 |
-
<code>DE
|
| 142 |
-
<label>
|
| 143 |
-
<rate>
|
| 144 |
-
</
|
|
|
|
| 145 |
<tax_calculation_rate_BE_19>
|
| 146 |
<execute>1</execute>
|
| 147 |
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
|
@@ -152,26 +181,29 @@
|
|
| 152 |
<label>MwSt.</label>
|
| 153 |
<rate>19</rate>
|
| 154 |
</tax_calculation_rate_BE_19>
|
| 155 |
-
|
|
|
|
| 156 |
<execute>1</execute>
|
| 157 |
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 158 |
<tax_country_id>BE</tax_country_id>
|
| 159 |
<tax_region_id>0</tax_region_id>
|
| 160 |
<tax_postcode>*</tax_postcode>
|
| 161 |
-
<code>BE
|
| 162 |
-
<label>
|
| 163 |
-
<rate>
|
| 164 |
-
</
|
| 165 |
-
|
|
|
|
| 166 |
<execute>1</execute>
|
| 167 |
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 168 |
<tax_country_id>BE</tax_country_id>
|
| 169 |
<tax_region_id>0</tax_region_id>
|
| 170 |
<tax_postcode>*</tax_postcode>
|
| 171 |
-
<code>BE
|
| 172 |
-
<label>
|
| 173 |
-
<rate>
|
| 174 |
-
</
|
|
|
|
| 175 |
<tax_calculation_rate_BG_19>
|
| 176 |
<execute>1</execute>
|
| 177 |
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
|
@@ -182,26 +214,29 @@
|
|
| 182 |
<label>MwSt.</label>
|
| 183 |
<rate>19</rate>
|
| 184 |
</tax_calculation_rate_BG_19>
|
| 185 |
-
|
|
|
|
| 186 |
<execute>1</execute>
|
| 187 |
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 188 |
<tax_country_id>BG</tax_country_id>
|
| 189 |
<tax_region_id>0</tax_region_id>
|
| 190 |
<tax_postcode>*</tax_postcode>
|
| 191 |
-
<code>BG
|
| 192 |
-
<label>
|
| 193 |
-
<rate>
|
| 194 |
-
</
|
| 195 |
-
|
|
|
|
| 196 |
<execute>1</execute>
|
| 197 |
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 198 |
<tax_country_id>BG</tax_country_id>
|
| 199 |
<tax_region_id>0</tax_region_id>
|
| 200 |
<tax_postcode>*</tax_postcode>
|
| 201 |
-
<code>BG
|
| 202 |
-
<label>
|
| 203 |
-
<rate>
|
| 204 |
-
</
|
|
|
|
| 205 |
<tax_calculation_rate_DK_19>
|
| 206 |
<execute>1</execute>
|
| 207 |
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
|
@@ -212,26 +247,29 @@
|
|
| 212 |
<label>MwSt.</label>
|
| 213 |
<rate>19</rate>
|
| 214 |
</tax_calculation_rate_DK_19>
|
| 215 |
-
|
|
|
|
| 216 |
<execute>1</execute>
|
| 217 |
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 218 |
<tax_country_id>DK</tax_country_id>
|
| 219 |
<tax_region_id>0</tax_region_id>
|
| 220 |
<tax_postcode>*</tax_postcode>
|
| 221 |
-
<code>DK
|
| 222 |
-
<label>
|
| 223 |
-
<rate>
|
| 224 |
-
</
|
| 225 |
-
|
|
|
|
| 226 |
<execute>1</execute>
|
| 227 |
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 228 |
<tax_country_id>DK</tax_country_id>
|
| 229 |
<tax_region_id>0</tax_region_id>
|
| 230 |
<tax_postcode>*</tax_postcode>
|
| 231 |
-
<code>DK
|
| 232 |
-
<label>
|
| 233 |
-
<rate>
|
| 234 |
-
</
|
|
|
|
| 235 |
<tax_calculation_rate_EE_19>
|
| 236 |
<execute>1</execute>
|
| 237 |
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
|
@@ -242,26 +280,29 @@
|
|
| 242 |
<label>MwSt.</label>
|
| 243 |
<rate>19</rate>
|
| 244 |
</tax_calculation_rate_EE_19>
|
| 245 |
-
|
|
|
|
| 246 |
<execute>1</execute>
|
| 247 |
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 248 |
<tax_country_id>EE</tax_country_id>
|
| 249 |
<tax_region_id>0</tax_region_id>
|
| 250 |
<tax_postcode>*</tax_postcode>
|
| 251 |
-
<code>EE
|
| 252 |
-
<label>
|
| 253 |
-
<rate>
|
| 254 |
-
</
|
| 255 |
-
|
|
|
|
| 256 |
<execute>1</execute>
|
| 257 |
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 258 |
<tax_country_id>EE</tax_country_id>
|
| 259 |
<tax_region_id>0</tax_region_id>
|
| 260 |
<tax_postcode>*</tax_postcode>
|
| 261 |
-
<code>EE
|
| 262 |
-
<label>
|
| 263 |
-
<rate>
|
| 264 |
-
</
|
|
|
|
| 265 |
<tax_calculation_rate_FI_19>
|
| 266 |
<execute>1</execute>
|
| 267 |
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
|
@@ -272,26 +313,29 @@
|
|
| 272 |
<label>MwSt.</label>
|
| 273 |
<rate>19</rate>
|
| 274 |
</tax_calculation_rate_FI_19>
|
| 275 |
-
|
|
|
|
| 276 |
<execute>1</execute>
|
| 277 |
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 278 |
<tax_country_id>FI</tax_country_id>
|
| 279 |
<tax_region_id>0</tax_region_id>
|
| 280 |
<tax_postcode>*</tax_postcode>
|
| 281 |
-
<code>FI
|
| 282 |
-
<label>
|
| 283 |
-
<rate>
|
| 284 |
-
</
|
| 285 |
-
|
|
|
|
| 286 |
<execute>1</execute>
|
| 287 |
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 288 |
<tax_country_id>FI</tax_country_id>
|
| 289 |
<tax_region_id>0</tax_region_id>
|
| 290 |
<tax_postcode>*</tax_postcode>
|
| 291 |
-
<code>FI
|
| 292 |
-
<label>
|
| 293 |
-
<rate>
|
| 294 |
-
</
|
|
|
|
| 295 |
<tax_calculation_rate_FR_19>
|
| 296 |
<execute>1</execute>
|
| 297 |
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
|
@@ -302,26 +346,29 @@
|
|
| 302 |
<label>MwSt.</label>
|
| 303 |
<rate>19</rate>
|
| 304 |
</tax_calculation_rate_FR_19>
|
| 305 |
-
|
|
|
|
| 306 |
<execute>1</execute>
|
| 307 |
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 308 |
<tax_country_id>FR</tax_country_id>
|
| 309 |
<tax_region_id>0</tax_region_id>
|
| 310 |
<tax_postcode>*</tax_postcode>
|
| 311 |
-
<code>FR
|
| 312 |
-
<label>
|
| 313 |
-
<rate>
|
| 314 |
-
</
|
| 315 |
-
|
|
|
|
| 316 |
<execute>1</execute>
|
| 317 |
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 318 |
<tax_country_id>FR</tax_country_id>
|
| 319 |
<tax_region_id>0</tax_region_id>
|
| 320 |
<tax_postcode>*</tax_postcode>
|
| 321 |
-
<code>FR
|
| 322 |
-
<label>
|
| 323 |
-
<rate>
|
| 324 |
-
</
|
|
|
|
| 325 |
<tax_calculation_rate_GR_19>
|
| 326 |
<execute>1</execute>
|
| 327 |
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
|
@@ -332,26 +379,29 @@
|
|
| 332 |
<label>MwSt.</label>
|
| 333 |
<rate>19</rate>
|
| 334 |
</tax_calculation_rate_GR_19>
|
| 335 |
-
|
|
|
|
| 336 |
<execute>1</execute>
|
| 337 |
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 338 |
<tax_country_id>GR</tax_country_id>
|
| 339 |
<tax_region_id>0</tax_region_id>
|
| 340 |
<tax_postcode>*</tax_postcode>
|
| 341 |
-
<code>GR
|
| 342 |
-
<label>
|
| 343 |
-
<rate>
|
| 344 |
-
</
|
| 345 |
-
|
|
|
|
| 346 |
<execute>1</execute>
|
| 347 |
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 348 |
<tax_country_id>GR</tax_country_id>
|
| 349 |
<tax_region_id>0</tax_region_id>
|
| 350 |
<tax_postcode>*</tax_postcode>
|
| 351 |
-
<code>GR
|
| 352 |
-
<label>
|
| 353 |
-
<rate>
|
| 354 |
-
</
|
|
|
|
| 355 |
<tax_calculation_rate_IE_19>
|
| 356 |
<execute>1</execute>
|
| 357 |
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
|
@@ -362,26 +412,29 @@
|
|
| 362 |
<label>MwSt.</label>
|
| 363 |
<rate>19</rate>
|
| 364 |
</tax_calculation_rate_IE_19>
|
| 365 |
-
|
|
|
|
| 366 |
<execute>1</execute>
|
| 367 |
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 368 |
<tax_country_id>IE</tax_country_id>
|
| 369 |
<tax_region_id>0</tax_region_id>
|
| 370 |
<tax_postcode>*</tax_postcode>
|
| 371 |
-
<code>IE
|
| 372 |
-
<label>
|
| 373 |
-
<rate>
|
| 374 |
-
</
|
| 375 |
-
|
|
|
|
| 376 |
<execute>1</execute>
|
| 377 |
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 378 |
<tax_country_id>IE</tax_country_id>
|
| 379 |
<tax_region_id>0</tax_region_id>
|
| 380 |
<tax_postcode>*</tax_postcode>
|
| 381 |
-
<code>IE
|
| 382 |
-
<label>
|
| 383 |
-
<rate>
|
| 384 |
-
</
|
|
|
|
| 385 |
<tax_calculation_rate_IT_19>
|
| 386 |
<execute>1</execute>
|
| 387 |
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
|
@@ -392,26 +445,29 @@
|
|
| 392 |
<label>MwSt.</label>
|
| 393 |
<rate>19</rate>
|
| 394 |
</tax_calculation_rate_IT_19>
|
| 395 |
-
|
|
|
|
| 396 |
<execute>1</execute>
|
| 397 |
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 398 |
<tax_country_id>IT</tax_country_id>
|
| 399 |
<tax_region_id>0</tax_region_id>
|
| 400 |
<tax_postcode>*</tax_postcode>
|
| 401 |
-
<code>IT
|
| 402 |
-
<label>
|
| 403 |
-
<rate>
|
| 404 |
-
</
|
| 405 |
-
|
|
|
|
| 406 |
<execute>1</execute>
|
| 407 |
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 408 |
<tax_country_id>IT</tax_country_id>
|
| 409 |
<tax_region_id>0</tax_region_id>
|
| 410 |
<tax_postcode>*</tax_postcode>
|
| 411 |
-
<code>IT
|
| 412 |
-
<label>
|
| 413 |
-
<rate>
|
| 414 |
-
</
|
|
|
|
| 415 |
<tax_calculation_rate_LV_19>
|
| 416 |
<execute>1</execute>
|
| 417 |
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
|
@@ -422,19 +478,10 @@
|
|
| 422 |
<label>MwSt.</label>
|
| 423 |
<rate>19</rate>
|
| 424 |
</tax_calculation_rate_LV_19>
|
| 425 |
-
|
| 426 |
-
<execute>1</execute>
|
| 427 |
-
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 428 |
-
<tax_country_id>LV</tax_country_id>
|
| 429 |
-
<tax_region_id>0</tax_region_id>
|
| 430 |
-
<tax_postcode>*</tax_postcode>
|
| 431 |
-
<code>LV 0%</code>
|
| 432 |
-
<label>ohne MwSt.</label>
|
| 433 |
-
<rate>0</rate>
|
| 434 |
-
</tax_calculation_rate_LV_0>
|
| 435 |
<tax_calculation_rate_LV_7>
|
| 436 |
<execute>1</execute>
|
| 437 |
-
<tax_calculation_rate_id>
|
| 438 |
<tax_country_id>LV</tax_country_id>
|
| 439 |
<tax_region_id>0</tax_region_id>
|
| 440 |
<tax_postcode>*</tax_postcode>
|
|
@@ -442,6 +489,18 @@
|
|
| 442 |
<label>reduzierte MwSt.</label>
|
| 443 |
<rate>7</rate>
|
| 444 |
</tax_calculation_rate_LV_7>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 445 |
<tax_calculation_rate_LT_19>
|
| 446 |
<execute>1</execute>
|
| 447 |
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
|
@@ -452,26 +511,29 @@
|
|
| 452 |
<label>MwSt.</label>
|
| 453 |
<rate>19</rate>
|
| 454 |
</tax_calculation_rate_LT_19>
|
| 455 |
-
|
|
|
|
| 456 |
<execute>1</execute>
|
| 457 |
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 458 |
<tax_country_id>LT</tax_country_id>
|
| 459 |
<tax_region_id>0</tax_region_id>
|
| 460 |
<tax_postcode>*</tax_postcode>
|
| 461 |
-
<code>LT
|
| 462 |
-
<label>
|
| 463 |
-
<rate>
|
| 464 |
-
</
|
| 465 |
-
|
|
|
|
| 466 |
<execute>1</execute>
|
| 467 |
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 468 |
<tax_country_id>LT</tax_country_id>
|
| 469 |
<tax_region_id>0</tax_region_id>
|
| 470 |
<tax_postcode>*</tax_postcode>
|
| 471 |
-
<code>LT
|
| 472 |
-
<label>
|
| 473 |
-
<rate>
|
| 474 |
-
</
|
|
|
|
| 475 |
<tax_calculation_rate_LU_19>
|
| 476 |
<execute>1</execute>
|
| 477 |
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
|
@@ -482,26 +544,29 @@
|
|
| 482 |
<label>MwSt.</label>
|
| 483 |
<rate>19</rate>
|
| 484 |
</tax_calculation_rate_LU_19>
|
| 485 |
-
|
|
|
|
| 486 |
<execute>1</execute>
|
| 487 |
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 488 |
<tax_country_id>LU</tax_country_id>
|
| 489 |
<tax_region_id>0</tax_region_id>
|
| 490 |
<tax_postcode>*</tax_postcode>
|
| 491 |
-
<code>LU
|
| 492 |
-
<label>
|
| 493 |
-
<rate>
|
| 494 |
-
</
|
| 495 |
-
|
|
|
|
| 496 |
<execute>1</execute>
|
| 497 |
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 498 |
<tax_country_id>LU</tax_country_id>
|
| 499 |
<tax_region_id>0</tax_region_id>
|
| 500 |
<tax_postcode>*</tax_postcode>
|
| 501 |
-
<code>LU
|
| 502 |
-
<label>
|
| 503 |
-
<rate>
|
| 504 |
-
</
|
|
|
|
| 505 |
<tax_calculation_rate_MT_19>
|
| 506 |
<execute>1</execute>
|
| 507 |
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
|
@@ -512,26 +577,29 @@
|
|
| 512 |
<label>MwSt.</label>
|
| 513 |
<rate>19</rate>
|
| 514 |
</tax_calculation_rate_MT_19>
|
| 515 |
-
|
|
|
|
| 516 |
<execute>1</execute>
|
| 517 |
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 518 |
<tax_country_id>MT</tax_country_id>
|
| 519 |
<tax_region_id>0</tax_region_id>
|
| 520 |
<tax_postcode>*</tax_postcode>
|
| 521 |
-
<code>MT
|
| 522 |
-
<label>
|
| 523 |
-
<rate>
|
| 524 |
-
</
|
| 525 |
-
|
|
|
|
| 526 |
<execute>1</execute>
|
| 527 |
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 528 |
<tax_country_id>MT</tax_country_id>
|
| 529 |
<tax_region_id>0</tax_region_id>
|
| 530 |
<tax_postcode>*</tax_postcode>
|
| 531 |
-
<code>MT
|
| 532 |
-
<label>
|
| 533 |
-
<rate>
|
| 534 |
-
</
|
|
|
|
| 535 |
<tax_calculation_rate_NL_19>
|
| 536 |
<execute>1</execute>
|
| 537 |
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
|
@@ -542,26 +610,29 @@
|
|
| 542 |
<label>MwSt.</label>
|
| 543 |
<rate>19</rate>
|
| 544 |
</tax_calculation_rate_NL_19>
|
| 545 |
-
|
|
|
|
| 546 |
<execute>1</execute>
|
| 547 |
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 548 |
<tax_country_id>NL</tax_country_id>
|
| 549 |
<tax_region_id>0</tax_region_id>
|
| 550 |
<tax_postcode>*</tax_postcode>
|
| 551 |
-
<code>NL
|
| 552 |
-
<label>
|
| 553 |
-
<rate>
|
| 554 |
-
</
|
| 555 |
-
|
|
|
|
| 556 |
<execute>1</execute>
|
| 557 |
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 558 |
<tax_country_id>NL</tax_country_id>
|
| 559 |
<tax_region_id>0</tax_region_id>
|
| 560 |
<tax_postcode>*</tax_postcode>
|
| 561 |
-
<code>NL
|
| 562 |
-
<label>
|
| 563 |
-
<rate>
|
| 564 |
-
</
|
|
|
|
| 565 |
<tax_calculation_rate_AT_19>
|
| 566 |
<execute>1</execute>
|
| 567 |
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
|
@@ -572,26 +643,29 @@
|
|
| 572 |
<label>MwSt.</label>
|
| 573 |
<rate>19</rate>
|
| 574 |
</tax_calculation_rate_AT_19>
|
| 575 |
-
|
|
|
|
| 576 |
<execute>1</execute>
|
| 577 |
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 578 |
<tax_country_id>AT</tax_country_id>
|
| 579 |
<tax_region_id>0</tax_region_id>
|
| 580 |
<tax_postcode>*</tax_postcode>
|
| 581 |
-
<code>AT
|
| 582 |
-
<label>
|
| 583 |
-
<rate>
|
| 584 |
-
</
|
| 585 |
-
|
|
|
|
| 586 |
<execute>1</execute>
|
| 587 |
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 588 |
<tax_country_id>AT</tax_country_id>
|
| 589 |
<tax_region_id>0</tax_region_id>
|
| 590 |
<tax_postcode>*</tax_postcode>
|
| 591 |
-
<code>AT
|
| 592 |
-
<label>
|
| 593 |
-
<rate>
|
| 594 |
-
</
|
|
|
|
| 595 |
<tax_calculation_rate_PL_19>
|
| 596 |
<execute>1</execute>
|
| 597 |
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
|
@@ -602,26 +676,29 @@
|
|
| 602 |
<label>MwSt.</label>
|
| 603 |
<rate>19</rate>
|
| 604 |
</tax_calculation_rate_PL_19>
|
| 605 |
-
|
|
|
|
| 606 |
<execute>1</execute>
|
| 607 |
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 608 |
<tax_country_id>PL</tax_country_id>
|
| 609 |
<tax_region_id>0</tax_region_id>
|
| 610 |
<tax_postcode>*</tax_postcode>
|
| 611 |
-
<code>PL
|
| 612 |
-
<label>
|
| 613 |
-
<rate>
|
| 614 |
-
</
|
| 615 |
-
|
|
|
|
| 616 |
<execute>1</execute>
|
| 617 |
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 618 |
<tax_country_id>PL</tax_country_id>
|
| 619 |
<tax_region_id>0</tax_region_id>
|
| 620 |
<tax_postcode>*</tax_postcode>
|
| 621 |
-
<code>PL
|
| 622 |
-
<label>
|
| 623 |
-
<rate>
|
| 624 |
-
</
|
|
|
|
| 625 |
<tax_calculation_rate_PT_19>
|
| 626 |
<execute>1</execute>
|
| 627 |
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
|
@@ -632,26 +709,29 @@
|
|
| 632 |
<label>MwSt.</label>
|
| 633 |
<rate>19</rate>
|
| 634 |
</tax_calculation_rate_PT_19>
|
| 635 |
-
|
|
|
|
| 636 |
<execute>1</execute>
|
| 637 |
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 638 |
<tax_country_id>PT</tax_country_id>
|
| 639 |
<tax_region_id>0</tax_region_id>
|
| 640 |
<tax_postcode>*</tax_postcode>
|
| 641 |
-
<code>PT
|
| 642 |
-
<label>
|
| 643 |
-
<rate>
|
| 644 |
-
</
|
| 645 |
-
|
|
|
|
| 646 |
<execute>1</execute>
|
| 647 |
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 648 |
<tax_country_id>PT</tax_country_id>
|
| 649 |
<tax_region_id>0</tax_region_id>
|
| 650 |
<tax_postcode>*</tax_postcode>
|
| 651 |
-
<code>PT
|
| 652 |
-
<label>
|
| 653 |
-
<rate>
|
| 654 |
-
</
|
|
|
|
| 655 |
<tax_calculation_rate_RO_19>
|
| 656 |
<execute>1</execute>
|
| 657 |
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
|
@@ -662,26 +742,29 @@
|
|
| 662 |
<label>MwSt.</label>
|
| 663 |
<rate>19</rate>
|
| 664 |
</tax_calculation_rate_RO_19>
|
| 665 |
-
|
|
|
|
| 666 |
<execute>1</execute>
|
| 667 |
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 668 |
<tax_country_id>RO</tax_country_id>
|
| 669 |
<tax_region_id>0</tax_region_id>
|
| 670 |
<tax_postcode>*</tax_postcode>
|
| 671 |
-
<code>RO
|
| 672 |
-
<label>
|
| 673 |
-
<rate>
|
| 674 |
-
</
|
| 675 |
-
|
|
|
|
| 676 |
<execute>1</execute>
|
| 677 |
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 678 |
<tax_country_id>RO</tax_country_id>
|
| 679 |
<tax_region_id>0</tax_region_id>
|
| 680 |
<tax_postcode>*</tax_postcode>
|
| 681 |
-
<code>RO
|
| 682 |
-
<label>
|
| 683 |
-
<rate>
|
| 684 |
-
</
|
|
|
|
| 685 |
<tax_calculation_rate_SE_19>
|
| 686 |
<execute>1</execute>
|
| 687 |
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
|
@@ -692,26 +775,29 @@
|
|
| 692 |
<label>MwSt.</label>
|
| 693 |
<rate>19</rate>
|
| 694 |
</tax_calculation_rate_SE_19>
|
| 695 |
-
|
|
|
|
| 696 |
<execute>1</execute>
|
| 697 |
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 698 |
<tax_country_id>SE</tax_country_id>
|
| 699 |
<tax_region_id>0</tax_region_id>
|
| 700 |
<tax_postcode>*</tax_postcode>
|
| 701 |
-
<code>SE
|
| 702 |
-
<label>
|
| 703 |
-
<rate>
|
| 704 |
-
</
|
| 705 |
-
|
|
|
|
| 706 |
<execute>1</execute>
|
| 707 |
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 708 |
<tax_country_id>SE</tax_country_id>
|
| 709 |
<tax_region_id>0</tax_region_id>
|
| 710 |
<tax_postcode>*</tax_postcode>
|
| 711 |
-
<code>SE
|
| 712 |
-
<label>
|
| 713 |
-
<rate>
|
| 714 |
-
</
|
|
|
|
| 715 |
<tax_calculation_rate_SK_19>
|
| 716 |
<execute>1</execute>
|
| 717 |
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
|
@@ -722,26 +808,29 @@
|
|
| 722 |
<label>MwSt.</label>
|
| 723 |
<rate>19</rate>
|
| 724 |
</tax_calculation_rate_SK_19>
|
| 725 |
-
|
|
|
|
| 726 |
<execute>1</execute>
|
| 727 |
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 728 |
<tax_country_id>SK</tax_country_id>
|
| 729 |
<tax_region_id>0</tax_region_id>
|
| 730 |
<tax_postcode>*</tax_postcode>
|
| 731 |
-
<code>SK
|
| 732 |
-
<label>
|
| 733 |
-
<rate>
|
| 734 |
-
</
|
| 735 |
-
|
|
|
|
| 736 |
<execute>1</execute>
|
| 737 |
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 738 |
<tax_country_id>SK</tax_country_id>
|
| 739 |
<tax_region_id>0</tax_region_id>
|
| 740 |
<tax_postcode>*</tax_postcode>
|
| 741 |
-
<code>SK
|
| 742 |
-
<label>
|
| 743 |
-
<rate>
|
| 744 |
-
</
|
|
|
|
| 745 |
<tax_calculation_rate_SI_19>
|
| 746 |
<execute>1</execute>
|
| 747 |
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
|
@@ -752,26 +841,29 @@
|
|
| 752 |
<label>MwSt.</label>
|
| 753 |
<rate>19</rate>
|
| 754 |
</tax_calculation_rate_SI_19>
|
| 755 |
-
|
|
|
|
| 756 |
<execute>1</execute>
|
| 757 |
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 758 |
<tax_country_id>SI</tax_country_id>
|
| 759 |
<tax_region_id>0</tax_region_id>
|
| 760 |
<tax_postcode>*</tax_postcode>
|
| 761 |
-
<code>SI
|
| 762 |
-
<label>
|
| 763 |
-
<rate>
|
| 764 |
-
</
|
| 765 |
-
|
|
|
|
| 766 |
<execute>1</execute>
|
| 767 |
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 768 |
<tax_country_id>SI</tax_country_id>
|
| 769 |
<tax_region_id>0</tax_region_id>
|
| 770 |
<tax_postcode>*</tax_postcode>
|
| 771 |
-
<code>SI
|
| 772 |
-
<label>
|
| 773 |
-
<rate>
|
| 774 |
-
</
|
|
|
|
| 775 |
<tax_calculation_rate_ES_19>
|
| 776 |
<execute>1</execute>
|
| 777 |
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
|
@@ -782,26 +874,29 @@
|
|
| 782 |
<label>MwSt.</label>
|
| 783 |
<rate>19</rate>
|
| 784 |
</tax_calculation_rate_ES_19>
|
| 785 |
-
|
|
|
|
| 786 |
<execute>1</execute>
|
| 787 |
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 788 |
<tax_country_id>ES</tax_country_id>
|
| 789 |
<tax_region_id>0</tax_region_id>
|
| 790 |
<tax_postcode>*</tax_postcode>
|
| 791 |
-
<code>ES
|
| 792 |
-
<label>
|
| 793 |
-
<rate>
|
| 794 |
-
</
|
| 795 |
-
|
|
|
|
| 796 |
<execute>1</execute>
|
| 797 |
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 798 |
<tax_country_id>ES</tax_country_id>
|
| 799 |
<tax_region_id>0</tax_region_id>
|
| 800 |
<tax_postcode>*</tax_postcode>
|
| 801 |
-
<code>ES
|
| 802 |
-
<label>
|
| 803 |
-
<rate>
|
| 804 |
-
</
|
|
|
|
| 805 |
<tax_calculation_rate_CZ_19>
|
| 806 |
<execute>1</execute>
|
| 807 |
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
|
@@ -812,26 +907,29 @@
|
|
| 812 |
<label>MwSt.</label>
|
| 813 |
<rate>19</rate>
|
| 814 |
</tax_calculation_rate_CZ_19>
|
| 815 |
-
|
|
|
|
| 816 |
<execute>1</execute>
|
| 817 |
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 818 |
<tax_country_id>CZ</tax_country_id>
|
| 819 |
<tax_region_id>0</tax_region_id>
|
| 820 |
<tax_postcode>*</tax_postcode>
|
| 821 |
-
<code>CZ
|
| 822 |
-
<label>
|
| 823 |
-
<rate>
|
| 824 |
-
</
|
| 825 |
-
|
|
|
|
| 826 |
<execute>1</execute>
|
| 827 |
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 828 |
<tax_country_id>CZ</tax_country_id>
|
| 829 |
<tax_region_id>0</tax_region_id>
|
| 830 |
<tax_postcode>*</tax_postcode>
|
| 831 |
-
<code>CZ
|
| 832 |
-
<label>
|
| 833 |
-
<rate>
|
| 834 |
-
</
|
|
|
|
| 835 |
<tax_calculation_rate_HU_19>
|
| 836 |
<execute>1</execute>
|
| 837 |
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
|
@@ -842,26 +940,29 @@
|
|
| 842 |
<label>MwSt.</label>
|
| 843 |
<rate>19</rate>
|
| 844 |
</tax_calculation_rate_HU_19>
|
| 845 |
-
|
|
|
|
| 846 |
<execute>1</execute>
|
| 847 |
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 848 |
<tax_country_id>HU</tax_country_id>
|
| 849 |
<tax_region_id>0</tax_region_id>
|
| 850 |
<tax_postcode>*</tax_postcode>
|
| 851 |
-
<code>HU
|
| 852 |
-
<label>
|
| 853 |
-
<rate>
|
| 854 |
-
</
|
| 855 |
-
|
|
|
|
| 856 |
<execute>1</execute>
|
| 857 |
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 858 |
<tax_country_id>HU</tax_country_id>
|
| 859 |
<tax_region_id>0</tax_region_id>
|
| 860 |
<tax_postcode>*</tax_postcode>
|
| 861 |
-
<code>HU
|
| 862 |
-
<label>
|
| 863 |
-
<rate>
|
| 864 |
-
</
|
|
|
|
| 865 |
<tax_calculation_rate_GB_19>
|
| 866 |
<execute>1</execute>
|
| 867 |
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
|
@@ -872,26 +973,29 @@
|
|
| 872 |
<label>MwSt.</label>
|
| 873 |
<rate>19</rate>
|
| 874 |
</tax_calculation_rate_GB_19>
|
| 875 |
-
|
|
|
|
| 876 |
<execute>1</execute>
|
| 877 |
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 878 |
<tax_country_id>GB</tax_country_id>
|
| 879 |
<tax_region_id>0</tax_region_id>
|
| 880 |
<tax_postcode>*</tax_postcode>
|
| 881 |
-
<code>GB
|
| 882 |
-
<label>
|
| 883 |
-
<rate>
|
| 884 |
-
</
|
| 885 |
-
|
|
|
|
| 886 |
<execute>1</execute>
|
| 887 |
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 888 |
<tax_country_id>GB</tax_country_id>
|
| 889 |
<tax_region_id>0</tax_region_id>
|
| 890 |
<tax_postcode>*</tax_postcode>
|
| 891 |
-
<code>GB
|
| 892 |
-
<label>
|
| 893 |
-
<rate>
|
| 894 |
-
</
|
|
|
|
| 895 |
<tax_calculation_rate_CY_19>
|
| 896 |
<execute>1</execute>
|
| 897 |
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
|
@@ -902,38 +1006,43 @@
|
|
| 902 |
<label>MwSt.</label>
|
| 903 |
<rate>19</rate>
|
| 904 |
</tax_calculation_rate_CY_19>
|
| 905 |
-
|
|
|
|
| 906 |
<execute>1</execute>
|
| 907 |
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 908 |
<tax_country_id>CY</tax_country_id>
|
| 909 |
<tax_region_id>0</tax_region_id>
|
| 910 |
<tax_postcode>*</tax_postcode>
|
| 911 |
-
<code>CY
|
| 912 |
-
<label>
|
| 913 |
-
<rate>
|
| 914 |
-
</
|
| 915 |
-
|
|
|
|
| 916 |
<execute>1</execute>
|
| 917 |
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 918 |
<tax_country_id>CY</tax_country_id>
|
| 919 |
<tax_region_id>0</tax_region_id>
|
| 920 |
<tax_postcode>*</tax_postcode>
|
| 921 |
-
<code>CY
|
| 922 |
-
<label>
|
| 923 |
-
<rate>
|
| 924 |
-
</
|
| 925 |
</default>
|
|
|
|
| 926 |
</tax_calculation_rates>
|
| 927 |
|
| 928 |
<tax_calculations>
|
| 929 |
<default>
|
| 930 |
-
|
|
|
|
| 931 |
<execute>1</execute>
|
| 932 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 933 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 934 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 935 |
<product_tax_class_id>1</product_tax_class_id>
|
| 936 |
-
</
|
|
|
|
| 937 |
<tax_calculation_DE_19_companies>
|
| 938 |
<execute>1</execute>
|
| 939 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
|
@@ -941,613 +1050,2615 @@
|
|
| 941 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 942 |
<product_tax_class_id>1</product_tax_class_id>
|
| 943 |
</tax_calculation_DE_19_companies>
|
| 944 |
-
|
|
|
|
| 945 |
<execute>1</execute>
|
| 946 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 947 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 948 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 949 |
<product_tax_class_id>4</product_tax_class_id>
|
| 950 |
-
</
|
| 951 |
-
|
|
|
|
| 952 |
<execute>1</execute>
|
| 953 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 954 |
-
<tax_calculation_rule_id>
|
| 955 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 956 |
<product_tax_class_id>4</product_tax_class_id>
|
| 957 |
-
</
|
| 958 |
-
|
|
|
|
| 959 |
<execute>1</execute>
|
| 960 |
-
<tax_calculation_rate_id>
|
| 961 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 962 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 963 |
<product_tax_class_id>2</product_tax_class_id>
|
| 964 |
-
</
|
|
|
|
| 965 |
<tax_calculation_DE_7_companies>
|
| 966 |
<execute>1</execute>
|
| 967 |
-
<tax_calculation_rate_id>
|
| 968 |
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 969 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 970 |
<product_tax_class_id>2</product_tax_class_id>
|
| 971 |
</tax_calculation_DE_7_companies>
|
| 972 |
-
|
|
|
|
| 973 |
<execute>1</execute>
|
| 974 |
-
<tax_calculation_rate_id>
|
| 975 |
-
<tax_calculation_rule_id>
|
| 976 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 977 |
<product_tax_class_id>1</product_tax_class_id>
|
| 978 |
-
</
|
| 979 |
-
|
|
|
|
| 980 |
<execute>1</execute>
|
| 981 |
-
<tax_calculation_rate_id>
|
| 982 |
-
<tax_calculation_rule_id>
|
| 983 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 984 |
<product_tax_class_id>4</product_tax_class_id>
|
| 985 |
-
</
|
| 986 |
-
|
|
|
|
| 987 |
<execute>1</execute>
|
| 988 |
-
<tax_calculation_rate_id>
|
| 989 |
-
<tax_calculation_rule_id>
|
| 990 |
-
<customer_tax_class_id>
|
| 991 |
-
<product_tax_class_id>
|
| 992 |
-
</
|
| 993 |
-
|
|
|
|
| 994 |
<execute>1</execute>
|
| 995 |
-
<tax_calculation_rate_id>
|
| 996 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 997 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 998 |
<product_tax_class_id>1</product_tax_class_id>
|
| 999 |
-
</
|
| 1000 |
-
|
|
|
|
| 1001 |
<execute>1</execute>
|
| 1002 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1003 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1004 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1005 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1006 |
-
</
|
| 1007 |
-
|
|
|
|
| 1008 |
<execute>1</execute>
|
| 1009 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1010 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1011 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1012 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1013 |
-
</
|
| 1014 |
-
|
|
|
|
| 1015 |
<execute>1</execute>
|
| 1016 |
-
<tax_calculation_rate_id>
|
| 1017 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1018 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1019 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1020 |
-
</
|
| 1021 |
-
|
|
|
|
| 1022 |
<execute>1</execute>
|
| 1023 |
-
<tax_calculation_rate_id>
|
| 1024 |
-
<tax_calculation_rule_id>
|
| 1025 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1026 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1027 |
-
</
|
| 1028 |
-
|
|
|
|
| 1029 |
<execute>1</execute>
|
| 1030 |
-
<tax_calculation_rate_id>
|
| 1031 |
-
<tax_calculation_rule_id>
|
| 1032 |
-
<customer_tax_class_id>
|
| 1033 |
-
<product_tax_class_id>
|
| 1034 |
-
</
|
| 1035 |
-
|
|
|
|
| 1036 |
<execute>1</execute>
|
| 1037 |
-
<tax_calculation_rate_id>
|
| 1038 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1039 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1040 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1041 |
-
</
|
| 1042 |
-
|
|
|
|
| 1043 |
<execute>1</execute>
|
| 1044 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1045 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1046 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1047 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1048 |
-
</
|
| 1049 |
-
|
|
|
|
| 1050 |
<execute>1</execute>
|
| 1051 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1052 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1053 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1054 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1055 |
-
</
|
| 1056 |
-
|
|
|
|
| 1057 |
<execute>1</execute>
|
| 1058 |
-
<tax_calculation_rate_id>
|
| 1059 |
-
<tax_calculation_rule_id>
|
| 1060 |
-
<customer_tax_class_id>
|
| 1061 |
-
<product_tax_class_id>
|
| 1062 |
-
</
|
| 1063 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1064 |
<execute>1</execute>
|
| 1065 |
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 1066 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1067 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1068 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1069 |
-
</
|
| 1070 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1071 |
<execute>1</execute>
|
| 1072 |
-
<tax_calculation_rate_id>
|
| 1073 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1074 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1075 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1076 |
-
</
|
| 1077 |
-
|
|
|
|
| 1078 |
<execute>1</execute>
|
| 1079 |
-
<tax_calculation_rate_id>
|
| 1080 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1081 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1082 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1083 |
-
</
|
| 1084 |
-
|
|
|
|
| 1085 |
<execute>1</execute>
|
| 1086 |
-
<tax_calculation_rate_id>
|
| 1087 |
-
<tax_calculation_rule_id>
|
| 1088 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1089 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1090 |
-
</
|
| 1091 |
-
|
|
|
|
| 1092 |
<execute>1</execute>
|
| 1093 |
-
<tax_calculation_rate_id>
|
| 1094 |
-
<tax_calculation_rule_id>
|
| 1095 |
-
<customer_tax_class_id>
|
| 1096 |
-
<product_tax_class_id>
|
| 1097 |
-
</
|
| 1098 |
-
|
|
|
|
| 1099 |
<execute>1</execute>
|
| 1100 |
-
<tax_calculation_rate_id>
|
| 1101 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1102 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1103 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1104 |
-
</
|
| 1105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1106 |
<execute>1</execute>
|
| 1107 |
-
<tax_calculation_rate_id>
|
| 1108 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1109 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1110 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1111 |
-
</
|
| 1112 |
-
|
|
|
|
| 1113 |
<execute>1</execute>
|
| 1114 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1115 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1116 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1117 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1118 |
-
</
|
| 1119 |
-
|
|
|
|
| 1120 |
<execute>1</execute>
|
| 1121 |
-
<tax_calculation_rate_id>
|
| 1122 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1123 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1124 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1125 |
-
</
|
| 1126 |
-
|
|
|
|
| 1127 |
<execute>1</execute>
|
| 1128 |
-
<tax_calculation_rate_id>
|
| 1129 |
-
<tax_calculation_rule_id>
|
| 1130 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1131 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1132 |
-
</
|
| 1133 |
-
|
|
|
|
| 1134 |
<execute>1</execute>
|
| 1135 |
-
<tax_calculation_rate_id>
|
| 1136 |
-
<tax_calculation_rule_id>
|
| 1137 |
-
<customer_tax_class_id>
|
| 1138 |
-
<product_tax_class_id>
|
| 1139 |
-
</
|
| 1140 |
-
|
|
|
|
| 1141 |
<execute>1</execute>
|
| 1142 |
-
<tax_calculation_rate_id>
|
| 1143 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1144 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1145 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1146 |
-
</
|
| 1147 |
-
|
|
|
|
| 1148 |
<execute>1</execute>
|
| 1149 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1150 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1151 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1152 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1153 |
-
</
|
| 1154 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1155 |
<execute>1</execute>
|
| 1156 |
-
<tax_calculation_rate_id>
|
| 1157 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1158 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1159 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1160 |
-
</
|
| 1161 |
-
|
|
|
|
| 1162 |
<execute>1</execute>
|
| 1163 |
-
<tax_calculation_rate_id>
|
| 1164 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1165 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1166 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1167 |
-
</
|
| 1168 |
-
|
|
|
|
| 1169 |
<execute>1</execute>
|
| 1170 |
-
<tax_calculation_rate_id>
|
| 1171 |
-
<tax_calculation_rule_id>
|
| 1172 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1173 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1174 |
-
</
|
| 1175 |
-
|
|
|
|
| 1176 |
<execute>1</execute>
|
| 1177 |
-
<tax_calculation_rate_id>
|
| 1178 |
-
<tax_calculation_rule_id>
|
| 1179 |
-
<customer_tax_class_id>
|
| 1180 |
-
<product_tax_class_id>
|
| 1181 |
-
</
|
| 1182 |
-
|
|
|
|
| 1183 |
<execute>1</execute>
|
| 1184 |
-
<tax_calculation_rate_id>
|
| 1185 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1186 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1187 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1188 |
-
</
|
| 1189 |
-
|
|
|
|
| 1190 |
<execute>1</execute>
|
| 1191 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1192 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1193 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1194 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1195 |
-
</
|
| 1196 |
-
|
|
|
|
| 1197 |
<execute>1</execute>
|
| 1198 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1199 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1200 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1201 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1202 |
-
</
|
| 1203 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1204 |
<execute>1</execute>
|
| 1205 |
-
<tax_calculation_rate_id>
|
| 1206 |
-
<tax_calculation_rule_id>
|
| 1207 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1208 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1209 |
-
</
|
| 1210 |
-
|
|
|
|
| 1211 |
<execute>1</execute>
|
| 1212 |
-
<tax_calculation_rate_id>
|
| 1213 |
-
<tax_calculation_rule_id>
|
| 1214 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1215 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1216 |
-
</
|
| 1217 |
-
|
|
|
|
| 1218 |
<execute>1</execute>
|
| 1219 |
-
<tax_calculation_rate_id>
|
| 1220 |
-
<tax_calculation_rule_id>
|
| 1221 |
-
<customer_tax_class_id>
|
| 1222 |
-
<product_tax_class_id>
|
| 1223 |
-
</
|
| 1224 |
-
|
|
|
|
| 1225 |
<execute>1</execute>
|
| 1226 |
-
<tax_calculation_rate_id>
|
| 1227 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1228 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1229 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1230 |
-
</
|
| 1231 |
-
|
|
|
|
| 1232 |
<execute>1</execute>
|
| 1233 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1234 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1235 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1236 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1237 |
-
</
|
| 1238 |
-
|
|
|
|
| 1239 |
<execute>1</execute>
|
| 1240 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1241 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1242 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1243 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1244 |
-
</
|
| 1245 |
-
|
|
|
|
| 1246 |
<execute>1</execute>
|
| 1247 |
-
<tax_calculation_rate_id>
|
| 1248 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1249 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1250 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1251 |
-
</
|
| 1252 |
-
|
|
|
|
| 1253 |
<execute>1</execute>
|
| 1254 |
-
<tax_calculation_rate_id>
|
| 1255 |
-
<tax_calculation_rule_id>
|
| 1256 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1257 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1258 |
-
</
|
| 1259 |
-
|
|
|
|
| 1260 |
<execute>1</execute>
|
| 1261 |
-
<tax_calculation_rate_id>
|
| 1262 |
-
<tax_calculation_rule_id>
|
| 1263 |
-
<customer_tax_class_id>
|
| 1264 |
-
<product_tax_class_id>
|
| 1265 |
-
</
|
| 1266 |
-
|
|
|
|
| 1267 |
<execute>1</execute>
|
| 1268 |
-
<tax_calculation_rate_id>
|
| 1269 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1270 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1271 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1272 |
-
</
|
| 1273 |
-
|
|
|
|
| 1274 |
<execute>1</execute>
|
| 1275 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1276 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1277 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1278 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1279 |
-
</
|
| 1280 |
-
|
| 1281 |
-
|
| 1282 |
-
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 1283 |
-
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1284 |
-
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1285 |
-
<product_tax_class_id>2</product_tax_class_id>
|
| 1286 |
-
</tax_calculation_AT_7>
|
| 1287 |
-
<tax_calculation_PL_19>
|
| 1288 |
-
<execute>1</execute>
|
| 1289 |
-
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 1290 |
-
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1291 |
-
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1292 |
-
<product_tax_class_id>1</product_tax_class_id>
|
| 1293 |
-
</tax_calculation_PL_19>
|
| 1294 |
-
<tax_calculation_PL_shipping>
|
| 1295 |
<execute>1</execute>
|
| 1296 |
-
<tax_calculation_rate_id>
|
| 1297 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1298 |
-
<customer_tax_class_id>
|
| 1299 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1300 |
-
</
|
| 1301 |
-
|
|
|
|
| 1302 |
<execute>1</execute>
|
| 1303 |
-
<tax_calculation_rate_id>
|
| 1304 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1305 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1306 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1307 |
-
</
|
| 1308 |
-
|
|
|
|
| 1309 |
<execute>1</execute>
|
| 1310 |
-
<tax_calculation_rate_id>
|
| 1311 |
-
<tax_calculation_rule_id>
|
| 1312 |
-
<customer_tax_class_id>
|
| 1313 |
-
<product_tax_class_id>
|
| 1314 |
-
</
|
| 1315 |
-
|
|
|
|
| 1316 |
<execute>1</execute>
|
| 1317 |
-
<tax_calculation_rate_id>
|
| 1318 |
-
<tax_calculation_rule_id>
|
| 1319 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1320 |
-
<product_tax_class_id>
|
| 1321 |
-
</
|
| 1322 |
-
|
|
|
|
| 1323 |
<execute>1</execute>
|
| 1324 |
-
<tax_calculation_rate_id>
|
| 1325 |
-
<tax_calculation_rule_id>
|
| 1326 |
-
<customer_tax_class_id>
|
| 1327 |
-
<product_tax_class_id>
|
| 1328 |
-
</
|
| 1329 |
-
|
|
|
|
| 1330 |
<execute>1</execute>
|
| 1331 |
-
<tax_calculation_rate_id>
|
| 1332 |
-
<tax_calculation_rule_id>
|
| 1333 |
-
<customer_tax_class_id>
|
| 1334 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1335 |
-
</
|
| 1336 |
-
|
|
|
|
| 1337 |
<execute>1</execute>
|
| 1338 |
-
<tax_calculation_rate_id>
|
| 1339 |
-
<tax_calculation_rule_id>
|
| 1340 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1341 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1342 |
-
</
|
| 1343 |
-
|
|
|
|
| 1344 |
<execute>1</execute>
|
| 1345 |
-
<tax_calculation_rate_id>
|
| 1346 |
-
<tax_calculation_rule_id>
|
| 1347 |
-
<customer_tax_class_id>
|
| 1348 |
-
<product_tax_class_id>
|
| 1349 |
-
</
|
| 1350 |
-
|
|
|
|
| 1351 |
<execute>1</execute>
|
| 1352 |
-
<tax_calculation_rate_id>
|
| 1353 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1354 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1355 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1356 |
-
</
|
| 1357 |
-
|
|
|
|
| 1358 |
<execute>1</execute>
|
| 1359 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1360 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1361 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1362 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1363 |
-
</
|
| 1364 |
-
|
| 1365 |
-
|
| 1366 |
-
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 1367 |
-
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1368 |
-
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1369 |
-
<product_tax_class_id>2</product_tax_class_id>
|
| 1370 |
-
</tax_calculation_SE_7>
|
| 1371 |
-
<tax_calculation_SK_19>
|
| 1372 |
-
<execute>1</execute>
|
| 1373 |
-
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 1374 |
-
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1375 |
-
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1376 |
-
<product_tax_class_id>1</product_tax_class_id>
|
| 1377 |
-
</tax_calculation_SK_19>
|
| 1378 |
-
<tax_calculation_SK_shipping>
|
| 1379 |
<execute>1</execute>
|
| 1380 |
-
<tax_calculation_rate_id>
|
| 1381 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1382 |
-
<customer_tax_class_id>
|
| 1383 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1384 |
-
</
|
| 1385 |
-
|
|
|
|
| 1386 |
<execute>1</execute>
|
| 1387 |
-
<tax_calculation_rate_id>
|
| 1388 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1389 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1390 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1391 |
-
</
|
| 1392 |
-
|
|
|
|
| 1393 |
<execute>1</execute>
|
| 1394 |
-
<tax_calculation_rate_id>
|
| 1395 |
-
<tax_calculation_rule_id>
|
| 1396 |
-
<customer_tax_class_id>
|
| 1397 |
-
<product_tax_class_id>
|
| 1398 |
-
</
|
| 1399 |
-
|
|
|
|
| 1400 |
<execute>1</execute>
|
| 1401 |
-
<tax_calculation_rate_id>
|
| 1402 |
-
<tax_calculation_rule_id>
|
| 1403 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1404 |
-
<product_tax_class_id>
|
| 1405 |
-
</
|
| 1406 |
-
|
|
|
|
| 1407 |
<execute>1</execute>
|
| 1408 |
-
<tax_calculation_rate_id>
|
| 1409 |
-
<tax_calculation_rule_id>
|
| 1410 |
-
<customer_tax_class_id>
|
| 1411 |
-
<product_tax_class_id>
|
| 1412 |
-
</
|
| 1413 |
-
|
|
|
|
| 1414 |
<execute>1</execute>
|
| 1415 |
-
<tax_calculation_rate_id>
|
| 1416 |
-
<tax_calculation_rule_id>
|
| 1417 |
-
<customer_tax_class_id>
|
| 1418 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1419 |
-
</
|
| 1420 |
-
|
|
|
|
| 1421 |
<execute>1</execute>
|
| 1422 |
-
<tax_calculation_rate_id>
|
| 1423 |
-
<tax_calculation_rule_id>
|
| 1424 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1425 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1426 |
-
</
|
| 1427 |
-
|
|
|
|
| 1428 |
<execute>1</execute>
|
| 1429 |
-
<tax_calculation_rate_id>
|
| 1430 |
-
<tax_calculation_rule_id>
|
| 1431 |
-
<customer_tax_class_id>
|
| 1432 |
-
<product_tax_class_id>
|
| 1433 |
-
</
|
| 1434 |
-
|
|
|
|
| 1435 |
<execute>1</execute>
|
| 1436 |
-
<tax_calculation_rate_id>
|
| 1437 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1438 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1439 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1440 |
-
</
|
| 1441 |
-
|
|
|
|
| 1442 |
<execute>1</execute>
|
| 1443 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1444 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1445 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1446 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1447 |
-
</
|
| 1448 |
-
|
|
|
|
| 1449 |
<execute>1</execute>
|
| 1450 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1451 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1452 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1453 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1454 |
-
</
|
| 1455 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1456 |
<execute>1</execute>
|
| 1457 |
-
<tax_calculation_rate_id>
|
| 1458 |
-
<tax_calculation_rule_id>
|
| 1459 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1460 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1461 |
-
</
|
| 1462 |
-
|
|
|
|
| 1463 |
<execute>1</execute>
|
| 1464 |
-
<tax_calculation_rate_id>
|
| 1465 |
-
<tax_calculation_rule_id>
|
| 1466 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1467 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1468 |
-
</
|
| 1469 |
-
|
|
|
|
| 1470 |
<execute>1</execute>
|
| 1471 |
-
<tax_calculation_rate_id>
|
| 1472 |
-
<tax_calculation_rule_id>
|
| 1473 |
-
<customer_tax_class_id>
|
| 1474 |
-
<product_tax_class_id>
|
| 1475 |
-
</
|
| 1476 |
-
|
|
|
|
| 1477 |
<execute>1</execute>
|
| 1478 |
-
<tax_calculation_rate_id>
|
| 1479 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1480 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1481 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1482 |
-
</
|
| 1483 |
-
|
|
|
|
| 1484 |
<execute>1</execute>
|
| 1485 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1486 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1487 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1488 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1489 |
-
</
|
| 1490 |
-
|
|
|
|
| 1491 |
<execute>1</execute>
|
| 1492 |
-
<tax_calculation_rate_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1493 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1494 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1495 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1496 |
-
</
|
| 1497 |
-
|
|
|
|
| 1498 |
<execute>1</execute>
|
| 1499 |
-
<tax_calculation_rate_id>
|
| 1500 |
-
<tax_calculation_rule_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1501 |
<customer_tax_class_id>3</customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1502 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1503 |
-
</
|
| 1504 |
-
|
|
|
|
| 1505 |
<execute>1</execute>
|
| 1506 |
-
<tax_calculation_rate_id>
|
| 1507 |
-
<tax_calculation_rule_id>
|
| 1508 |
-
<customer_tax_class_id>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1509 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1510 |
-
</
|
| 1511 |
-
|
|
|
|
| 1512 |
<execute>1</execute>
|
| 1513 |
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 1514 |
-
<tax_calculation_rule_id>
|
| 1515 |
-
<customer_tax_class_id>
|
| 1516 |
-
<product_tax_class_id>
|
| 1517 |
-
</
|
| 1518 |
</default>
|
| 1519 |
</tax_calculations>
|
| 1520 |
<tax_config>
|
| 1521 |
-
|
| 1522 |
-
|
| 1523 |
-
|
| 1524 |
-
|
| 1525 |
-
|
| 1526 |
-
|
| 1527 |
-
|
| 1528 |
-
|
| 1529 |
-
|
| 1530 |
-
|
| 1531 |
-
|
| 1532 |
-
|
| 1533 |
-
|
| 1534 |
-
|
| 1535 |
-
|
| 1536 |
-
|
| 1537 |
-
|
| 1538 |
-
|
| 1539 |
-
|
| 1540 |
-
|
| 1541 |
-
|
| 1542 |
-
|
| 1543 |
-
|
| 1544 |
-
|
| 1545 |
-
|
| 1546 |
-
|
| 1547 |
-
|
| 1548 |
-
|
| 1549 |
-
|
| 1550 |
-
|
| 1551 |
</tax_config>
|
| 1552 |
</germansetup>
|
| 1553 |
</default>
|
| 30 |
<products_19_percent>
|
| 31 |
<execute>1</execute>
|
| 32 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 33 |
+
<code>Endkunden kaufen vollbesteuerte Artikel</code>
|
| 34 |
<priority>1</priority>
|
| 35 |
<position>0</position>
|
| 36 |
</products_19_percent>
|
| 37 |
<products_7_percent>
|
| 38 |
<execute>1</execute>
|
| 39 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 40 |
+
<code>Endkunden kaufen ermäßigtbesteuerte Artikel</code>
|
| 41 |
<priority>2</priority>
|
| 42 |
<position>0</position>
|
| 43 |
</products_7_percent>
|
| 44 |
+
|
| 45 |
+
<!-- Firmen -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
<products_19_percent_companies>
|
| 47 |
<execute>1</execute>
|
| 48 |
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 49 |
+
<code>USt.-pflichtige Firmen kaufen vollbesteuerte Artikel</code>
|
| 50 |
<priority>1</priority>
|
| 51 |
<position>0</position>
|
| 52 |
</products_19_percent_companies>
|
| 53 |
<products_7_percent_companies>
|
| 54 |
<execute>1</execute>
|
| 55 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 56 |
+
<code>USt.-pflichtige Firmen kaufen ermäßigtbesteuerte Artikel</code>
|
| 57 |
<priority>2</priority>
|
| 58 |
<position>0</position>
|
| 59 |
</products_7_percent_companies>
|
| 60 |
+
<products_companies_vat>
|
| 61 |
<execute>1</execute>
|
| 62 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 63 |
+
<code>USt.-befreite Firmen kaufen voll- und ermäßigtbesteuerte Artikel</code>
|
| 64 |
+
<priority>1</priority>
|
| 65 |
+
<position>0</position>
|
| 66 |
+
</products_companies_vat>
|
| 67 |
+
|
| 68 |
+
<!-- Versand -->
|
| 69 |
+
<shipping_19_percent>
|
| 70 |
+
<execute>1</execute>
|
| 71 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 72 |
+
<code>vollbesteuerter Versand</code>
|
| 73 |
+
<priority>3</priority>
|
| 74 |
+
<position>0</position>
|
| 75 |
+
</shipping_19_percent>
|
| 76 |
+
<shipping_7_percent>
|
| 77 |
+
<execute>1</execute>
|
| 78 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 79 |
+
<code>ermäßigtbesteuerter Versand</code>
|
| 80 |
<priority>3</priority>
|
| 81 |
<position>0</position>
|
| 82 |
+
</shipping_7_percent>
|
| 83 |
+
|
| 84 |
</default>
|
| 85 |
</tax_calculation_rules>
|
| 86 |
|
| 89 |
<products_19_percent>
|
| 90 |
<execute>1</execute>
|
| 91 |
<class_id>1</class_id>
|
| 92 |
+
<class_name>Vollbesteuerte Artikel</class_name>
|
| 93 |
<class_type>PRODUCT</class_type>
|
| 94 |
<default>1</default>
|
| 95 |
</products_19_percent>
|
| 96 |
<products_7_percent>
|
| 97 |
<execute>1</execute>
|
| 98 |
<class_id>2</class_id>
|
| 99 |
+
<class_name>Ermäßigtbesteuerte Artikel</class_name>
|
| 100 |
<class_type>PRODUCT</class_type>
|
| 101 |
<default>0</default>
|
| 102 |
</products_7_percent>
|
| 106 |
<class_name>Endkunden</class_name>
|
| 107 |
<class_type>CUSTOMER</class_type>
|
| 108 |
</customer_customers>
|
| 109 |
+
<shipping_19_percent>
|
| 110 |
<execute>1</execute>
|
| 111 |
<class_id>4</class_id>
|
| 112 |
+
<class_name>Vollbesteuerter Versand</class_name>
|
| 113 |
+
<class_type>PRODUCT</class_type>
|
| 114 |
+
<default>0</default>
|
| 115 |
+
</shipping_19_percent>
|
| 116 |
+
<shipping_7_percent>
|
| 117 |
+
<execute>1</execute>
|
| 118 |
+
<class_id>7</class_id>
|
| 119 |
+
<class_name>Ermäßigtbesteuerter Versand</class_name>
|
| 120 |
<class_type>PRODUCT</class_type>
|
| 121 |
<default>0</default>
|
| 122 |
+
</shipping_7_percent>
|
| 123 |
<customer_companies>
|
| 124 |
<execute>1</execute>
|
| 125 |
<class_id>5</class_id>
|
| 126 |
+
<class_name>USt.-pflichtige Unternehmen</class_name>
|
| 127 |
<class_type>CUSTOMER</class_type>
|
| 128 |
</customer_companies>
|
| 129 |
+
<customer_companies_vat>
|
| 130 |
+
<execute>1</execute>
|
| 131 |
+
<class_id>6</class_id>
|
| 132 |
+
<class_name>USt.-befreite Unternehmen</class_name>
|
| 133 |
+
<class_type>CUSTOMER</class_type>
|
| 134 |
+
</customer_companies_vat>
|
| 135 |
</default>
|
| 136 |
</tax_classes>
|
| 137 |
|
| 138 |
<tax_calculation_rates>
|
| 139 |
<default>
|
| 140 |
+
|
| 141 |
<tax_calculation_rate_DE_19>
|
| 142 |
<execute>1</execute>
|
| 143 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 148 |
<label>MwSt.</label>
|
| 149 |
<rate>19</rate>
|
| 150 |
</tax_calculation_rate_DE_19>
|
| 151 |
+
|
| 152 |
+
<tax_calculation_rate_DE_7>
|
| 153 |
<execute>1</execute>
|
| 154 |
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 155 |
<tax_country_id>DE</tax_country_id>
|
| 156 |
<tax_region_id>0</tax_region_id>
|
| 157 |
<tax_postcode>*</tax_postcode>
|
| 158 |
+
<code>DE 7%</code>
|
| 159 |
+
<label>reduzierte MwSt.</label>
|
| 160 |
+
<rate>7</rate>
|
| 161 |
+
</tax_calculation_rate_DE_7>
|
| 162 |
+
|
| 163 |
+
<tax_calculation_rate_DE_0>
|
| 164 |
<execute>1</execute>
|
| 165 |
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 166 |
<tax_country_id>DE</tax_country_id>
|
| 167 |
<tax_region_id>0</tax_region_id>
|
| 168 |
<tax_postcode>*</tax_postcode>
|
| 169 |
+
<code>DE 0%</code>
|
| 170 |
+
<label>ohne MwSt.</label>
|
| 171 |
+
<rate>0</rate>
|
| 172 |
+
</tax_calculation_rate_DE_0>
|
| 173 |
+
|
| 174 |
<tax_calculation_rate_BE_19>
|
| 175 |
<execute>1</execute>
|
| 176 |
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
| 181 |
<label>MwSt.</label>
|
| 182 |
<rate>19</rate>
|
| 183 |
</tax_calculation_rate_BE_19>
|
| 184 |
+
|
| 185 |
+
<tax_calculation_rate_BE_7>
|
| 186 |
<execute>1</execute>
|
| 187 |
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 188 |
<tax_country_id>BE</tax_country_id>
|
| 189 |
<tax_region_id>0</tax_region_id>
|
| 190 |
<tax_postcode>*</tax_postcode>
|
| 191 |
+
<code>BE 7%</code>
|
| 192 |
+
<label>reduzierte MwSt.</label>
|
| 193 |
+
<rate>7</rate>
|
| 194 |
+
</tax_calculation_rate_BE_7>
|
| 195 |
+
|
| 196 |
+
<tax_calculation_rate_BE_0>
|
| 197 |
<execute>1</execute>
|
| 198 |
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 199 |
<tax_country_id>BE</tax_country_id>
|
| 200 |
<tax_region_id>0</tax_region_id>
|
| 201 |
<tax_postcode>*</tax_postcode>
|
| 202 |
+
<code>BE 0%</code>
|
| 203 |
+
<label>ohne MwSt.</label>
|
| 204 |
+
<rate>0</rate>
|
| 205 |
+
</tax_calculation_rate_BE_0>
|
| 206 |
+
|
| 207 |
<tax_calculation_rate_BG_19>
|
| 208 |
<execute>1</execute>
|
| 209 |
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
| 214 |
<label>MwSt.</label>
|
| 215 |
<rate>19</rate>
|
| 216 |
</tax_calculation_rate_BG_19>
|
| 217 |
+
|
| 218 |
+
<tax_calculation_rate_BG_7>
|
| 219 |
<execute>1</execute>
|
| 220 |
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 221 |
<tax_country_id>BG</tax_country_id>
|
| 222 |
<tax_region_id>0</tax_region_id>
|
| 223 |
<tax_postcode>*</tax_postcode>
|
| 224 |
+
<code>BG 7%</code>
|
| 225 |
+
<label>reduzierte MwSt.</label>
|
| 226 |
+
<rate>7</rate>
|
| 227 |
+
</tax_calculation_rate_BG_7>
|
| 228 |
+
|
| 229 |
+
<tax_calculation_rate_BG_0>
|
| 230 |
<execute>1</execute>
|
| 231 |
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 232 |
<tax_country_id>BG</tax_country_id>
|
| 233 |
<tax_region_id>0</tax_region_id>
|
| 234 |
<tax_postcode>*</tax_postcode>
|
| 235 |
+
<code>BG 0%</code>
|
| 236 |
+
<label>ohne MwSt.</label>
|
| 237 |
+
<rate>0</rate>
|
| 238 |
+
</tax_calculation_rate_BG_0>
|
| 239 |
+
|
| 240 |
<tax_calculation_rate_DK_19>
|
| 241 |
<execute>1</execute>
|
| 242 |
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
| 247 |
<label>MwSt.</label>
|
| 248 |
<rate>19</rate>
|
| 249 |
</tax_calculation_rate_DK_19>
|
| 250 |
+
|
| 251 |
+
<tax_calculation_rate_DK_7>
|
| 252 |
<execute>1</execute>
|
| 253 |
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 254 |
<tax_country_id>DK</tax_country_id>
|
| 255 |
<tax_region_id>0</tax_region_id>
|
| 256 |
<tax_postcode>*</tax_postcode>
|
| 257 |
+
<code>DK 7%</code>
|
| 258 |
+
<label>reduzierte MwSt.</label>
|
| 259 |
+
<rate>7</rate>
|
| 260 |
+
</tax_calculation_rate_DK_7>
|
| 261 |
+
|
| 262 |
+
<tax_calculation_rate_DK_0>
|
| 263 |
<execute>1</execute>
|
| 264 |
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 265 |
<tax_country_id>DK</tax_country_id>
|
| 266 |
<tax_region_id>0</tax_region_id>
|
| 267 |
<tax_postcode>*</tax_postcode>
|
| 268 |
+
<code>DK 0%</code>
|
| 269 |
+
<label>ohne MwSt.</label>
|
| 270 |
+
<rate>0</rate>
|
| 271 |
+
</tax_calculation_rate_DK_0>
|
| 272 |
+
|
| 273 |
<tax_calculation_rate_EE_19>
|
| 274 |
<execute>1</execute>
|
| 275 |
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
| 280 |
<label>MwSt.</label>
|
| 281 |
<rate>19</rate>
|
| 282 |
</tax_calculation_rate_EE_19>
|
| 283 |
+
|
| 284 |
+
<tax_calculation_rate_EE_7>
|
| 285 |
<execute>1</execute>
|
| 286 |
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 287 |
<tax_country_id>EE</tax_country_id>
|
| 288 |
<tax_region_id>0</tax_region_id>
|
| 289 |
<tax_postcode>*</tax_postcode>
|
| 290 |
+
<code>EE 7%</code>
|
| 291 |
+
<label>reduzierte MwSt.</label>
|
| 292 |
+
<rate>7</rate>
|
| 293 |
+
</tax_calculation_rate_EE_7>
|
| 294 |
+
|
| 295 |
+
<tax_calculation_rate_EE_0>
|
| 296 |
<execute>1</execute>
|
| 297 |
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 298 |
<tax_country_id>EE</tax_country_id>
|
| 299 |
<tax_region_id>0</tax_region_id>
|
| 300 |
<tax_postcode>*</tax_postcode>
|
| 301 |
+
<code>EE 0%</code>
|
| 302 |
+
<label>ohne MwSt.</label>
|
| 303 |
+
<rate>0</rate>
|
| 304 |
+
</tax_calculation_rate_EE_0>
|
| 305 |
+
|
| 306 |
<tax_calculation_rate_FI_19>
|
| 307 |
<execute>1</execute>
|
| 308 |
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 313 |
<label>MwSt.</label>
|
| 314 |
<rate>19</rate>
|
| 315 |
</tax_calculation_rate_FI_19>
|
| 316 |
+
|
| 317 |
+
<tax_calculation_rate_FI_7>
|
| 318 |
<execute>1</execute>
|
| 319 |
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 320 |
<tax_country_id>FI</tax_country_id>
|
| 321 |
<tax_region_id>0</tax_region_id>
|
| 322 |
<tax_postcode>*</tax_postcode>
|
| 323 |
+
<code>FI 7%</code>
|
| 324 |
+
<label>reduzierte MwSt.</label>
|
| 325 |
+
<rate>7</rate>
|
| 326 |
+
</tax_calculation_rate_FI_7>
|
| 327 |
+
|
| 328 |
+
<tax_calculation_rate_FI_0>
|
| 329 |
<execute>1</execute>
|
| 330 |
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 331 |
<tax_country_id>FI</tax_country_id>
|
| 332 |
<tax_region_id>0</tax_region_id>
|
| 333 |
<tax_postcode>*</tax_postcode>
|
| 334 |
+
<code>FI 0%</code>
|
| 335 |
+
<label>ohne MwSt.</label>
|
| 336 |
+
<rate>0</rate>
|
| 337 |
+
</tax_calculation_rate_FI_0>
|
| 338 |
+
|
| 339 |
<tax_calculation_rate_FR_19>
|
| 340 |
<execute>1</execute>
|
| 341 |
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
| 346 |
<label>MwSt.</label>
|
| 347 |
<rate>19</rate>
|
| 348 |
</tax_calculation_rate_FR_19>
|
| 349 |
+
|
| 350 |
+
<tax_calculation_rate_FR_7>
|
| 351 |
<execute>1</execute>
|
| 352 |
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 353 |
<tax_country_id>FR</tax_country_id>
|
| 354 |
<tax_region_id>0</tax_region_id>
|
| 355 |
<tax_postcode>*</tax_postcode>
|
| 356 |
+
<code>FR 7%</code>
|
| 357 |
+
<label>reduzierte MwSt.</label>
|
| 358 |
+
<rate>7</rate>
|
| 359 |
+
</tax_calculation_rate_FR_7>
|
| 360 |
+
|
| 361 |
+
<tax_calculation_rate_FR_0>
|
| 362 |
<execute>1</execute>
|
| 363 |
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 364 |
<tax_country_id>FR</tax_country_id>
|
| 365 |
<tax_region_id>0</tax_region_id>
|
| 366 |
<tax_postcode>*</tax_postcode>
|
| 367 |
+
<code>FR 0%</code>
|
| 368 |
+
<label>ohne MwSt.</label>
|
| 369 |
+
<rate>0</rate>
|
| 370 |
+
</tax_calculation_rate_FR_0>
|
| 371 |
+
|
| 372 |
<tax_calculation_rate_GR_19>
|
| 373 |
<execute>1</execute>
|
| 374 |
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
| 379 |
<label>MwSt.</label>
|
| 380 |
<rate>19</rate>
|
| 381 |
</tax_calculation_rate_GR_19>
|
| 382 |
+
|
| 383 |
+
<tax_calculation_rate_GR_7>
|
| 384 |
<execute>1</execute>
|
| 385 |
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 386 |
<tax_country_id>GR</tax_country_id>
|
| 387 |
<tax_region_id>0</tax_region_id>
|
| 388 |
<tax_postcode>*</tax_postcode>
|
| 389 |
+
<code>GR 7%</code>
|
| 390 |
+
<label>reduzierte MwSt.</label>
|
| 391 |
+
<rate>7</rate>
|
| 392 |
+
</tax_calculation_rate_GR_7>
|
| 393 |
+
|
| 394 |
+
<tax_calculation_rate_GR_0>
|
| 395 |
<execute>1</execute>
|
| 396 |
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 397 |
<tax_country_id>GR</tax_country_id>
|
| 398 |
<tax_region_id>0</tax_region_id>
|
| 399 |
<tax_postcode>*</tax_postcode>
|
| 400 |
+
<code>GR 0%</code>
|
| 401 |
+
<label>ohne MwSt.</label>
|
| 402 |
+
<rate>0</rate>
|
| 403 |
+
</tax_calculation_rate_GR_0>
|
| 404 |
+
|
| 405 |
<tax_calculation_rate_IE_19>
|
| 406 |
<execute>1</execute>
|
| 407 |
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
| 412 |
<label>MwSt.</label>
|
| 413 |
<rate>19</rate>
|
| 414 |
</tax_calculation_rate_IE_19>
|
| 415 |
+
|
| 416 |
+
<tax_calculation_rate_IE_7>
|
| 417 |
<execute>1</execute>
|
| 418 |
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 419 |
<tax_country_id>IE</tax_country_id>
|
| 420 |
<tax_region_id>0</tax_region_id>
|
| 421 |
<tax_postcode>*</tax_postcode>
|
| 422 |
+
<code>IE 7%</code>
|
| 423 |
+
<label>reduzierte MwSt.</label>
|
| 424 |
+
<rate>7</rate>
|
| 425 |
+
</tax_calculation_rate_IE_7>
|
| 426 |
+
|
| 427 |
+
<tax_calculation_rate_IE_0>
|
| 428 |
<execute>1</execute>
|
| 429 |
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 430 |
<tax_country_id>IE</tax_country_id>
|
| 431 |
<tax_region_id>0</tax_region_id>
|
| 432 |
<tax_postcode>*</tax_postcode>
|
| 433 |
+
<code>IE 0%</code>
|
| 434 |
+
<label>ohne MwSt.</label>
|
| 435 |
+
<rate>0</rate>
|
| 436 |
+
</tax_calculation_rate_IE_0>
|
| 437 |
+
|
| 438 |
<tax_calculation_rate_IT_19>
|
| 439 |
<execute>1</execute>
|
| 440 |
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
| 445 |
<label>MwSt.</label>
|
| 446 |
<rate>19</rate>
|
| 447 |
</tax_calculation_rate_IT_19>
|
| 448 |
+
|
| 449 |
+
<tax_calculation_rate_IT_7>
|
| 450 |
<execute>1</execute>
|
| 451 |
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 452 |
<tax_country_id>IT</tax_country_id>
|
| 453 |
<tax_region_id>0</tax_region_id>
|
| 454 |
<tax_postcode>*</tax_postcode>
|
| 455 |
+
<code>IT 7%</code>
|
| 456 |
+
<label>reduzierte MwSt.</label>
|
| 457 |
+
<rate>7</rate>
|
| 458 |
+
</tax_calculation_rate_IT_7>
|
| 459 |
+
|
| 460 |
+
<tax_calculation_rate_IT_0>
|
| 461 |
<execute>1</execute>
|
| 462 |
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 463 |
<tax_country_id>IT</tax_country_id>
|
| 464 |
<tax_region_id>0</tax_region_id>
|
| 465 |
<tax_postcode>*</tax_postcode>
|
| 466 |
+
<code>IT 0%</code>
|
| 467 |
+
<label>ohne MwSt.</label>
|
| 468 |
+
<rate>0</rate>
|
| 469 |
+
</tax_calculation_rate_IT_0>
|
| 470 |
+
|
| 471 |
<tax_calculation_rate_LV_19>
|
| 472 |
<execute>1</execute>
|
| 473 |
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
| 478 |
<label>MwSt.</label>
|
| 479 |
<rate>19</rate>
|
| 480 |
</tax_calculation_rate_LV_19>
|
| 481 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 482 |
<tax_calculation_rate_LV_7>
|
| 483 |
<execute>1</execute>
|
| 484 |
+
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 485 |
<tax_country_id>LV</tax_country_id>
|
| 486 |
<tax_region_id>0</tax_region_id>
|
| 487 |
<tax_postcode>*</tax_postcode>
|
| 489 |
<label>reduzierte MwSt.</label>
|
| 490 |
<rate>7</rate>
|
| 491 |
</tax_calculation_rate_LV_7>
|
| 492 |
+
|
| 493 |
+
<tax_calculation_rate_LV_0>
|
| 494 |
+
<execute>1</execute>
|
| 495 |
+
<tax_calculation_rate_id>35</tax_calculation_rate_id>
|
| 496 |
+
<tax_country_id>LV</tax_country_id>
|
| 497 |
+
<tax_region_id>0</tax_region_id>
|
| 498 |
+
<tax_postcode>*</tax_postcode>
|
| 499 |
+
<code>LV 0%</code>
|
| 500 |
+
<label>ohne MwSt.</label>
|
| 501 |
+
<rate>0</rate>
|
| 502 |
+
</tax_calculation_rate_LV_0>
|
| 503 |
+
|
| 504 |
<tax_calculation_rate_LT_19>
|
| 505 |
<execute>1</execute>
|
| 506 |
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
| 511 |
<label>MwSt.</label>
|
| 512 |
<rate>19</rate>
|
| 513 |
</tax_calculation_rate_LT_19>
|
| 514 |
+
|
| 515 |
+
<tax_calculation_rate_LT_7>
|
| 516 |
<execute>1</execute>
|
| 517 |
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 518 |
<tax_country_id>LT</tax_country_id>
|
| 519 |
<tax_region_id>0</tax_region_id>
|
| 520 |
<tax_postcode>*</tax_postcode>
|
| 521 |
+
<code>LT 7%</code>
|
| 522 |
+
<label>reduzierte MwSt.</label>
|
| 523 |
+
<rate>7</rate>
|
| 524 |
+
</tax_calculation_rate_LT_7>
|
| 525 |
+
|
| 526 |
+
<tax_calculation_rate_LT_0>
|
| 527 |
<execute>1</execute>
|
| 528 |
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 529 |
<tax_country_id>LT</tax_country_id>
|
| 530 |
<tax_region_id>0</tax_region_id>
|
| 531 |
<tax_postcode>*</tax_postcode>
|
| 532 |
+
<code>LT 0%</code>
|
| 533 |
+
<label>ohne MwSt.</label>
|
| 534 |
+
<rate>0</rate>
|
| 535 |
+
</tax_calculation_rate_LT_0>
|
| 536 |
+
|
| 537 |
<tax_calculation_rate_LU_19>
|
| 538 |
<execute>1</execute>
|
| 539 |
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
| 544 |
<label>MwSt.</label>
|
| 545 |
<rate>19</rate>
|
| 546 |
</tax_calculation_rate_LU_19>
|
| 547 |
+
|
| 548 |
+
<tax_calculation_rate_LU_7>
|
| 549 |
<execute>1</execute>
|
| 550 |
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 551 |
<tax_country_id>LU</tax_country_id>
|
| 552 |
<tax_region_id>0</tax_region_id>
|
| 553 |
<tax_postcode>*</tax_postcode>
|
| 554 |
+
<code>LU 7%</code>
|
| 555 |
+
<label>reduzierte MwSt.</label>
|
| 556 |
+
<rate>7</rate>
|
| 557 |
+
</tax_calculation_rate_LU_7>
|
| 558 |
+
|
| 559 |
+
<tax_calculation_rate_LU_0>
|
| 560 |
<execute>1</execute>
|
| 561 |
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 562 |
<tax_country_id>LU</tax_country_id>
|
| 563 |
<tax_region_id>0</tax_region_id>
|
| 564 |
<tax_postcode>*</tax_postcode>
|
| 565 |
+
<code>LU 0%</code>
|
| 566 |
+
<label>ohne MwSt.</label>
|
| 567 |
+
<rate>0</rate>
|
| 568 |
+
</tax_calculation_rate_LU_0>
|
| 569 |
+
|
| 570 |
<tax_calculation_rate_MT_19>
|
| 571 |
<execute>1</execute>
|
| 572 |
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
| 577 |
<label>MwSt.</label>
|
| 578 |
<rate>19</rate>
|
| 579 |
</tax_calculation_rate_MT_19>
|
| 580 |
+
|
| 581 |
+
<tax_calculation_rate_MT_7>
|
| 582 |
<execute>1</execute>
|
| 583 |
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 584 |
<tax_country_id>MT</tax_country_id>
|
| 585 |
<tax_region_id>0</tax_region_id>
|
| 586 |
<tax_postcode>*</tax_postcode>
|
| 587 |
+
<code>MT 7%</code>
|
| 588 |
+
<label>reduzierte MwSt.</label>
|
| 589 |
+
<rate>7</rate>
|
| 590 |
+
</tax_calculation_rate_MT_7>
|
| 591 |
+
|
| 592 |
+
<tax_calculation_rate_MT_0>
|
| 593 |
<execute>1</execute>
|
| 594 |
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 595 |
<tax_country_id>MT</tax_country_id>
|
| 596 |
<tax_region_id>0</tax_region_id>
|
| 597 |
<tax_postcode>*</tax_postcode>
|
| 598 |
+
<code>MT 0%</code>
|
| 599 |
+
<label>ohne MwSt.</label>
|
| 600 |
+
<rate>0</rate>
|
| 601 |
+
</tax_calculation_rate_MT_0>
|
| 602 |
+
|
| 603 |
<tax_calculation_rate_NL_19>
|
| 604 |
<execute>1</execute>
|
| 605 |
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
| 610 |
<label>MwSt.</label>
|
| 611 |
<rate>19</rate>
|
| 612 |
</tax_calculation_rate_NL_19>
|
| 613 |
+
|
| 614 |
+
<tax_calculation_rate_NL_7>
|
| 615 |
<execute>1</execute>
|
| 616 |
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 617 |
<tax_country_id>NL</tax_country_id>
|
| 618 |
<tax_region_id>0</tax_region_id>
|
| 619 |
<tax_postcode>*</tax_postcode>
|
| 620 |
+
<code>NL 7%</code>
|
| 621 |
+
<label>reduzierte MwSt.</label>
|
| 622 |
+
<rate>7</rate>
|
| 623 |
+
</tax_calculation_rate_NL_7>
|
| 624 |
+
|
| 625 |
+
<tax_calculation_rate_NL_0>
|
| 626 |
<execute>1</execute>
|
| 627 |
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 628 |
<tax_country_id>NL</tax_country_id>
|
| 629 |
<tax_region_id>0</tax_region_id>
|
| 630 |
<tax_postcode>*</tax_postcode>
|
| 631 |
+
<code>NL 0%</code>
|
| 632 |
+
<label>ohne MwSt.</label>
|
| 633 |
+
<rate>0</rate>
|
| 634 |
+
</tax_calculation_rate_NL_0>
|
| 635 |
+
|
| 636 |
<tax_calculation_rate_AT_19>
|
| 637 |
<execute>1</execute>
|
| 638 |
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
| 643 |
<label>MwSt.</label>
|
| 644 |
<rate>19</rate>
|
| 645 |
</tax_calculation_rate_AT_19>
|
| 646 |
+
|
| 647 |
+
<tax_calculation_rate_AT_7>
|
| 648 |
<execute>1</execute>
|
| 649 |
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 650 |
<tax_country_id>AT</tax_country_id>
|
| 651 |
<tax_region_id>0</tax_region_id>
|
| 652 |
<tax_postcode>*</tax_postcode>
|
| 653 |
+
<code>AT 7%</code>
|
| 654 |
+
<label>reduzierte MwSt.</label>
|
| 655 |
+
<rate>7</rate>
|
| 656 |
+
</tax_calculation_rate_AT_7>
|
| 657 |
+
|
| 658 |
+
<tax_calculation_rate_AT_0>
|
| 659 |
<execute>1</execute>
|
| 660 |
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 661 |
<tax_country_id>AT</tax_country_id>
|
| 662 |
<tax_region_id>0</tax_region_id>
|
| 663 |
<tax_postcode>*</tax_postcode>
|
| 664 |
+
<code>AT 0%</code>
|
| 665 |
+
<label>ohne MwSt.</label>
|
| 666 |
+
<rate>0</rate>
|
| 667 |
+
</tax_calculation_rate_AT_0>
|
| 668 |
+
|
| 669 |
<tax_calculation_rate_PL_19>
|
| 670 |
<execute>1</execute>
|
| 671 |
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 676 |
<label>MwSt.</label>
|
| 677 |
<rate>19</rate>
|
| 678 |
</tax_calculation_rate_PL_19>
|
| 679 |
+
|
| 680 |
+
<tax_calculation_rate_PL_7>
|
| 681 |
<execute>1</execute>
|
| 682 |
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 683 |
<tax_country_id>PL</tax_country_id>
|
| 684 |
<tax_region_id>0</tax_region_id>
|
| 685 |
<tax_postcode>*</tax_postcode>
|
| 686 |
+
<code>PL 7%</code>
|
| 687 |
+
<label>reduzierte MwSt.</label>
|
| 688 |
+
<rate>7</rate>
|
| 689 |
+
</tax_calculation_rate_PL_7>
|
| 690 |
+
|
| 691 |
+
<tax_calculation_rate_PL_0>
|
| 692 |
<execute>1</execute>
|
| 693 |
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 694 |
<tax_country_id>PL</tax_country_id>
|
| 695 |
<tax_region_id>0</tax_region_id>
|
| 696 |
<tax_postcode>*</tax_postcode>
|
| 697 |
+
<code>PL 0%</code>
|
| 698 |
+
<label>ohne MwSt.</label>
|
| 699 |
+
<rate>0</rate>
|
| 700 |
+
</tax_calculation_rate_PL_0>
|
| 701 |
+
|
| 702 |
<tax_calculation_rate_PT_19>
|
| 703 |
<execute>1</execute>
|
| 704 |
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
| 709 |
<label>MwSt.</label>
|
| 710 |
<rate>19</rate>
|
| 711 |
</tax_calculation_rate_PT_19>
|
| 712 |
+
|
| 713 |
+
<tax_calculation_rate_PT_7>
|
| 714 |
<execute>1</execute>
|
| 715 |
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 716 |
<tax_country_id>PT</tax_country_id>
|
| 717 |
<tax_region_id>0</tax_region_id>
|
| 718 |
<tax_postcode>*</tax_postcode>
|
| 719 |
+
<code>PT 7%</code>
|
| 720 |
+
<label>reduzierte MwSt.</label>
|
| 721 |
+
<rate>7</rate>
|
| 722 |
+
</tax_calculation_rate_PT_7>
|
| 723 |
+
|
| 724 |
+
<tax_calculation_rate_PT_0>
|
| 725 |
<execute>1</execute>
|
| 726 |
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 727 |
<tax_country_id>PT</tax_country_id>
|
| 728 |
<tax_region_id>0</tax_region_id>
|
| 729 |
<tax_postcode>*</tax_postcode>
|
| 730 |
+
<code>PT 0%</code>
|
| 731 |
+
<label>ohne MwSt.</label>
|
| 732 |
+
<rate>0</rate>
|
| 733 |
+
</tax_calculation_rate_PT_0>
|
| 734 |
+
|
| 735 |
<tax_calculation_rate_RO_19>
|
| 736 |
<execute>1</execute>
|
| 737 |
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
| 742 |
<label>MwSt.</label>
|
| 743 |
<rate>19</rate>
|
| 744 |
</tax_calculation_rate_RO_19>
|
| 745 |
+
|
| 746 |
+
<tax_calculation_rate_RO_7>
|
| 747 |
<execute>1</execute>
|
| 748 |
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 749 |
<tax_country_id>RO</tax_country_id>
|
| 750 |
<tax_region_id>0</tax_region_id>
|
| 751 |
<tax_postcode>*</tax_postcode>
|
| 752 |
+
<code>RO 7%</code>
|
| 753 |
+
<label>reduzierte MwSt.</label>
|
| 754 |
+
<rate>7</rate>
|
| 755 |
+
</tax_calculation_rate_RO_7>
|
| 756 |
+
|
| 757 |
+
<tax_calculation_rate_RO_0>
|
| 758 |
<execute>1</execute>
|
| 759 |
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 760 |
<tax_country_id>RO</tax_country_id>
|
| 761 |
<tax_region_id>0</tax_region_id>
|
| 762 |
<tax_postcode>*</tax_postcode>
|
| 763 |
+
<code>RO 0%</code>
|
| 764 |
+
<label>ohne MwSt.</label>
|
| 765 |
+
<rate>0</rate>
|
| 766 |
+
</tax_calculation_rate_RO_0>
|
| 767 |
+
|
| 768 |
<tax_calculation_rate_SE_19>
|
| 769 |
<execute>1</execute>
|
| 770 |
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
| 775 |
<label>MwSt.</label>
|
| 776 |
<rate>19</rate>
|
| 777 |
</tax_calculation_rate_SE_19>
|
| 778 |
+
|
| 779 |
+
<tax_calculation_rate_SE_7>
|
| 780 |
<execute>1</execute>
|
| 781 |
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 782 |
<tax_country_id>SE</tax_country_id>
|
| 783 |
<tax_region_id>0</tax_region_id>
|
| 784 |
<tax_postcode>*</tax_postcode>
|
| 785 |
+
<code>SE 7%</code>
|
| 786 |
+
<label>reduzierte MwSt.</label>
|
| 787 |
+
<rate>7</rate>
|
| 788 |
+
</tax_calculation_rate_SE_7>
|
| 789 |
+
|
| 790 |
+
<tax_calculation_rate_SE_0>
|
| 791 |
<execute>1</execute>
|
| 792 |
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 793 |
<tax_country_id>SE</tax_country_id>
|
| 794 |
<tax_region_id>0</tax_region_id>
|
| 795 |
<tax_postcode>*</tax_postcode>
|
| 796 |
+
<code>SE 0%</code>
|
| 797 |
+
<label>ohne MwSt.</label>
|
| 798 |
+
<rate>0</rate>
|
| 799 |
+
</tax_calculation_rate_SE_0>
|
| 800 |
+
|
| 801 |
<tax_calculation_rate_SK_19>
|
| 802 |
<execute>1</execute>
|
| 803 |
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 808 |
<label>MwSt.</label>
|
| 809 |
<rate>19</rate>
|
| 810 |
</tax_calculation_rate_SK_19>
|
| 811 |
+
|
| 812 |
+
<tax_calculation_rate_SK_7>
|
| 813 |
<execute>1</execute>
|
| 814 |
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 815 |
<tax_country_id>SK</tax_country_id>
|
| 816 |
<tax_region_id>0</tax_region_id>
|
| 817 |
<tax_postcode>*</tax_postcode>
|
| 818 |
+
<code>SK 7%</code>
|
| 819 |
+
<label>reduzierte MwSt.</label>
|
| 820 |
+
<rate>7</rate>
|
| 821 |
+
</tax_calculation_rate_SK_7>
|
| 822 |
+
|
| 823 |
+
<tax_calculation_rate_SK_0>
|
| 824 |
<execute>1</execute>
|
| 825 |
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 826 |
<tax_country_id>SK</tax_country_id>
|
| 827 |
<tax_region_id>0</tax_region_id>
|
| 828 |
<tax_postcode>*</tax_postcode>
|
| 829 |
+
<code>SK 0%</code>
|
| 830 |
+
<label>ohne MwSt.</label>
|
| 831 |
+
<rate>0</rate>
|
| 832 |
+
</tax_calculation_rate_SK_0>
|
| 833 |
+
|
| 834 |
<tax_calculation_rate_SI_19>
|
| 835 |
<execute>1</execute>
|
| 836 |
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
| 841 |
<label>MwSt.</label>
|
| 842 |
<rate>19</rate>
|
| 843 |
</tax_calculation_rate_SI_19>
|
| 844 |
+
|
| 845 |
+
<tax_calculation_rate_SI_7>
|
| 846 |
<execute>1</execute>
|
| 847 |
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 848 |
<tax_country_id>SI</tax_country_id>
|
| 849 |
<tax_region_id>0</tax_region_id>
|
| 850 |
<tax_postcode>*</tax_postcode>
|
| 851 |
+
<code>SI 7%</code>
|
| 852 |
+
<label>reduzierte MwSt.</label>
|
| 853 |
+
<rate>7</rate>
|
| 854 |
+
</tax_calculation_rate_SI_7>
|
| 855 |
+
|
| 856 |
+
<tax_calculation_rate_SI_0>
|
| 857 |
<execute>1</execute>
|
| 858 |
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 859 |
<tax_country_id>SI</tax_country_id>
|
| 860 |
<tax_region_id>0</tax_region_id>
|
| 861 |
<tax_postcode>*</tax_postcode>
|
| 862 |
+
<code>SI 0%</code>
|
| 863 |
+
<label>ohne MwSt.</label>
|
| 864 |
+
<rate>0</rate>
|
| 865 |
+
</tax_calculation_rate_SI_0>
|
| 866 |
+
|
| 867 |
<tax_calculation_rate_ES_19>
|
| 868 |
<execute>1</execute>
|
| 869 |
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
| 874 |
<label>MwSt.</label>
|
| 875 |
<rate>19</rate>
|
| 876 |
</tax_calculation_rate_ES_19>
|
| 877 |
+
|
| 878 |
+
<tax_calculation_rate_ES_7>
|
| 879 |
<execute>1</execute>
|
| 880 |
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 881 |
<tax_country_id>ES</tax_country_id>
|
| 882 |
<tax_region_id>0</tax_region_id>
|
| 883 |
<tax_postcode>*</tax_postcode>
|
| 884 |
+
<code>ES 7%</code>
|
| 885 |
+
<label>reduzierte MwSt.</label>
|
| 886 |
+
<rate>7</rate>
|
| 887 |
+
</tax_calculation_rate_ES_7>
|
| 888 |
+
|
| 889 |
+
<tax_calculation_rate_ES_0>
|
| 890 |
<execute>1</execute>
|
| 891 |
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 892 |
<tax_country_id>ES</tax_country_id>
|
| 893 |
<tax_region_id>0</tax_region_id>
|
| 894 |
<tax_postcode>*</tax_postcode>
|
| 895 |
+
<code>ES 0%</code>
|
| 896 |
+
<label>ohne MwSt.</label>
|
| 897 |
+
<rate>0</rate>
|
| 898 |
+
</tax_calculation_rate_ES_0>
|
| 899 |
+
|
| 900 |
<tax_calculation_rate_CZ_19>
|
| 901 |
<execute>1</execute>
|
| 902 |
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
| 907 |
<label>MwSt.</label>
|
| 908 |
<rate>19</rate>
|
| 909 |
</tax_calculation_rate_CZ_19>
|
| 910 |
+
|
| 911 |
+
<tax_calculation_rate_CZ_7>
|
| 912 |
<execute>1</execute>
|
| 913 |
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 914 |
<tax_country_id>CZ</tax_country_id>
|
| 915 |
<tax_region_id>0</tax_region_id>
|
| 916 |
<tax_postcode>*</tax_postcode>
|
| 917 |
+
<code>CZ 7%</code>
|
| 918 |
+
<label>reduzierte MwSt.</label>
|
| 919 |
+
<rate>7</rate>
|
| 920 |
+
</tax_calculation_rate_CZ_7>
|
| 921 |
+
|
| 922 |
+
<tax_calculation_rate_CZ_0>
|
| 923 |
<execute>1</execute>
|
| 924 |
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 925 |
<tax_country_id>CZ</tax_country_id>
|
| 926 |
<tax_region_id>0</tax_region_id>
|
| 927 |
<tax_postcode>*</tax_postcode>
|
| 928 |
+
<code>CZ 0%</code>
|
| 929 |
+
<label>ohne MwSt.</label>
|
| 930 |
+
<rate>0</rate>
|
| 931 |
+
</tax_calculation_rate_CZ_0>
|
| 932 |
+
|
| 933 |
<tax_calculation_rate_HU_19>
|
| 934 |
<execute>1</execute>
|
| 935 |
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
| 940 |
<label>MwSt.</label>
|
| 941 |
<rate>19</rate>
|
| 942 |
</tax_calculation_rate_HU_19>
|
| 943 |
+
|
| 944 |
+
<tax_calculation_rate_HU_7>
|
| 945 |
<execute>1</execute>
|
| 946 |
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 947 |
<tax_country_id>HU</tax_country_id>
|
| 948 |
<tax_region_id>0</tax_region_id>
|
| 949 |
<tax_postcode>*</tax_postcode>
|
| 950 |
+
<code>HU 7%</code>
|
| 951 |
+
<label>reduzierte MwSt.</label>
|
| 952 |
+
<rate>7</rate>
|
| 953 |
+
</tax_calculation_rate_HU_7>
|
| 954 |
+
|
| 955 |
+
<tax_calculation_rate_HU_0>
|
| 956 |
<execute>1</execute>
|
| 957 |
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 958 |
<tax_country_id>HU</tax_country_id>
|
| 959 |
<tax_region_id>0</tax_region_id>
|
| 960 |
<tax_postcode>*</tax_postcode>
|
| 961 |
+
<code>HU 0%</code>
|
| 962 |
+
<label>ohne MwSt.</label>
|
| 963 |
+
<rate>0</rate>
|
| 964 |
+
</tax_calculation_rate_HU_0>
|
| 965 |
+
|
| 966 |
<tax_calculation_rate_GB_19>
|
| 967 |
<execute>1</execute>
|
| 968 |
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
| 973 |
<label>MwSt.</label>
|
| 974 |
<rate>19</rate>
|
| 975 |
</tax_calculation_rate_GB_19>
|
| 976 |
+
|
| 977 |
+
<tax_calculation_rate_GB_7>
|
| 978 |
<execute>1</execute>
|
| 979 |
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 980 |
<tax_country_id>GB</tax_country_id>
|
| 981 |
<tax_region_id>0</tax_region_id>
|
| 982 |
<tax_postcode>*</tax_postcode>
|
| 983 |
+
<code>GB 7%</code>
|
| 984 |
+
<label>reduzierte MwSt.</label>
|
| 985 |
+
<rate>7</rate>
|
| 986 |
+
</tax_calculation_rate_GB_7>
|
| 987 |
+
|
| 988 |
+
<tax_calculation_rate_GB_0>
|
| 989 |
<execute>1</execute>
|
| 990 |
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 991 |
<tax_country_id>GB</tax_country_id>
|
| 992 |
<tax_region_id>0</tax_region_id>
|
| 993 |
<tax_postcode>*</tax_postcode>
|
| 994 |
+
<code>GB 0%</code>
|
| 995 |
+
<label>ohne MwSt.</label>
|
| 996 |
+
<rate>0</rate>
|
| 997 |
+
</tax_calculation_rate_GB_0>
|
| 998 |
+
|
| 999 |
<tax_calculation_rate_CY_19>
|
| 1000 |
<execute>1</execute>
|
| 1001 |
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
| 1006 |
<label>MwSt.</label>
|
| 1007 |
<rate>19</rate>
|
| 1008 |
</tax_calculation_rate_CY_19>
|
| 1009 |
+
|
| 1010 |
+
<tax_calculation_rate_CY_7>
|
| 1011 |
<execute>1</execute>
|
| 1012 |
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 1013 |
<tax_country_id>CY</tax_country_id>
|
| 1014 |
<tax_region_id>0</tax_region_id>
|
| 1015 |
<tax_postcode>*</tax_postcode>
|
| 1016 |
+
<code>CY 7%</code>
|
| 1017 |
+
<label>reduzierte MwSt.</label>
|
| 1018 |
+
<rate>7</rate>
|
| 1019 |
+
</tax_calculation_rate_CY_7>
|
| 1020 |
+
|
| 1021 |
+
<tax_calculation_rate_CY_0>
|
| 1022 |
<execute>1</execute>
|
| 1023 |
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 1024 |
<tax_country_id>CY</tax_country_id>
|
| 1025 |
<tax_region_id>0</tax_region_id>
|
| 1026 |
<tax_postcode>*</tax_postcode>
|
| 1027 |
+
<code>CY 0%</code>
|
| 1028 |
+
<label>ohne MwSt.</label>
|
| 1029 |
+
<rate>0</rate>
|
| 1030 |
+
</tax_calculation_rate_CY_0>
|
| 1031 |
</default>
|
| 1032 |
+
|
| 1033 |
</tax_calculation_rates>
|
| 1034 |
|
| 1035 |
<tax_calculations>
|
| 1036 |
<default>
|
| 1037 |
+
|
| 1038 |
+
<tax_calculation_DE_19_customer>
|
| 1039 |
<execute>1</execute>
|
| 1040 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 1041 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1042 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1043 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1044 |
+
</tax_calculation_DE_19_customer>
|
| 1045 |
+
|
| 1046 |
<tax_calculation_DE_19_companies>
|
| 1047 |
<execute>1</execute>
|
| 1048 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 1050 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1051 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1052 |
</tax_calculation_DE_19_companies>
|
| 1053 |
+
|
| 1054 |
+
<tax_calculation_DE_19_shipping_customer>
|
| 1055 |
<execute>1</execute>
|
| 1056 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 1057 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1058 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1059 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1060 |
+
</tax_calculation_DE_19_shipping_customer>
|
| 1061 |
+
|
| 1062 |
+
<tax_calculation_DE_19_shipping_companies>
|
| 1063 |
<execute>1</execute>
|
| 1064 |
<tax_calculation_rate_id>3</tax_calculation_rate_id>
|
| 1065 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1066 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1067 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1068 |
+
</tax_calculation_DE_19_shipping_companies>
|
| 1069 |
+
|
| 1070 |
+
<tax_calculation_DE_7_customer>
|
| 1071 |
<execute>1</execute>
|
| 1072 |
+
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 1073 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1074 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1075 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1076 |
+
</tax_calculation_DE_7_customer>
|
| 1077 |
+
|
| 1078 |
<tax_calculation_DE_7_companies>
|
| 1079 |
<execute>1</execute>
|
| 1080 |
+
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 1081 |
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1082 |
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1083 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1084 |
</tax_calculation_DE_7_companies>
|
| 1085 |
+
|
| 1086 |
+
<tax_calculation_DE_7_shipping_customer>
|
| 1087 |
<execute>1</execute>
|
| 1088 |
+
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 1089 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1090 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1091 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1092 |
+
</tax_calculation_DE_7_shipping_customer>
|
| 1093 |
+
|
| 1094 |
+
<tax_calculation_DE_7_shipping_companies>
|
| 1095 |
+
<execute>1</execute>
|
| 1096 |
+
<tax_calculation_rate_id>4</tax_calculation_rate_id>
|
| 1097 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1098 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1099 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1100 |
+
</tax_calculation_DE_7_shipping_companies>
|
| 1101 |
+
|
| 1102 |
+
<tax_calculation_DE_19_companies_vat>
|
| 1103 |
+
<execute>1</execute>
|
| 1104 |
+
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 1105 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1106 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1107 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1108 |
+
</tax_calculation_DE_19_companies_vat>
|
| 1109 |
+
|
| 1110 |
+
<tax_calculation_DE_7_companies_vat>
|
| 1111 |
<execute>1</execute>
|
| 1112 |
+
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 1113 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1114 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1115 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1116 |
+
</tax_calculation_DE_7_companies_vat>
|
| 1117 |
+
|
| 1118 |
+
<tax_calculation_DE_19_shipping_companies_vat>
|
| 1119 |
+
<execute>1</execute>
|
| 1120 |
+
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 1121 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1122 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1123 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1124 |
+
</tax_calculation_DE_19_shipping_companies_vat>
|
| 1125 |
+
|
| 1126 |
+
<tax_calculation_DE_7_shipping_companies_vat>
|
| 1127 |
<execute>1</execute>
|
| 1128 |
+
<tax_calculation_rate_id>5</tax_calculation_rate_id>
|
| 1129 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1130 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1131 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1132 |
+
</tax_calculation_DE_7_shipping_companies_vat>
|
| 1133 |
+
|
| 1134 |
+
<tax_calculation_BE_19_customer>
|
| 1135 |
<execute>1</execute>
|
| 1136 |
+
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
| 1137 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1138 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1139 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1140 |
+
</tax_calculation_BE_19_customer>
|
| 1141 |
+
|
| 1142 |
+
<tax_calculation_BE_19_companies>
|
| 1143 |
<execute>1</execute>
|
| 1144 |
+
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
| 1145 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1146 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1147 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1148 |
+
</tax_calculation_BE_19_companies>
|
| 1149 |
+
|
| 1150 |
+
<tax_calculation_BE_19_shipping_customer>
|
| 1151 |
+
<execute>1</execute>
|
| 1152 |
+
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
| 1153 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1154 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1155 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1156 |
+
</tax_calculation_BE_19_shipping_customer>
|
| 1157 |
+
|
| 1158 |
+
<tax_calculation_BE_19_shipping_companies>
|
| 1159 |
<execute>1</execute>
|
| 1160 |
+
<tax_calculation_rate_id>6</tax_calculation_rate_id>
|
| 1161 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1162 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1163 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1164 |
+
</tax_calculation_BE_19_shipping_companies>
|
| 1165 |
+
|
| 1166 |
+
<tax_calculation_BE_7_customer>
|
| 1167 |
+
<execute>1</execute>
|
| 1168 |
+
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 1169 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1170 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1171 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1172 |
+
</tax_calculation_BE_7_customer>
|
| 1173 |
+
|
| 1174 |
+
<tax_calculation_BE_7_companies>
|
| 1175 |
<execute>1</execute>
|
| 1176 |
+
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 1177 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1178 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1179 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1180 |
+
</tax_calculation_BE_7_companies>
|
| 1181 |
+
|
| 1182 |
+
<tax_calculation_BE_7_shipping_customer>
|
| 1183 |
+
<execute>1</execute>
|
| 1184 |
+
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 1185 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1186 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1187 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1188 |
+
</tax_calculation_BE_7_shipping_customer>
|
| 1189 |
+
|
| 1190 |
+
<tax_calculation_BE_7_shipping_companies>
|
| 1191 |
+
<execute>1</execute>
|
| 1192 |
+
<tax_calculation_rate_id>7</tax_calculation_rate_id>
|
| 1193 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1194 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1195 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1196 |
+
</tax_calculation_BE_7_shipping_companies>
|
| 1197 |
+
|
| 1198 |
+
<tax_calculation_BE_19_companies_vat>
|
| 1199 |
+
<execute>1</execute>
|
| 1200 |
+
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 1201 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1202 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1203 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1204 |
+
</tax_calculation_BE_19_companies_vat>
|
| 1205 |
+
|
| 1206 |
+
<tax_calculation_BE_7_companies_vat>
|
| 1207 |
<execute>1</execute>
|
| 1208 |
+
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 1209 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1210 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1211 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1212 |
+
</tax_calculation_BE_7_companies_vat>
|
| 1213 |
+
|
| 1214 |
+
<tax_calculation_BE_19_shipping_companies_vat>
|
| 1215 |
+
<execute>1</execute>
|
| 1216 |
+
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 1217 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1218 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1219 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1220 |
+
</tax_calculation_BE_19_shipping_companies_vat>
|
| 1221 |
+
|
| 1222 |
+
<tax_calculation_BE_7_shipping_companies_vat>
|
| 1223 |
<execute>1</execute>
|
| 1224 |
+
<tax_calculation_rate_id>8</tax_calculation_rate_id>
|
| 1225 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1226 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1227 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1228 |
+
</tax_calculation_BE_7_shipping_companies_vat>
|
| 1229 |
+
|
| 1230 |
+
<tax_calculation_BG_19_customer>
|
| 1231 |
<execute>1</execute>
|
| 1232 |
+
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
| 1233 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1234 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1235 |
<product_tax_class_id>1</product_tax_class_id>
|
| 1236 |
+
</tax_calculation_BG_19_customer>
|
| 1237 |
+
|
| 1238 |
+
<tax_calculation_BG_19_companies>
|
| 1239 |
<execute>1</execute>
|
| 1240 |
+
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
| 1241 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1242 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1243 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1244 |
+
</tax_calculation_BG_19_companies>
|
| 1245 |
+
|
| 1246 |
+
<tax_calculation_BG_19_shipping_customer>
|
| 1247 |
+
<execute>1</execute>
|
| 1248 |
+
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
| 1249 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1250 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1251 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1252 |
+
</tax_calculation_BG_19_shipping_customer>
|
| 1253 |
+
|
| 1254 |
+
<tax_calculation_BG_19_shipping_companies>
|
| 1255 |
<execute>1</execute>
|
| 1256 |
+
<tax_calculation_rate_id>9</tax_calculation_rate_id>
|
| 1257 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1258 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1259 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1260 |
+
</tax_calculation_BG_19_shipping_companies>
|
| 1261 |
+
|
| 1262 |
+
<tax_calculation_BG_7_customer>
|
| 1263 |
+
<execute>1</execute>
|
| 1264 |
+
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 1265 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1266 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1267 |
<product_tax_class_id>2</product_tax_class_id>
|
| 1268 |
+
</tax_calculation_BG_7_customer>
|
| 1269 |
+
|
| 1270 |
+
<tax_calculation_BG_7_companies>
|
| 1271 |
<execute>1</execute>
|
| 1272 |
+
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 1273 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1274 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1275 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1276 |
+
</tax_calculation_BG_7_companies>
|
| 1277 |
+
|
| 1278 |
+
<tax_calculation_BG_7_shipping_customer>
|
| 1279 |
+
<execute>1</execute>
|
| 1280 |
+
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 1281 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1282 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1283 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1284 |
+
</tax_calculation_BG_7_shipping_customer>
|
| 1285 |
+
|
| 1286 |
+
<tax_calculation_BG_7_shipping_companies>
|
| 1287 |
+
<execute>1</execute>
|
| 1288 |
+
<tax_calculation_rate_id>10</tax_calculation_rate_id>
|
| 1289 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1290 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1291 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1292 |
+
</tax_calculation_BG_7_shipping_companies>
|
| 1293 |
+
|
| 1294 |
+
<tax_calculation_BG_19_companies_vat>
|
| 1295 |
+
<execute>1</execute>
|
| 1296 |
+
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 1297 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1298 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1299 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1300 |
+
</tax_calculation_BG_19_companies_vat>
|
| 1301 |
+
|
| 1302 |
+
<tax_calculation_BG_7_companies_vat>
|
| 1303 |
+
<execute>1</execute>
|
| 1304 |
+
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 1305 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1306 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1307 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1308 |
+
</tax_calculation_BG_7_companies_vat>
|
| 1309 |
+
|
| 1310 |
+
<tax_calculation_BG_19_shipping_companies_vat>
|
| 1311 |
+
<execute>1</execute>
|
| 1312 |
+
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 1313 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1314 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1315 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1316 |
+
</tax_calculation_BG_19_shipping_companies_vat>
|
| 1317 |
+
|
| 1318 |
+
<tax_calculation_BG_7_shipping_companies_vat>
|
| 1319 |
+
<execute>1</execute>
|
| 1320 |
+
<tax_calculation_rate_id>11</tax_calculation_rate_id>
|
| 1321 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1322 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1323 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1324 |
+
</tax_calculation_BG_7_shipping_companies_vat>
|
| 1325 |
+
|
| 1326 |
+
<tax_calculation_DK_19_customer>
|
| 1327 |
+
<execute>1</execute>
|
| 1328 |
+
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
| 1329 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1330 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1331 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1332 |
+
</tax_calculation_DK_19_customer>
|
| 1333 |
+
|
| 1334 |
+
<tax_calculation_DK_19_companies>
|
| 1335 |
+
<execute>1</execute>
|
| 1336 |
+
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
| 1337 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1338 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1339 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1340 |
+
</tax_calculation_DK_19_companies>
|
| 1341 |
+
|
| 1342 |
+
<tax_calculation_DK_19_shipping_customer>
|
| 1343 |
+
<execute>1</execute>
|
| 1344 |
+
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
| 1345 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1346 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1347 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1348 |
+
</tax_calculation_DK_19_shipping_customer>
|
| 1349 |
+
|
| 1350 |
+
<tax_calculation_DK_19_shipping_companies>
|
| 1351 |
+
<execute>1</execute>
|
| 1352 |
+
<tax_calculation_rate_id>12</tax_calculation_rate_id>
|
| 1353 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1354 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1355 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1356 |
+
</tax_calculation_DK_19_shipping_companies>
|
| 1357 |
+
|
| 1358 |
+
<tax_calculation_DK_7_customer>
|
| 1359 |
+
<execute>1</execute>
|
| 1360 |
+
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 1361 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1362 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1363 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1364 |
+
</tax_calculation_DK_7_customer>
|
| 1365 |
+
|
| 1366 |
+
<tax_calculation_DK_7_companies>
|
| 1367 |
+
<execute>1</execute>
|
| 1368 |
+
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 1369 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1370 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1371 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1372 |
+
</tax_calculation_DK_7_companies>
|
| 1373 |
+
|
| 1374 |
+
<tax_calculation_DK_7_shipping_customer>
|
| 1375 |
+
<execute>1</execute>
|
| 1376 |
+
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 1377 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1378 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1379 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1380 |
+
</tax_calculation_DK_7_shipping_customer>
|
| 1381 |
+
|
| 1382 |
+
<tax_calculation_DK_7_shipping_companies>
|
| 1383 |
+
<execute>1</execute>
|
| 1384 |
+
<tax_calculation_rate_id>13</tax_calculation_rate_id>
|
| 1385 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1386 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1387 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1388 |
+
</tax_calculation_DK_7_shipping_companies>
|
| 1389 |
+
|
| 1390 |
+
<tax_calculation_DK_19_companies_vat>
|
| 1391 |
+
<execute>1</execute>
|
| 1392 |
+
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 1393 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1394 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1395 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1396 |
+
</tax_calculation_DK_19_companies_vat>
|
| 1397 |
+
|
| 1398 |
+
<tax_calculation_DK_7_companies_vat>
|
| 1399 |
+
<execute>1</execute>
|
| 1400 |
+
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 1401 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1402 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1403 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1404 |
+
</tax_calculation_DK_7_companies_vat>
|
| 1405 |
+
|
| 1406 |
+
<tax_calculation_DK_19_shipping_companies_vat>
|
| 1407 |
+
<execute>1</execute>
|
| 1408 |
+
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 1409 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1410 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1411 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1412 |
+
</tax_calculation_DK_19_shipping_companies_vat>
|
| 1413 |
+
|
| 1414 |
+
<tax_calculation_DK_7_shipping_companies_vat>
|
| 1415 |
+
<execute>1</execute>
|
| 1416 |
+
<tax_calculation_rate_id>14</tax_calculation_rate_id>
|
| 1417 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1418 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1419 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1420 |
+
</tax_calculation_DK_7_shipping_companies_vat>
|
| 1421 |
+
|
| 1422 |
+
<tax_calculation_EE_19_customer>
|
| 1423 |
+
<execute>1</execute>
|
| 1424 |
+
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
| 1425 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1426 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1427 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1428 |
+
</tax_calculation_EE_19_customer>
|
| 1429 |
+
|
| 1430 |
+
<tax_calculation_EE_19_companies>
|
| 1431 |
+
<execute>1</execute>
|
| 1432 |
+
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
| 1433 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1434 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1435 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1436 |
+
</tax_calculation_EE_19_companies>
|
| 1437 |
+
|
| 1438 |
+
<tax_calculation_EE_19_shipping_customer>
|
| 1439 |
+
<execute>1</execute>
|
| 1440 |
+
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
| 1441 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1442 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1443 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1444 |
+
</tax_calculation_EE_19_shipping_customer>
|
| 1445 |
+
|
| 1446 |
+
<tax_calculation_EE_19_shipping_companies>
|
| 1447 |
+
<execute>1</execute>
|
| 1448 |
+
<tax_calculation_rate_id>15</tax_calculation_rate_id>
|
| 1449 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1450 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1451 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1452 |
+
</tax_calculation_EE_19_shipping_companies>
|
| 1453 |
+
|
| 1454 |
+
<tax_calculation_EE_7_customer>
|
| 1455 |
+
<execute>1</execute>
|
| 1456 |
+
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 1457 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1458 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1459 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1460 |
+
</tax_calculation_EE_7_customer>
|
| 1461 |
+
|
| 1462 |
+
<tax_calculation_EE_7_companies>
|
| 1463 |
+
<execute>1</execute>
|
| 1464 |
+
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 1465 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1466 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1467 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1468 |
+
</tax_calculation_EE_7_companies>
|
| 1469 |
+
|
| 1470 |
+
<tax_calculation_EE_7_shipping_customer>
|
| 1471 |
+
<execute>1</execute>
|
| 1472 |
+
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 1473 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1474 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1475 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1476 |
+
</tax_calculation_EE_7_shipping_customer>
|
| 1477 |
+
|
| 1478 |
+
<tax_calculation_EE_7_shipping_companies>
|
| 1479 |
+
<execute>1</execute>
|
| 1480 |
+
<tax_calculation_rate_id>16</tax_calculation_rate_id>
|
| 1481 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1482 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1483 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1484 |
+
</tax_calculation_EE_7_shipping_companies>
|
| 1485 |
+
|
| 1486 |
+
<tax_calculation_EE_19_companies_vat>
|
| 1487 |
+
<execute>1</execute>
|
| 1488 |
+
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 1489 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1490 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1491 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1492 |
+
</tax_calculation_EE_19_companies_vat>
|
| 1493 |
+
|
| 1494 |
+
<tax_calculation_EE_7_companies_vat>
|
| 1495 |
+
<execute>1</execute>
|
| 1496 |
+
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 1497 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1498 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1499 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1500 |
+
</tax_calculation_EE_7_companies_vat>
|
| 1501 |
+
|
| 1502 |
+
<tax_calculation_EE_19_shipping_companies_vat>
|
| 1503 |
+
<execute>1</execute>
|
| 1504 |
+
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 1505 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1506 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1507 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1508 |
+
</tax_calculation_EE_19_shipping_companies_vat>
|
| 1509 |
+
|
| 1510 |
+
<tax_calculation_EE_7_shipping_companies_vat>
|
| 1511 |
+
<execute>1</execute>
|
| 1512 |
+
<tax_calculation_rate_id>17</tax_calculation_rate_id>
|
| 1513 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1514 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1515 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1516 |
+
</tax_calculation_EE_7_shipping_companies_vat>
|
| 1517 |
+
|
| 1518 |
+
<tax_calculation_FI_19_customer>
|
| 1519 |
+
<execute>1</execute>
|
| 1520 |
+
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 1521 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1522 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1523 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1524 |
+
</tax_calculation_FI_19_customer>
|
| 1525 |
+
|
| 1526 |
+
<tax_calculation_FI_19_companies>
|
| 1527 |
+
<execute>1</execute>
|
| 1528 |
+
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 1529 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1530 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1531 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1532 |
+
</tax_calculation_FI_19_companies>
|
| 1533 |
+
|
| 1534 |
+
<tax_calculation_FI_19_shipping_customer>
|
| 1535 |
+
<execute>1</execute>
|
| 1536 |
+
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 1537 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1538 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1539 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1540 |
+
</tax_calculation_FI_19_shipping_customer>
|
| 1541 |
+
|
| 1542 |
+
<tax_calculation_FI_19_shipping_companies>
|
| 1543 |
<execute>1</execute>
|
| 1544 |
<tax_calculation_rate_id>18</tax_calculation_rate_id>
|
| 1545 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1546 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1547 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1548 |
+
</tax_calculation_FI_19_shipping_companies>
|
| 1549 |
+
|
| 1550 |
+
<tax_calculation_FI_7_customer>
|
| 1551 |
+
<execute>1</execute>
|
| 1552 |
+
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 1553 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1554 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1555 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1556 |
+
</tax_calculation_FI_7_customer>
|
| 1557 |
+
|
| 1558 |
+
<tax_calculation_FI_7_companies>
|
| 1559 |
+
<execute>1</execute>
|
| 1560 |
+
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 1561 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1562 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1563 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1564 |
+
</tax_calculation_FI_7_companies>
|
| 1565 |
+
|
| 1566 |
+
<tax_calculation_FI_7_shipping_customer>
|
| 1567 |
+
<execute>1</execute>
|
| 1568 |
+
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 1569 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1570 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1571 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1572 |
+
</tax_calculation_FI_7_shipping_customer>
|
| 1573 |
+
|
| 1574 |
+
<tax_calculation_FI_7_shipping_companies>
|
| 1575 |
+
<execute>1</execute>
|
| 1576 |
+
<tax_calculation_rate_id>19</tax_calculation_rate_id>
|
| 1577 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1578 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1579 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1580 |
+
</tax_calculation_FI_7_shipping_companies>
|
| 1581 |
+
|
| 1582 |
+
<tax_calculation_FI_19_companies_vat>
|
| 1583 |
+
<execute>1</execute>
|
| 1584 |
+
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 1585 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1586 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1587 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1588 |
+
</tax_calculation_FI_19_companies_vat>
|
| 1589 |
+
|
| 1590 |
+
<tax_calculation_FI_7_companies_vat>
|
| 1591 |
+
<execute>1</execute>
|
| 1592 |
+
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 1593 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1594 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1595 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1596 |
+
</tax_calculation_FI_7_companies_vat>
|
| 1597 |
+
|
| 1598 |
+
<tax_calculation_FI_19_shipping_companies_vat>
|
| 1599 |
+
<execute>1</execute>
|
| 1600 |
+
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 1601 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1602 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1603 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1604 |
+
</tax_calculation_FI_19_shipping_companies_vat>
|
| 1605 |
+
|
| 1606 |
+
<tax_calculation_FI_7_shipping_companies_vat>
|
| 1607 |
+
<execute>1</execute>
|
| 1608 |
+
<tax_calculation_rate_id>20</tax_calculation_rate_id>
|
| 1609 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1610 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1611 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1612 |
+
</tax_calculation_FI_7_shipping_companies_vat>
|
| 1613 |
+
|
| 1614 |
+
<tax_calculation_FR_19_customer>
|
| 1615 |
+
<execute>1</execute>
|
| 1616 |
+
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
| 1617 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1618 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1619 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1620 |
+
</tax_calculation_FR_19_customer>
|
| 1621 |
+
|
| 1622 |
+
<tax_calculation_FR_19_companies>
|
| 1623 |
+
<execute>1</execute>
|
| 1624 |
+
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
| 1625 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1626 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1627 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1628 |
+
</tax_calculation_FR_19_companies>
|
| 1629 |
+
|
| 1630 |
+
<tax_calculation_FR_19_shipping_customer>
|
| 1631 |
+
<execute>1</execute>
|
| 1632 |
+
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
| 1633 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1634 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1635 |
<product_tax_class_id>4</product_tax_class_id>
|
| 1636 |
+
</tax_calculation_FR_19_shipping_customer>
|
| 1637 |
+
|
| 1638 |
+
<tax_calculation_FR_19_shipping_companies>
|
| 1639 |
+
<execute>1</execute>
|
| 1640 |
+
<tax_calculation_rate_id>21</tax_calculation_rate_id>
|
| 1641 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1642 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1643 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1644 |
+
</tax_calculation_FR_19_shipping_companies>
|
| 1645 |
+
|
| 1646 |
+
<tax_calculation_FR_7_customer>
|
| 1647 |
+
<execute>1</execute>
|
| 1648 |
+
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 1649 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1650 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1651 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1652 |
+
</tax_calculation_FR_7_customer>
|
| 1653 |
+
|
| 1654 |
+
<tax_calculation_FR_7_companies>
|
| 1655 |
+
<execute>1</execute>
|
| 1656 |
+
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 1657 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1658 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1659 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1660 |
+
</tax_calculation_FR_7_companies>
|
| 1661 |
+
|
| 1662 |
+
<tax_calculation_FR_7_shipping_customer>
|
| 1663 |
+
<execute>1</execute>
|
| 1664 |
+
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 1665 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1666 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1667 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1668 |
+
</tax_calculation_FR_7_shipping_customer>
|
| 1669 |
+
|
| 1670 |
+
<tax_calculation_FR_7_shipping_companies>
|
| 1671 |
+
<execute>1</execute>
|
| 1672 |
+
<tax_calculation_rate_id>22</tax_calculation_rate_id>
|
| 1673 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1674 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1675 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1676 |
+
</tax_calculation_FR_7_shipping_companies>
|
| 1677 |
+
|
| 1678 |
+
<tax_calculation_FR_19_companies_vat>
|
| 1679 |
+
<execute>1</execute>
|
| 1680 |
+
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 1681 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1682 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1683 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1684 |
+
</tax_calculation_FR_19_companies_vat>
|
| 1685 |
+
|
| 1686 |
+
<tax_calculation_FR_7_companies_vat>
|
| 1687 |
+
<execute>1</execute>
|
| 1688 |
+
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 1689 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1690 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1691 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1692 |
+
</tax_calculation_FR_7_companies_vat>
|
| 1693 |
+
|
| 1694 |
+
<tax_calculation_FR_19_shipping_companies_vat>
|
| 1695 |
+
<execute>1</execute>
|
| 1696 |
+
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 1697 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1698 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1699 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1700 |
+
</tax_calculation_FR_19_shipping_companies_vat>
|
| 1701 |
+
|
| 1702 |
+
<tax_calculation_FR_7_shipping_companies_vat>
|
| 1703 |
+
<execute>1</execute>
|
| 1704 |
+
<tax_calculation_rate_id>23</tax_calculation_rate_id>
|
| 1705 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1706 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1707 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1708 |
+
</tax_calculation_FR_7_shipping_companies_vat>
|
| 1709 |
+
|
| 1710 |
+
<tax_calculation_GR_19_customer>
|
| 1711 |
+
<execute>1</execute>
|
| 1712 |
+
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
| 1713 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1714 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1715 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1716 |
+
</tax_calculation_GR_19_customer>
|
| 1717 |
+
|
| 1718 |
+
<tax_calculation_GR_19_companies>
|
| 1719 |
+
<execute>1</execute>
|
| 1720 |
+
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
| 1721 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1722 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1723 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1724 |
+
</tax_calculation_GR_19_companies>
|
| 1725 |
+
|
| 1726 |
+
<tax_calculation_GR_19_shipping_customer>
|
| 1727 |
+
<execute>1</execute>
|
| 1728 |
+
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
| 1729 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1730 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1731 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1732 |
+
</tax_calculation_GR_19_shipping_customer>
|
| 1733 |
+
|
| 1734 |
+
<tax_calculation_GR_19_shipping_companies>
|
| 1735 |
+
<execute>1</execute>
|
| 1736 |
+
<tax_calculation_rate_id>24</tax_calculation_rate_id>
|
| 1737 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1738 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1739 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1740 |
+
</tax_calculation_GR_19_shipping_companies>
|
| 1741 |
+
|
| 1742 |
+
<tax_calculation_GR_7_customer>
|
| 1743 |
+
<execute>1</execute>
|
| 1744 |
+
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 1745 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1746 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1747 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1748 |
+
</tax_calculation_GR_7_customer>
|
| 1749 |
+
|
| 1750 |
+
<tax_calculation_GR_7_companies>
|
| 1751 |
+
<execute>1</execute>
|
| 1752 |
+
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 1753 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1754 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1755 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1756 |
+
</tax_calculation_GR_7_companies>
|
| 1757 |
+
|
| 1758 |
+
<tax_calculation_GR_7_shipping_customer>
|
| 1759 |
+
<execute>1</execute>
|
| 1760 |
+
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 1761 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1762 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1763 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1764 |
+
</tax_calculation_GR_7_shipping_customer>
|
| 1765 |
+
|
| 1766 |
+
<tax_calculation_GR_7_shipping_companies>
|
| 1767 |
+
<execute>1</execute>
|
| 1768 |
+
<tax_calculation_rate_id>25</tax_calculation_rate_id>
|
| 1769 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1770 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1771 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1772 |
+
</tax_calculation_GR_7_shipping_companies>
|
| 1773 |
+
|
| 1774 |
+
<tax_calculation_GR_19_companies_vat>
|
| 1775 |
+
<execute>1</execute>
|
| 1776 |
+
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 1777 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1778 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1779 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1780 |
+
</tax_calculation_GR_19_companies_vat>
|
| 1781 |
+
|
| 1782 |
+
<tax_calculation_GR_7_companies_vat>
|
| 1783 |
+
<execute>1</execute>
|
| 1784 |
+
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 1785 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1786 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1787 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1788 |
+
</tax_calculation_GR_7_companies_vat>
|
| 1789 |
+
|
| 1790 |
+
<tax_calculation_GR_19_shipping_companies_vat>
|
| 1791 |
+
<execute>1</execute>
|
| 1792 |
+
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 1793 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1794 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1795 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1796 |
+
</tax_calculation_GR_19_shipping_companies_vat>
|
| 1797 |
+
|
| 1798 |
+
<tax_calculation_GR_7_shipping_companies_vat>
|
| 1799 |
+
<execute>1</execute>
|
| 1800 |
+
<tax_calculation_rate_id>26</tax_calculation_rate_id>
|
| 1801 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1802 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1803 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1804 |
+
</tax_calculation_GR_7_shipping_companies_vat>
|
| 1805 |
+
|
| 1806 |
+
<tax_calculation_IE_19_customer>
|
| 1807 |
+
<execute>1</execute>
|
| 1808 |
+
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
| 1809 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1810 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1811 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1812 |
+
</tax_calculation_IE_19_customer>
|
| 1813 |
+
|
| 1814 |
+
<tax_calculation_IE_19_companies>
|
| 1815 |
+
<execute>1</execute>
|
| 1816 |
+
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
| 1817 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1818 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1819 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1820 |
+
</tax_calculation_IE_19_companies>
|
| 1821 |
+
|
| 1822 |
+
<tax_calculation_IE_19_shipping_customer>
|
| 1823 |
+
<execute>1</execute>
|
| 1824 |
+
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
| 1825 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1826 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1827 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1828 |
+
</tax_calculation_IE_19_shipping_customer>
|
| 1829 |
+
|
| 1830 |
+
<tax_calculation_IE_19_shipping_companies>
|
| 1831 |
+
<execute>1</execute>
|
| 1832 |
+
<tax_calculation_rate_id>27</tax_calculation_rate_id>
|
| 1833 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1834 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1835 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1836 |
+
</tax_calculation_IE_19_shipping_companies>
|
| 1837 |
+
|
| 1838 |
+
<tax_calculation_IE_7_customer>
|
| 1839 |
+
<execute>1</execute>
|
| 1840 |
+
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 1841 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1842 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1843 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1844 |
+
</tax_calculation_IE_7_customer>
|
| 1845 |
+
|
| 1846 |
+
<tax_calculation_IE_7_companies>
|
| 1847 |
+
<execute>1</execute>
|
| 1848 |
+
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 1849 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1850 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1851 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1852 |
+
</tax_calculation_IE_7_companies>
|
| 1853 |
+
|
| 1854 |
+
<tax_calculation_IE_7_shipping_customer>
|
| 1855 |
+
<execute>1</execute>
|
| 1856 |
+
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 1857 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1858 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1859 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1860 |
+
</tax_calculation_IE_7_shipping_customer>
|
| 1861 |
+
|
| 1862 |
+
<tax_calculation_IE_7_shipping_companies>
|
| 1863 |
+
<execute>1</execute>
|
| 1864 |
+
<tax_calculation_rate_id>28</tax_calculation_rate_id>
|
| 1865 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1866 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1867 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1868 |
+
</tax_calculation_IE_7_shipping_companies>
|
| 1869 |
+
|
| 1870 |
+
<tax_calculation_IE_19_companies_vat>
|
| 1871 |
+
<execute>1</execute>
|
| 1872 |
+
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 1873 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1874 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1875 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1876 |
+
</tax_calculation_IE_19_companies_vat>
|
| 1877 |
+
|
| 1878 |
+
<tax_calculation_IE_7_companies_vat>
|
| 1879 |
+
<execute>1</execute>
|
| 1880 |
+
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 1881 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1882 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1883 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1884 |
+
</tax_calculation_IE_7_companies_vat>
|
| 1885 |
+
|
| 1886 |
+
<tax_calculation_IE_19_shipping_companies_vat>
|
| 1887 |
+
<execute>1</execute>
|
| 1888 |
+
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 1889 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1890 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1891 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1892 |
+
</tax_calculation_IE_19_shipping_companies_vat>
|
| 1893 |
+
|
| 1894 |
+
<tax_calculation_IE_7_shipping_companies_vat>
|
| 1895 |
+
<execute>1</execute>
|
| 1896 |
+
<tax_calculation_rate_id>29</tax_calculation_rate_id>
|
| 1897 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1898 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1899 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1900 |
+
</tax_calculation_IE_7_shipping_companies_vat>
|
| 1901 |
+
|
| 1902 |
+
<tax_calculation_IT_19_customer>
|
| 1903 |
+
<execute>1</execute>
|
| 1904 |
+
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
| 1905 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 1906 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1907 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1908 |
+
</tax_calculation_IT_19_customer>
|
| 1909 |
+
|
| 1910 |
+
<tax_calculation_IT_19_companies>
|
| 1911 |
+
<execute>1</execute>
|
| 1912 |
+
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
| 1913 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 1914 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1915 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1916 |
+
</tax_calculation_IT_19_companies>
|
| 1917 |
+
|
| 1918 |
+
<tax_calculation_IT_19_shipping_customer>
|
| 1919 |
+
<execute>1</execute>
|
| 1920 |
+
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
| 1921 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1922 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1923 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1924 |
+
</tax_calculation_IT_19_shipping_customer>
|
| 1925 |
+
|
| 1926 |
+
<tax_calculation_IT_19_shipping_companies>
|
| 1927 |
+
<execute>1</execute>
|
| 1928 |
+
<tax_calculation_rate_id>30</tax_calculation_rate_id>
|
| 1929 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 1930 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1931 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1932 |
+
</tax_calculation_IT_19_shipping_companies>
|
| 1933 |
+
|
| 1934 |
+
<tax_calculation_IT_7_customer>
|
| 1935 |
+
<execute>1</execute>
|
| 1936 |
+
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 1937 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 1938 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1939 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1940 |
+
</tax_calculation_IT_7_customer>
|
| 1941 |
+
|
| 1942 |
+
<tax_calculation_IT_7_companies>
|
| 1943 |
+
<execute>1</execute>
|
| 1944 |
+
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 1945 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 1946 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1947 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1948 |
+
</tax_calculation_IT_7_companies>
|
| 1949 |
+
|
| 1950 |
+
<tax_calculation_IT_7_shipping_customer>
|
| 1951 |
+
<execute>1</execute>
|
| 1952 |
+
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 1953 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1954 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 1955 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1956 |
+
</tax_calculation_IT_7_shipping_customer>
|
| 1957 |
+
|
| 1958 |
+
<tax_calculation_IT_7_shipping_companies>
|
| 1959 |
+
<execute>1</execute>
|
| 1960 |
+
<tax_calculation_rate_id>31</tax_calculation_rate_id>
|
| 1961 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 1962 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 1963 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1964 |
+
</tax_calculation_IT_7_shipping_companies>
|
| 1965 |
+
|
| 1966 |
+
<tax_calculation_IT_19_companies_vat>
|
| 1967 |
+
<execute>1</execute>
|
| 1968 |
+
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 1969 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1970 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1971 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 1972 |
+
</tax_calculation_IT_19_companies_vat>
|
| 1973 |
+
|
| 1974 |
+
<tax_calculation_IT_7_companies_vat>
|
| 1975 |
+
<execute>1</execute>
|
| 1976 |
+
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 1977 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1978 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1979 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 1980 |
+
</tax_calculation_IT_7_companies_vat>
|
| 1981 |
+
|
| 1982 |
+
<tax_calculation_IT_19_shipping_companies_vat>
|
| 1983 |
+
<execute>1</execute>
|
| 1984 |
+
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 1985 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1986 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1987 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 1988 |
+
</tax_calculation_IT_19_shipping_companies_vat>
|
| 1989 |
+
|
| 1990 |
+
<tax_calculation_IT_7_shipping_companies_vat>
|
| 1991 |
+
<execute>1</execute>
|
| 1992 |
+
<tax_calculation_rate_id>32</tax_calculation_rate_id>
|
| 1993 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 1994 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 1995 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 1996 |
+
</tax_calculation_IT_7_shipping_companies_vat>
|
| 1997 |
+
|
| 1998 |
+
<tax_calculation_LV_19_customer>
|
| 1999 |
+
<execute>1</execute>
|
| 2000 |
+
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
| 2001 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2002 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2003 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2004 |
+
</tax_calculation_LV_19_customer>
|
| 2005 |
+
|
| 2006 |
+
<tax_calculation_LV_19_companies>
|
| 2007 |
+
<execute>1</execute>
|
| 2008 |
+
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
| 2009 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2010 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2011 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2012 |
+
</tax_calculation_LV_19_companies>
|
| 2013 |
+
|
| 2014 |
+
<tax_calculation_LV_19_shipping_customer>
|
| 2015 |
+
<execute>1</execute>
|
| 2016 |
+
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
| 2017 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2018 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2019 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2020 |
+
</tax_calculation_LV_19_shipping_customer>
|
| 2021 |
+
|
| 2022 |
+
<tax_calculation_LV_19_shipping_companies>
|
| 2023 |
+
<execute>1</execute>
|
| 2024 |
+
<tax_calculation_rate_id>33</tax_calculation_rate_id>
|
| 2025 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2026 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2027 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2028 |
+
</tax_calculation_LV_19_shipping_companies>
|
| 2029 |
+
|
| 2030 |
+
<tax_calculation_LV_7_customer>
|
| 2031 |
+
<execute>1</execute>
|
| 2032 |
+
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 2033 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2034 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2035 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2036 |
+
</tax_calculation_LV_7_customer>
|
| 2037 |
+
|
| 2038 |
+
<tax_calculation_LV_7_companies>
|
| 2039 |
+
<execute>1</execute>
|
| 2040 |
+
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 2041 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2042 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2043 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2044 |
+
</tax_calculation_LV_7_companies>
|
| 2045 |
+
|
| 2046 |
+
<tax_calculation_LV_7_shipping_customer>
|
| 2047 |
+
<execute>1</execute>
|
| 2048 |
+
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 2049 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2050 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2051 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2052 |
+
</tax_calculation_LV_7_shipping_customer>
|
| 2053 |
+
|
| 2054 |
+
<tax_calculation_LV_7_shipping_companies>
|
| 2055 |
+
<execute>1</execute>
|
| 2056 |
+
<tax_calculation_rate_id>34</tax_calculation_rate_id>
|
| 2057 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2058 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2059 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2060 |
+
</tax_calculation_LV_7_shipping_companies>
|
| 2061 |
+
|
| 2062 |
+
<tax_calculation_LV_19_companies_vat>
|
| 2063 |
+
<execute>1</execute>
|
| 2064 |
+
<tax_calculation_rate_id>35</tax_calculation_rate_id>
|
| 2065 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2066 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2067 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2068 |
+
</tax_calculation_LV_19_companies_vat>
|
| 2069 |
+
|
| 2070 |
+
<tax_calculation_LV_7_companies_vat>
|
| 2071 |
+
<execute>1</execute>
|
| 2072 |
+
<tax_calculation_rate_id>35</tax_calculation_rate_id>
|
| 2073 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2074 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2075 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2076 |
+
</tax_calculation_LV_7_companies_vat>
|
| 2077 |
+
|
| 2078 |
+
<tax_calculation_LV_19_shipping_companies_vat>
|
| 2079 |
+
<execute>1</execute>
|
| 2080 |
+
<tax_calculation_rate_id>35</tax_calculation_rate_id>
|
| 2081 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2082 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2083 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2084 |
+
</tax_calculation_LV_19_shipping_companies_vat>
|
| 2085 |
+
|
| 2086 |
+
<tax_calculation_LV_7_shipping_companies_vat>
|
| 2087 |
+
<execute>1</execute>
|
| 2088 |
+
<tax_calculation_rate_id>35</tax_calculation_rate_id>
|
| 2089 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2090 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2091 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2092 |
+
</tax_calculation_LV_7_shipping_companies_vat>
|
| 2093 |
+
|
| 2094 |
+
<tax_calculation_LT_19_customer>
|
| 2095 |
+
<execute>1</execute>
|
| 2096 |
+
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
| 2097 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2098 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2099 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2100 |
+
</tax_calculation_LT_19_customer>
|
| 2101 |
+
|
| 2102 |
+
<tax_calculation_LT_19_companies>
|
| 2103 |
+
<execute>1</execute>
|
| 2104 |
+
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
| 2105 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2106 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2107 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2108 |
+
</tax_calculation_LT_19_companies>
|
| 2109 |
+
|
| 2110 |
+
<tax_calculation_LT_19_shipping_customer>
|
| 2111 |
+
<execute>1</execute>
|
| 2112 |
+
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
| 2113 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2114 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2115 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2116 |
+
</tax_calculation_LT_19_shipping_customer>
|
| 2117 |
+
|
| 2118 |
+
<tax_calculation_LT_19_shipping_companies>
|
| 2119 |
+
<execute>1</execute>
|
| 2120 |
+
<tax_calculation_rate_id>36</tax_calculation_rate_id>
|
| 2121 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2122 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2123 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2124 |
+
</tax_calculation_LT_19_shipping_companies>
|
| 2125 |
+
|
| 2126 |
+
<tax_calculation_LT_7_customer>
|
| 2127 |
+
<execute>1</execute>
|
| 2128 |
+
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 2129 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2130 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2131 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2132 |
+
</tax_calculation_LT_7_customer>
|
| 2133 |
+
|
| 2134 |
+
<tax_calculation_LT_7_companies>
|
| 2135 |
+
<execute>1</execute>
|
| 2136 |
+
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 2137 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2138 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2139 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2140 |
+
</tax_calculation_LT_7_companies>
|
| 2141 |
+
|
| 2142 |
+
<tax_calculation_LT_7_shipping_customer>
|
| 2143 |
+
<execute>1</execute>
|
| 2144 |
+
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 2145 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2146 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2147 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2148 |
+
</tax_calculation_LT_7_shipping_customer>
|
| 2149 |
+
|
| 2150 |
+
<tax_calculation_LT_7_shipping_companies>
|
| 2151 |
+
<execute>1</execute>
|
| 2152 |
+
<tax_calculation_rate_id>37</tax_calculation_rate_id>
|
| 2153 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2154 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2155 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2156 |
+
</tax_calculation_LT_7_shipping_companies>
|
| 2157 |
+
|
| 2158 |
+
<tax_calculation_LT_19_companies_vat>
|
| 2159 |
+
<execute>1</execute>
|
| 2160 |
+
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 2161 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2162 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2163 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2164 |
+
</tax_calculation_LT_19_companies_vat>
|
| 2165 |
+
|
| 2166 |
+
<tax_calculation_LT_7_companies_vat>
|
| 2167 |
+
<execute>1</execute>
|
| 2168 |
+
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 2169 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2170 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2171 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2172 |
+
</tax_calculation_LT_7_companies_vat>
|
| 2173 |
+
|
| 2174 |
+
<tax_calculation_LT_19_shipping_companies_vat>
|
| 2175 |
+
<execute>1</execute>
|
| 2176 |
+
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 2177 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2178 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2179 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2180 |
+
</tax_calculation_LT_19_shipping_companies_vat>
|
| 2181 |
+
|
| 2182 |
+
<tax_calculation_LT_7_shipping_companies_vat>
|
| 2183 |
+
<execute>1</execute>
|
| 2184 |
+
<tax_calculation_rate_id>38</tax_calculation_rate_id>
|
| 2185 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2186 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2187 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2188 |
+
</tax_calculation_LT_7_shipping_companies_vat>
|
| 2189 |
+
|
| 2190 |
+
<tax_calculation_LU_19_customer>
|
| 2191 |
+
<execute>1</execute>
|
| 2192 |
+
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
| 2193 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2194 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2195 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2196 |
+
</tax_calculation_LU_19_customer>
|
| 2197 |
+
|
| 2198 |
+
<tax_calculation_LU_19_companies>
|
| 2199 |
+
<execute>1</execute>
|
| 2200 |
+
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
| 2201 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2202 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2203 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2204 |
+
</tax_calculation_LU_19_companies>
|
| 2205 |
+
|
| 2206 |
+
<tax_calculation_LU_19_shipping_customer>
|
| 2207 |
+
<execute>1</execute>
|
| 2208 |
+
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
| 2209 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2210 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2211 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2212 |
+
</tax_calculation_LU_19_shipping_customer>
|
| 2213 |
+
|
| 2214 |
+
<tax_calculation_LU_19_shipping_companies>
|
| 2215 |
+
<execute>1</execute>
|
| 2216 |
+
<tax_calculation_rate_id>39</tax_calculation_rate_id>
|
| 2217 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2218 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2219 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2220 |
+
</tax_calculation_LU_19_shipping_companies>
|
| 2221 |
+
|
| 2222 |
+
<tax_calculation_LU_7_customer>
|
| 2223 |
+
<execute>1</execute>
|
| 2224 |
+
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 2225 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2226 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2227 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2228 |
+
</tax_calculation_LU_7_customer>
|
| 2229 |
+
|
| 2230 |
+
<tax_calculation_LU_7_companies>
|
| 2231 |
+
<execute>1</execute>
|
| 2232 |
+
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 2233 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2234 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2235 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2236 |
+
</tax_calculation_LU_7_companies>
|
| 2237 |
+
|
| 2238 |
+
<tax_calculation_LU_7_shipping_customer>
|
| 2239 |
+
<execute>1</execute>
|
| 2240 |
+
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 2241 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2242 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2243 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2244 |
+
</tax_calculation_LU_7_shipping_customer>
|
| 2245 |
+
|
| 2246 |
+
<tax_calculation_LU_7_shipping_companies>
|
| 2247 |
+
<execute>1</execute>
|
| 2248 |
+
<tax_calculation_rate_id>40</tax_calculation_rate_id>
|
| 2249 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2250 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2251 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2252 |
+
</tax_calculation_LU_7_shipping_companies>
|
| 2253 |
+
|
| 2254 |
+
<tax_calculation_LU_19_companies_vat>
|
| 2255 |
+
<execute>1</execute>
|
| 2256 |
+
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 2257 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2258 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2259 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2260 |
+
</tax_calculation_LU_19_companies_vat>
|
| 2261 |
+
|
| 2262 |
+
<tax_calculation_LU_7_companies_vat>
|
| 2263 |
+
<execute>1</execute>
|
| 2264 |
+
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 2265 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2266 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2267 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2268 |
+
</tax_calculation_LU_7_companies_vat>
|
| 2269 |
+
|
| 2270 |
+
<tax_calculation_LU_19_shipping_companies_vat>
|
| 2271 |
+
<execute>1</execute>
|
| 2272 |
+
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 2273 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2274 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2275 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2276 |
+
</tax_calculation_LU_19_shipping_companies_vat>
|
| 2277 |
+
|
| 2278 |
+
<tax_calculation_LU_7_shipping_companies_vat>
|
| 2279 |
+
<execute>1</execute>
|
| 2280 |
+
<tax_calculation_rate_id>41</tax_calculation_rate_id>
|
| 2281 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2282 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2283 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2284 |
+
</tax_calculation_LU_7_shipping_companies_vat>
|
| 2285 |
+
|
| 2286 |
+
<tax_calculation_MT_19_customer>
|
| 2287 |
+
<execute>1</execute>
|
| 2288 |
+
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
| 2289 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2290 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2291 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2292 |
+
</tax_calculation_MT_19_customer>
|
| 2293 |
+
|
| 2294 |
+
<tax_calculation_MT_19_companies>
|
| 2295 |
+
<execute>1</execute>
|
| 2296 |
+
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
| 2297 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2298 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2299 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2300 |
+
</tax_calculation_MT_19_companies>
|
| 2301 |
+
|
| 2302 |
+
<tax_calculation_MT_19_shipping_customer>
|
| 2303 |
+
<execute>1</execute>
|
| 2304 |
+
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
| 2305 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2306 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2307 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2308 |
+
</tax_calculation_MT_19_shipping_customer>
|
| 2309 |
+
|
| 2310 |
+
<tax_calculation_MT_19_shipping_companies>
|
| 2311 |
+
<execute>1</execute>
|
| 2312 |
+
<tax_calculation_rate_id>42</tax_calculation_rate_id>
|
| 2313 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2314 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2315 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2316 |
+
</tax_calculation_MT_19_shipping_companies>
|
| 2317 |
+
|
| 2318 |
+
<tax_calculation_MT_7_customer>
|
| 2319 |
+
<execute>1</execute>
|
| 2320 |
+
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 2321 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2322 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2323 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2324 |
+
</tax_calculation_MT_7_customer>
|
| 2325 |
+
|
| 2326 |
+
<tax_calculation_MT_7_companies>
|
| 2327 |
+
<execute>1</execute>
|
| 2328 |
+
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 2329 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2330 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2331 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2332 |
+
</tax_calculation_MT_7_companies>
|
| 2333 |
+
|
| 2334 |
+
<tax_calculation_MT_7_shipping_customer>
|
| 2335 |
+
<execute>1</execute>
|
| 2336 |
+
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 2337 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2338 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2339 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2340 |
+
</tax_calculation_MT_7_shipping_customer>
|
| 2341 |
+
|
| 2342 |
+
<tax_calculation_MT_7_shipping_companies>
|
| 2343 |
+
<execute>1</execute>
|
| 2344 |
+
<tax_calculation_rate_id>43</tax_calculation_rate_id>
|
| 2345 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2346 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2347 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2348 |
+
</tax_calculation_MT_7_shipping_companies>
|
| 2349 |
+
|
| 2350 |
+
<tax_calculation_MT_19_companies_vat>
|
| 2351 |
+
<execute>1</execute>
|
| 2352 |
+
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 2353 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2354 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2355 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2356 |
+
</tax_calculation_MT_19_companies_vat>
|
| 2357 |
+
|
| 2358 |
+
<tax_calculation_MT_7_companies_vat>
|
| 2359 |
+
<execute>1</execute>
|
| 2360 |
+
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 2361 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2362 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2363 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2364 |
+
</tax_calculation_MT_7_companies_vat>
|
| 2365 |
+
|
| 2366 |
+
<tax_calculation_MT_19_shipping_companies_vat>
|
| 2367 |
+
<execute>1</execute>
|
| 2368 |
+
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 2369 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2370 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2371 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2372 |
+
</tax_calculation_MT_19_shipping_companies_vat>
|
| 2373 |
+
|
| 2374 |
+
<tax_calculation_MT_7_shipping_companies_vat>
|
| 2375 |
+
<execute>1</execute>
|
| 2376 |
+
<tax_calculation_rate_id>44</tax_calculation_rate_id>
|
| 2377 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2378 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2379 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2380 |
+
</tax_calculation_MT_7_shipping_companies_vat>
|
| 2381 |
+
|
| 2382 |
+
<tax_calculation_NL_19_customer>
|
| 2383 |
+
<execute>1</execute>
|
| 2384 |
+
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
| 2385 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2386 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2387 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2388 |
+
</tax_calculation_NL_19_customer>
|
| 2389 |
+
|
| 2390 |
+
<tax_calculation_NL_19_companies>
|
| 2391 |
+
<execute>1</execute>
|
| 2392 |
+
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
| 2393 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2394 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2395 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2396 |
+
</tax_calculation_NL_19_companies>
|
| 2397 |
+
|
| 2398 |
+
<tax_calculation_NL_19_shipping_customer>
|
| 2399 |
+
<execute>1</execute>
|
| 2400 |
+
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
| 2401 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2402 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2403 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2404 |
+
</tax_calculation_NL_19_shipping_customer>
|
| 2405 |
+
|
| 2406 |
+
<tax_calculation_NL_19_shipping_companies>
|
| 2407 |
+
<execute>1</execute>
|
| 2408 |
+
<tax_calculation_rate_id>45</tax_calculation_rate_id>
|
| 2409 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2410 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2411 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2412 |
+
</tax_calculation_NL_19_shipping_companies>
|
| 2413 |
+
|
| 2414 |
+
<tax_calculation_NL_7_customer>
|
| 2415 |
+
<execute>1</execute>
|
| 2416 |
+
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 2417 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2418 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2419 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2420 |
+
</tax_calculation_NL_7_customer>
|
| 2421 |
+
|
| 2422 |
+
<tax_calculation_NL_7_companies>
|
| 2423 |
+
<execute>1</execute>
|
| 2424 |
+
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 2425 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2426 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2427 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2428 |
+
</tax_calculation_NL_7_companies>
|
| 2429 |
+
|
| 2430 |
+
<tax_calculation_NL_7_shipping_customer>
|
| 2431 |
+
<execute>1</execute>
|
| 2432 |
+
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 2433 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2434 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2435 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2436 |
+
</tax_calculation_NL_7_shipping_customer>
|
| 2437 |
+
|
| 2438 |
+
<tax_calculation_NL_7_shipping_companies>
|
| 2439 |
+
<execute>1</execute>
|
| 2440 |
+
<tax_calculation_rate_id>46</tax_calculation_rate_id>
|
| 2441 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2442 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2443 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2444 |
+
</tax_calculation_NL_7_shipping_companies>
|
| 2445 |
+
|
| 2446 |
+
<tax_calculation_NL_19_companies_vat>
|
| 2447 |
+
<execute>1</execute>
|
| 2448 |
+
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 2449 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2450 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2451 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2452 |
+
</tax_calculation_NL_19_companies_vat>
|
| 2453 |
+
|
| 2454 |
+
<tax_calculation_NL_7_companies_vat>
|
| 2455 |
+
<execute>1</execute>
|
| 2456 |
+
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 2457 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2458 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2459 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2460 |
+
</tax_calculation_NL_7_companies_vat>
|
| 2461 |
+
|
| 2462 |
+
<tax_calculation_NL_19_shipping_companies_vat>
|
| 2463 |
+
<execute>1</execute>
|
| 2464 |
+
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 2465 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2466 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2467 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2468 |
+
</tax_calculation_NL_19_shipping_companies_vat>
|
| 2469 |
+
|
| 2470 |
+
<tax_calculation_NL_7_shipping_companies_vat>
|
| 2471 |
+
<execute>1</execute>
|
| 2472 |
+
<tax_calculation_rate_id>47</tax_calculation_rate_id>
|
| 2473 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2474 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2475 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2476 |
+
</tax_calculation_NL_7_shipping_companies_vat>
|
| 2477 |
+
|
| 2478 |
+
<tax_calculation_AT_19_customer>
|
| 2479 |
+
<execute>1</execute>
|
| 2480 |
+
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
| 2481 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2482 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2483 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2484 |
+
</tax_calculation_AT_19_customer>
|
| 2485 |
+
|
| 2486 |
+
<tax_calculation_AT_19_companies>
|
| 2487 |
+
<execute>1</execute>
|
| 2488 |
+
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
| 2489 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2490 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2491 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2492 |
+
</tax_calculation_AT_19_companies>
|
| 2493 |
+
|
| 2494 |
+
<tax_calculation_AT_19_shipping_customer>
|
| 2495 |
+
<execute>1</execute>
|
| 2496 |
+
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
| 2497 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2498 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2499 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2500 |
+
</tax_calculation_AT_19_shipping_customer>
|
| 2501 |
+
|
| 2502 |
+
<tax_calculation_AT_19_shipping_companies>
|
| 2503 |
+
<execute>1</execute>
|
| 2504 |
+
<tax_calculation_rate_id>48</tax_calculation_rate_id>
|
| 2505 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2506 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2507 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2508 |
+
</tax_calculation_AT_19_shipping_companies>
|
| 2509 |
+
|
| 2510 |
+
<tax_calculation_AT_7_customer>
|
| 2511 |
+
<execute>1</execute>
|
| 2512 |
+
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 2513 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2514 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2515 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2516 |
+
</tax_calculation_AT_7_customer>
|
| 2517 |
+
|
| 2518 |
+
<tax_calculation_AT_7_companies>
|
| 2519 |
+
<execute>1</execute>
|
| 2520 |
+
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 2521 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2522 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2523 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2524 |
+
</tax_calculation_AT_7_companies>
|
| 2525 |
+
|
| 2526 |
+
<tax_calculation_AT_7_shipping_customer>
|
| 2527 |
+
<execute>1</execute>
|
| 2528 |
+
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 2529 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2530 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2531 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2532 |
+
</tax_calculation_AT_7_shipping_customer>
|
| 2533 |
+
|
| 2534 |
+
<tax_calculation_AT_7_shipping_companies>
|
| 2535 |
+
<execute>1</execute>
|
| 2536 |
+
<tax_calculation_rate_id>49</tax_calculation_rate_id>
|
| 2537 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2538 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2539 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2540 |
+
</tax_calculation_AT_7_shipping_companies>
|
| 2541 |
+
|
| 2542 |
+
<tax_calculation_AT_19_companies_vat>
|
| 2543 |
+
<execute>1</execute>
|
| 2544 |
+
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 2545 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2546 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2547 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2548 |
+
</tax_calculation_AT_19_companies_vat>
|
| 2549 |
+
|
| 2550 |
+
<tax_calculation_AT_7_companies_vat>
|
| 2551 |
+
<execute>1</execute>
|
| 2552 |
+
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 2553 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2554 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2555 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2556 |
+
</tax_calculation_AT_7_companies_vat>
|
| 2557 |
+
|
| 2558 |
+
<tax_calculation_AT_19_shipping_companies_vat>
|
| 2559 |
+
<execute>1</execute>
|
| 2560 |
+
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 2561 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2562 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2563 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2564 |
+
</tax_calculation_AT_19_shipping_companies_vat>
|
| 2565 |
+
|
| 2566 |
+
<tax_calculation_AT_7_shipping_companies_vat>
|
| 2567 |
+
<execute>1</execute>
|
| 2568 |
+
<tax_calculation_rate_id>50</tax_calculation_rate_id>
|
| 2569 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2570 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2571 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2572 |
+
</tax_calculation_AT_7_shipping_companies_vat>
|
| 2573 |
+
|
| 2574 |
+
<tax_calculation_PL_19_customer>
|
| 2575 |
+
<execute>1</execute>
|
| 2576 |
+
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 2577 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2578 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2579 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2580 |
+
</tax_calculation_PL_19_customer>
|
| 2581 |
+
|
| 2582 |
+
<tax_calculation_PL_19_companies>
|
| 2583 |
+
<execute>1</execute>
|
| 2584 |
+
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 2585 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2586 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2587 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2588 |
+
</tax_calculation_PL_19_companies>
|
| 2589 |
+
|
| 2590 |
+
<tax_calculation_PL_19_shipping_customer>
|
| 2591 |
+
<execute>1</execute>
|
| 2592 |
+
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 2593 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2594 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2595 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2596 |
+
</tax_calculation_PL_19_shipping_customer>
|
| 2597 |
+
|
| 2598 |
+
<tax_calculation_PL_19_shipping_companies>
|
| 2599 |
+
<execute>1</execute>
|
| 2600 |
+
<tax_calculation_rate_id>51</tax_calculation_rate_id>
|
| 2601 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2602 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2603 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2604 |
+
</tax_calculation_PL_19_shipping_companies>
|
| 2605 |
+
|
| 2606 |
+
<tax_calculation_PL_7_customer>
|
| 2607 |
+
<execute>1</execute>
|
| 2608 |
+
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 2609 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2610 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2611 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2612 |
+
</tax_calculation_PL_7_customer>
|
| 2613 |
+
|
| 2614 |
+
<tax_calculation_PL_7_companies>
|
| 2615 |
+
<execute>1</execute>
|
| 2616 |
+
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 2617 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2618 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2619 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2620 |
+
</tax_calculation_PL_7_companies>
|
| 2621 |
+
|
| 2622 |
+
<tax_calculation_PL_7_shipping_customer>
|
| 2623 |
+
<execute>1</execute>
|
| 2624 |
+
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 2625 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2626 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2627 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2628 |
+
</tax_calculation_PL_7_shipping_customer>
|
| 2629 |
+
|
| 2630 |
+
<tax_calculation_PL_7_shipping_companies>
|
| 2631 |
+
<execute>1</execute>
|
| 2632 |
+
<tax_calculation_rate_id>52</tax_calculation_rate_id>
|
| 2633 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2634 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2635 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2636 |
+
</tax_calculation_PL_7_shipping_companies>
|
| 2637 |
+
|
| 2638 |
+
<tax_calculation_PL_19_companies_vat>
|
| 2639 |
+
<execute>1</execute>
|
| 2640 |
+
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 2641 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2642 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2643 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2644 |
+
</tax_calculation_PL_19_companies_vat>
|
| 2645 |
+
|
| 2646 |
+
<tax_calculation_PL_7_companies_vat>
|
| 2647 |
+
<execute>1</execute>
|
| 2648 |
+
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 2649 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2650 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2651 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2652 |
+
</tax_calculation_PL_7_companies_vat>
|
| 2653 |
+
|
| 2654 |
+
<tax_calculation_PL_19_shipping_companies_vat>
|
| 2655 |
+
<execute>1</execute>
|
| 2656 |
+
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 2657 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2658 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2659 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2660 |
+
</tax_calculation_PL_19_shipping_companies_vat>
|
| 2661 |
+
|
| 2662 |
+
<tax_calculation_PL_7_shipping_companies_vat>
|
| 2663 |
+
<execute>1</execute>
|
| 2664 |
+
<tax_calculation_rate_id>53</tax_calculation_rate_id>
|
| 2665 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2666 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2667 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2668 |
+
</tax_calculation_PL_7_shipping_companies_vat>
|
| 2669 |
+
|
| 2670 |
+
<tax_calculation_PT_19_customer>
|
| 2671 |
+
<execute>1</execute>
|
| 2672 |
+
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
| 2673 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2674 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2675 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2676 |
+
</tax_calculation_PT_19_customer>
|
| 2677 |
+
|
| 2678 |
+
<tax_calculation_PT_19_companies>
|
| 2679 |
+
<execute>1</execute>
|
| 2680 |
+
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
| 2681 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2682 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2683 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2684 |
+
</tax_calculation_PT_19_companies>
|
| 2685 |
+
|
| 2686 |
+
<tax_calculation_PT_19_shipping_customer>
|
| 2687 |
+
<execute>1</execute>
|
| 2688 |
+
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
| 2689 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2690 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2691 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2692 |
+
</tax_calculation_PT_19_shipping_customer>
|
| 2693 |
+
|
| 2694 |
+
<tax_calculation_PT_19_shipping_companies>
|
| 2695 |
+
<execute>1</execute>
|
| 2696 |
+
<tax_calculation_rate_id>54</tax_calculation_rate_id>
|
| 2697 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2698 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2699 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2700 |
+
</tax_calculation_PT_19_shipping_companies>
|
| 2701 |
+
|
| 2702 |
+
<tax_calculation_PT_7_customer>
|
| 2703 |
+
<execute>1</execute>
|
| 2704 |
+
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 2705 |
+
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2706 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2707 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2708 |
+
</tax_calculation_PT_7_customer>
|
| 2709 |
+
|
| 2710 |
+
<tax_calculation_PT_7_companies>
|
| 2711 |
+
<execute>1</execute>
|
| 2712 |
+
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 2713 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2714 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2715 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2716 |
+
</tax_calculation_PT_7_companies>
|
| 2717 |
+
|
| 2718 |
+
<tax_calculation_PT_7_shipping_customer>
|
| 2719 |
+
<execute>1</execute>
|
| 2720 |
+
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 2721 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2722 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2723 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2724 |
+
</tax_calculation_PT_7_shipping_customer>
|
| 2725 |
+
|
| 2726 |
+
<tax_calculation_PT_7_shipping_companies>
|
| 2727 |
+
<execute>1</execute>
|
| 2728 |
+
<tax_calculation_rate_id>55</tax_calculation_rate_id>
|
| 2729 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2730 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2731 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2732 |
+
</tax_calculation_PT_7_shipping_companies>
|
| 2733 |
+
|
| 2734 |
+
<tax_calculation_PT_19_companies_vat>
|
| 2735 |
+
<execute>1</execute>
|
| 2736 |
+
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 2737 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2738 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2739 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2740 |
+
</tax_calculation_PT_19_companies_vat>
|
| 2741 |
+
|
| 2742 |
+
<tax_calculation_PT_7_companies_vat>
|
| 2743 |
+
<execute>1</execute>
|
| 2744 |
+
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 2745 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2746 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2747 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2748 |
+
</tax_calculation_PT_7_companies_vat>
|
| 2749 |
+
|
| 2750 |
+
<tax_calculation_PT_19_shipping_companies_vat>
|
| 2751 |
+
<execute>1</execute>
|
| 2752 |
+
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 2753 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2754 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2755 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2756 |
+
</tax_calculation_PT_19_shipping_companies_vat>
|
| 2757 |
+
|
| 2758 |
+
<tax_calculation_PT_7_shipping_companies_vat>
|
| 2759 |
+
<execute>1</execute>
|
| 2760 |
+
<tax_calculation_rate_id>56</tax_calculation_rate_id>
|
| 2761 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2762 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2763 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2764 |
+
</tax_calculation_PT_7_shipping_companies_vat>
|
| 2765 |
+
|
| 2766 |
+
<tax_calculation_RO_19_customer>
|
| 2767 |
+
<execute>1</execute>
|
| 2768 |
+
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
| 2769 |
+
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2770 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2771 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2772 |
+
</tax_calculation_RO_19_customer>
|
| 2773 |
+
|
| 2774 |
+
<tax_calculation_RO_19_companies>
|
| 2775 |
+
<execute>1</execute>
|
| 2776 |
+
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
| 2777 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2778 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2779 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2780 |
+
</tax_calculation_RO_19_companies>
|
| 2781 |
+
|
| 2782 |
+
<tax_calculation_RO_19_shipping_customer>
|
| 2783 |
+
<execute>1</execute>
|
| 2784 |
+
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
| 2785 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2786 |
+
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2787 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2788 |
+
</tax_calculation_RO_19_shipping_customer>
|
| 2789 |
+
|
| 2790 |
+
<tax_calculation_RO_19_shipping_companies>
|
| 2791 |
+
<execute>1</execute>
|
| 2792 |
+
<tax_calculation_rate_id>57</tax_calculation_rate_id>
|
| 2793 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2794 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2795 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2796 |
+
</tax_calculation_RO_19_shipping_companies>
|
| 2797 |
+
|
| 2798 |
+
<tax_calculation_RO_7_customer>
|
| 2799 |
<execute>1</execute>
|
| 2800 |
+
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 2801 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2802 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2803 |
<product_tax_class_id>2</product_tax_class_id>
|
| 2804 |
+
</tax_calculation_RO_7_customer>
|
| 2805 |
+
|
| 2806 |
+
<tax_calculation_RO_7_companies>
|
| 2807 |
<execute>1</execute>
|
| 2808 |
+
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 2809 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2810 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2811 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2812 |
+
</tax_calculation_RO_7_companies>
|
| 2813 |
+
|
| 2814 |
+
<tax_calculation_RO_7_shipping_customer>
|
| 2815 |
+
<execute>1</execute>
|
| 2816 |
+
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 2817 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2818 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2819 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2820 |
+
</tax_calculation_RO_7_shipping_customer>
|
| 2821 |
+
|
| 2822 |
+
<tax_calculation_RO_7_shipping_companies>
|
| 2823 |
+
<execute>1</execute>
|
| 2824 |
+
<tax_calculation_rate_id>58</tax_calculation_rate_id>
|
| 2825 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2826 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2827 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2828 |
+
</tax_calculation_RO_7_shipping_companies>
|
| 2829 |
+
|
| 2830 |
+
<tax_calculation_RO_19_companies_vat>
|
| 2831 |
+
<execute>1</execute>
|
| 2832 |
+
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 2833 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2834 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2835 |
<product_tax_class_id>1</product_tax_class_id>
|
| 2836 |
+
</tax_calculation_RO_19_companies_vat>
|
| 2837 |
+
|
| 2838 |
+
<tax_calculation_RO_7_companies_vat>
|
| 2839 |
<execute>1</execute>
|
| 2840 |
+
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 2841 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2842 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2843 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2844 |
+
</tax_calculation_RO_7_companies_vat>
|
| 2845 |
+
|
| 2846 |
+
<tax_calculation_RO_19_shipping_companies_vat>
|
| 2847 |
+
<execute>1</execute>
|
| 2848 |
+
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 2849 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2850 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2851 |
<product_tax_class_id>4</product_tax_class_id>
|
| 2852 |
+
</tax_calculation_RO_19_shipping_companies_vat>
|
| 2853 |
+
|
| 2854 |
+
<tax_calculation_RO_7_shipping_companies_vat>
|
| 2855 |
<execute>1</execute>
|
| 2856 |
+
<tax_calculation_rate_id>59</tax_calculation_rate_id>
|
| 2857 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2858 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2859 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2860 |
+
</tax_calculation_RO_7_shipping_companies_vat>
|
| 2861 |
+
|
| 2862 |
+
<tax_calculation_SE_19_customer>
|
| 2863 |
<execute>1</execute>
|
| 2864 |
+
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
| 2865 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2866 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2867 |
<product_tax_class_id>1</product_tax_class_id>
|
| 2868 |
+
</tax_calculation_SE_19_customer>
|
| 2869 |
+
|
| 2870 |
+
<tax_calculation_SE_19_companies>
|
| 2871 |
+
<execute>1</execute>
|
| 2872 |
+
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
| 2873 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2874 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2875 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2876 |
+
</tax_calculation_SE_19_companies>
|
| 2877 |
+
|
| 2878 |
+
<tax_calculation_SE_19_shipping_customer>
|
| 2879 |
<execute>1</execute>
|
| 2880 |
+
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
| 2881 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2882 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2883 |
<product_tax_class_id>4</product_tax_class_id>
|
| 2884 |
+
</tax_calculation_SE_19_shipping_customer>
|
| 2885 |
+
|
| 2886 |
+
<tax_calculation_SE_19_shipping_companies>
|
| 2887 |
<execute>1</execute>
|
| 2888 |
+
<tax_calculation_rate_id>60</tax_calculation_rate_id>
|
| 2889 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2890 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2891 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2892 |
+
</tax_calculation_SE_19_shipping_companies>
|
| 2893 |
+
|
| 2894 |
+
<tax_calculation_SE_7_customer>
|
| 2895 |
+
<execute>1</execute>
|
| 2896 |
+
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 2897 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2898 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2899 |
<product_tax_class_id>2</product_tax_class_id>
|
| 2900 |
+
</tax_calculation_SE_7_customer>
|
| 2901 |
+
|
| 2902 |
+
<tax_calculation_SE_7_companies>
|
| 2903 |
<execute>1</execute>
|
| 2904 |
+
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 2905 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 2906 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2907 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2908 |
+
</tax_calculation_SE_7_companies>
|
| 2909 |
+
|
| 2910 |
+
<tax_calculation_SE_7_shipping_customer>
|
| 2911 |
+
<execute>1</execute>
|
| 2912 |
+
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 2913 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2914 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2915 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2916 |
+
</tax_calculation_SE_7_shipping_customer>
|
| 2917 |
+
|
| 2918 |
+
<tax_calculation_SE_7_shipping_companies>
|
| 2919 |
+
<execute>1</execute>
|
| 2920 |
+
<tax_calculation_rate_id>61</tax_calculation_rate_id>
|
| 2921 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 2922 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2923 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2924 |
+
</tax_calculation_SE_7_shipping_companies>
|
| 2925 |
+
|
| 2926 |
+
<tax_calculation_SE_19_companies_vat>
|
| 2927 |
+
<execute>1</execute>
|
| 2928 |
+
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 2929 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2930 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2931 |
<product_tax_class_id>1</product_tax_class_id>
|
| 2932 |
+
</tax_calculation_SE_19_companies_vat>
|
| 2933 |
+
|
| 2934 |
+
<tax_calculation_SE_7_companies_vat>
|
| 2935 |
<execute>1</execute>
|
| 2936 |
+
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 2937 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2938 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2939 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 2940 |
+
</tax_calculation_SE_7_companies_vat>
|
| 2941 |
+
|
| 2942 |
+
<tax_calculation_SE_19_shipping_companies_vat>
|
| 2943 |
+
<execute>1</execute>
|
| 2944 |
+
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 2945 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2946 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2947 |
<product_tax_class_id>4</product_tax_class_id>
|
| 2948 |
+
</tax_calculation_SE_19_shipping_companies_vat>
|
| 2949 |
+
|
| 2950 |
+
<tax_calculation_SE_7_shipping_companies_vat>
|
| 2951 |
<execute>1</execute>
|
| 2952 |
+
<tax_calculation_rate_id>62</tax_calculation_rate_id>
|
| 2953 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 2954 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 2955 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 2956 |
+
</tax_calculation_SE_7_shipping_companies_vat>
|
| 2957 |
+
|
| 2958 |
+
<tax_calculation_SK_19_customer>
|
| 2959 |
<execute>1</execute>
|
| 2960 |
+
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 2961 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 2962 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2963 |
<product_tax_class_id>1</product_tax_class_id>
|
| 2964 |
+
</tax_calculation_SK_19_customer>
|
| 2965 |
+
|
| 2966 |
+
<tax_calculation_SK_19_companies>
|
| 2967 |
<execute>1</execute>
|
| 2968 |
+
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 2969 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 2970 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2971 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 2972 |
+
</tax_calculation_SK_19_companies>
|
| 2973 |
+
|
| 2974 |
+
<tax_calculation_SK_19_shipping_customer>
|
| 2975 |
+
<execute>1</execute>
|
| 2976 |
+
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 2977 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2978 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2979 |
<product_tax_class_id>4</product_tax_class_id>
|
| 2980 |
+
</tax_calculation_SK_19_shipping_customer>
|
| 2981 |
+
|
| 2982 |
+
<tax_calculation_SK_19_shipping_companies>
|
| 2983 |
+
<execute>1</execute>
|
| 2984 |
+
<tax_calculation_rate_id>63</tax_calculation_rate_id>
|
| 2985 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 2986 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 2987 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 2988 |
+
</tax_calculation_SK_19_shipping_companies>
|
| 2989 |
+
|
| 2990 |
+
<tax_calculation_SK_7_customer>
|
| 2991 |
<execute>1</execute>
|
| 2992 |
+
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 2993 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 2994 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 2995 |
<product_tax_class_id>2</product_tax_class_id>
|
| 2996 |
+
</tax_calculation_SK_7_customer>
|
| 2997 |
+
|
| 2998 |
+
<tax_calculation_SK_7_companies>
|
| 2999 |
<execute>1</execute>
|
| 3000 |
+
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 3001 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3002 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3003 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3004 |
+
</tax_calculation_SK_7_companies>
|
| 3005 |
+
|
| 3006 |
+
<tax_calculation_SK_7_shipping_customer>
|
| 3007 |
+
<execute>1</execute>
|
| 3008 |
+
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 3009 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3010 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3011 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3012 |
+
</tax_calculation_SK_7_shipping_customer>
|
| 3013 |
+
|
| 3014 |
+
<tax_calculation_SK_7_shipping_companies>
|
| 3015 |
+
<execute>1</execute>
|
| 3016 |
+
<tax_calculation_rate_id>64</tax_calculation_rate_id>
|
| 3017 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3018 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3019 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3020 |
+
</tax_calculation_SK_7_shipping_companies>
|
| 3021 |
+
|
| 3022 |
+
<tax_calculation_SK_19_companies_vat>
|
| 3023 |
+
<execute>1</execute>
|
| 3024 |
+
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 3025 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3026 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3027 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3028 |
+
</tax_calculation_SK_19_companies_vat>
|
| 3029 |
+
|
| 3030 |
+
<tax_calculation_SK_7_companies_vat>
|
| 3031 |
<execute>1</execute>
|
| 3032 |
+
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 3033 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3034 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3035 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3036 |
+
</tax_calculation_SK_7_companies_vat>
|
| 3037 |
+
|
| 3038 |
+
<tax_calculation_SK_19_shipping_companies_vat>
|
| 3039 |
+
<execute>1</execute>
|
| 3040 |
+
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 3041 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3042 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3043 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3044 |
+
</tax_calculation_SK_19_shipping_companies_vat>
|
| 3045 |
+
|
| 3046 |
+
<tax_calculation_SK_7_shipping_companies_vat>
|
| 3047 |
<execute>1</execute>
|
| 3048 |
+
<tax_calculation_rate_id>65</tax_calculation_rate_id>
|
| 3049 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3050 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3051 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3052 |
+
</tax_calculation_SK_7_shipping_companies_vat>
|
| 3053 |
+
|
| 3054 |
+
<tax_calculation_SI_19_customer>
|
| 3055 |
<execute>1</execute>
|
| 3056 |
+
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
| 3057 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3058 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3059 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3060 |
+
</tax_calculation_SI_19_customer>
|
| 3061 |
+
|
| 3062 |
+
<tax_calculation_SI_19_companies>
|
| 3063 |
<execute>1</execute>
|
| 3064 |
+
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
| 3065 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3066 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3067 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3068 |
+
</tax_calculation_SI_19_companies>
|
| 3069 |
+
|
| 3070 |
+
<tax_calculation_SI_19_shipping_customer>
|
| 3071 |
+
<execute>1</execute>
|
| 3072 |
+
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
| 3073 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3074 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3075 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3076 |
+
</tax_calculation_SI_19_shipping_customer>
|
| 3077 |
+
|
| 3078 |
+
<tax_calculation_SI_19_shipping_companies>
|
| 3079 |
<execute>1</execute>
|
| 3080 |
+
<tax_calculation_rate_id>66</tax_calculation_rate_id>
|
| 3081 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3082 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3083 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 3084 |
+
</tax_calculation_SI_19_shipping_companies>
|
| 3085 |
+
|
| 3086 |
+
<tax_calculation_SI_7_customer>
|
| 3087 |
+
<execute>1</execute>
|
| 3088 |
+
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 3089 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3090 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3091 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3092 |
+
</tax_calculation_SI_7_customer>
|
| 3093 |
+
|
| 3094 |
+
<tax_calculation_SI_7_companies>
|
| 3095 |
+
<execute>1</execute>
|
| 3096 |
+
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 3097 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3098 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3099 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3100 |
+
</tax_calculation_SI_7_companies>
|
| 3101 |
+
|
| 3102 |
+
<tax_calculation_SI_7_shipping_customer>
|
| 3103 |
<execute>1</execute>
|
| 3104 |
+
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 3105 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3106 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3107 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3108 |
+
</tax_calculation_SI_7_shipping_customer>
|
| 3109 |
+
|
| 3110 |
+
<tax_calculation_SI_7_shipping_companies>
|
| 3111 |
+
<execute>1</execute>
|
| 3112 |
+
<tax_calculation_rate_id>67</tax_calculation_rate_id>
|
| 3113 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3114 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3115 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3116 |
+
</tax_calculation_SI_7_shipping_companies>
|
| 3117 |
+
|
| 3118 |
+
<tax_calculation_SI_19_companies_vat>
|
| 3119 |
+
<execute>1</execute>
|
| 3120 |
+
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 3121 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3122 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3123 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3124 |
+
</tax_calculation_SI_19_companies_vat>
|
| 3125 |
+
|
| 3126 |
+
<tax_calculation_SI_7_companies_vat>
|
| 3127 |
<execute>1</execute>
|
| 3128 |
+
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 3129 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3130 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3131 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3132 |
+
</tax_calculation_SI_7_companies_vat>
|
| 3133 |
+
|
| 3134 |
+
<tax_calculation_SI_19_shipping_companies_vat>
|
| 3135 |
+
<execute>1</execute>
|
| 3136 |
+
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 3137 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3138 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3139 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3140 |
+
</tax_calculation_SI_19_shipping_companies_vat>
|
| 3141 |
+
|
| 3142 |
+
<tax_calculation_SI_7_shipping_companies_vat>
|
| 3143 |
<execute>1</execute>
|
| 3144 |
+
<tax_calculation_rate_id>68</tax_calculation_rate_id>
|
| 3145 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3146 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3147 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3148 |
+
</tax_calculation_SI_7_shipping_companies_vat>
|
| 3149 |
+
|
| 3150 |
+
<tax_calculation_ES_19_customer>
|
| 3151 |
<execute>1</execute>
|
| 3152 |
+
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
| 3153 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3154 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3155 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3156 |
+
</tax_calculation_ES_19_customer>
|
| 3157 |
+
|
| 3158 |
+
<tax_calculation_ES_19_companies>
|
| 3159 |
<execute>1</execute>
|
| 3160 |
+
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
| 3161 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3162 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3163 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3164 |
+
</tax_calculation_ES_19_companies>
|
| 3165 |
+
|
| 3166 |
+
<tax_calculation_ES_19_shipping_customer>
|
| 3167 |
+
<execute>1</execute>
|
| 3168 |
+
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
| 3169 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3170 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3171 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3172 |
+
</tax_calculation_ES_19_shipping_customer>
|
| 3173 |
+
|
| 3174 |
+
<tax_calculation_ES_19_shipping_companies>
|
| 3175 |
<execute>1</execute>
|
| 3176 |
+
<tax_calculation_rate_id>69</tax_calculation_rate_id>
|
| 3177 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3178 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3179 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 3180 |
+
</tax_calculation_ES_19_shipping_companies>
|
| 3181 |
+
|
| 3182 |
+
<tax_calculation_ES_7_customer>
|
| 3183 |
+
<execute>1</execute>
|
| 3184 |
+
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 3185 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3186 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3187 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3188 |
+
</tax_calculation_ES_7_customer>
|
| 3189 |
+
|
| 3190 |
+
<tax_calculation_ES_7_companies>
|
| 3191 |
<execute>1</execute>
|
| 3192 |
+
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 3193 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3194 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3195 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3196 |
+
</tax_calculation_ES_7_companies>
|
| 3197 |
+
|
| 3198 |
+
<tax_calculation_ES_7_shipping_customer>
|
| 3199 |
+
<execute>1</execute>
|
| 3200 |
+
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 3201 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3202 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3203 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3204 |
+
</tax_calculation_ES_7_shipping_customer>
|
| 3205 |
+
|
| 3206 |
+
<tax_calculation_ES_7_shipping_companies>
|
| 3207 |
+
<execute>1</execute>
|
| 3208 |
+
<tax_calculation_rate_id>70</tax_calculation_rate_id>
|
| 3209 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3210 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3211 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3212 |
+
</tax_calculation_ES_7_shipping_companies>
|
| 3213 |
+
|
| 3214 |
+
<tax_calculation_ES_19_companies_vat>
|
| 3215 |
+
<execute>1</execute>
|
| 3216 |
+
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 3217 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3218 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3219 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3220 |
+
</tax_calculation_ES_19_companies_vat>
|
| 3221 |
+
|
| 3222 |
+
<tax_calculation_ES_7_companies_vat>
|
| 3223 |
<execute>1</execute>
|
| 3224 |
+
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 3225 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3226 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3227 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3228 |
+
</tax_calculation_ES_7_companies_vat>
|
| 3229 |
+
|
| 3230 |
+
<tax_calculation_ES_19_shipping_companies_vat>
|
| 3231 |
+
<execute>1</execute>
|
| 3232 |
+
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 3233 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3234 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3235 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3236 |
+
</tax_calculation_ES_19_shipping_companies_vat>
|
| 3237 |
+
|
| 3238 |
+
<tax_calculation_ES_7_shipping_companies_vat>
|
| 3239 |
<execute>1</execute>
|
| 3240 |
+
<tax_calculation_rate_id>71</tax_calculation_rate_id>
|
| 3241 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3242 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3243 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3244 |
+
</tax_calculation_ES_7_shipping_companies_vat>
|
| 3245 |
+
|
| 3246 |
+
<tax_calculation_CZ_19_customer>
|
| 3247 |
<execute>1</execute>
|
| 3248 |
+
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
| 3249 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3250 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3251 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3252 |
+
</tax_calculation_CZ_19_customer>
|
| 3253 |
+
|
| 3254 |
+
<tax_calculation_CZ_19_companies>
|
| 3255 |
<execute>1</execute>
|
| 3256 |
+
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
| 3257 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3258 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3259 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3260 |
+
</tax_calculation_CZ_19_companies>
|
| 3261 |
+
|
| 3262 |
+
<tax_calculation_CZ_19_shipping_customer>
|
| 3263 |
+
<execute>1</execute>
|
| 3264 |
+
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
| 3265 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3266 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3267 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3268 |
+
</tax_calculation_CZ_19_shipping_customer>
|
| 3269 |
+
|
| 3270 |
+
<tax_calculation_CZ_19_shipping_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3271 |
<execute>1</execute>
|
| 3272 |
+
<tax_calculation_rate_id>72</tax_calculation_rate_id>
|
| 3273 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3274 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3275 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3276 |
+
</tax_calculation_CZ_19_shipping_companies>
|
| 3277 |
+
|
| 3278 |
+
<tax_calculation_CZ_7_customer>
|
| 3279 |
<execute>1</execute>
|
| 3280 |
+
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 3281 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3282 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3283 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3284 |
+
</tax_calculation_CZ_7_customer>
|
| 3285 |
+
|
| 3286 |
+
<tax_calculation_CZ_7_companies>
|
| 3287 |
<execute>1</execute>
|
| 3288 |
+
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 3289 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3290 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3291 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3292 |
+
</tax_calculation_CZ_7_companies>
|
| 3293 |
+
|
| 3294 |
+
<tax_calculation_CZ_7_shipping_customer>
|
| 3295 |
<execute>1</execute>
|
| 3296 |
+
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 3297 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3298 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3299 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3300 |
+
</tax_calculation_CZ_7_shipping_customer>
|
| 3301 |
+
|
| 3302 |
+
<tax_calculation_CZ_7_shipping_companies>
|
| 3303 |
<execute>1</execute>
|
| 3304 |
+
<tax_calculation_rate_id>73</tax_calculation_rate_id>
|
| 3305 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3306 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3307 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3308 |
+
</tax_calculation_CZ_7_shipping_companies>
|
| 3309 |
+
|
| 3310 |
+
<tax_calculation_CZ_19_companies_vat>
|
| 3311 |
<execute>1</execute>
|
| 3312 |
+
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 3313 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3314 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3315 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3316 |
+
</tax_calculation_CZ_19_companies_vat>
|
| 3317 |
+
|
| 3318 |
+
<tax_calculation_CZ_7_companies_vat>
|
| 3319 |
<execute>1</execute>
|
| 3320 |
+
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 3321 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3322 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3323 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3324 |
+
</tax_calculation_CZ_7_companies_vat>
|
| 3325 |
+
|
| 3326 |
+
<tax_calculation_CZ_19_shipping_companies_vat>
|
| 3327 |
+
<execute>1</execute>
|
| 3328 |
+
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 3329 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3330 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3331 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3332 |
+
</tax_calculation_CZ_19_shipping_companies_vat>
|
| 3333 |
+
|
| 3334 |
+
<tax_calculation_CZ_7_shipping_companies_vat>
|
| 3335 |
<execute>1</execute>
|
| 3336 |
+
<tax_calculation_rate_id>74</tax_calculation_rate_id>
|
| 3337 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3338 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3339 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3340 |
+
</tax_calculation_CZ_7_shipping_companies_vat>
|
| 3341 |
+
|
| 3342 |
+
<tax_calculation_HU_19_customer>
|
| 3343 |
<execute>1</execute>
|
| 3344 |
+
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
| 3345 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3346 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3347 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3348 |
+
</tax_calculation_HU_19_customer>
|
| 3349 |
+
|
| 3350 |
+
<tax_calculation_HU_19_companies>
|
| 3351 |
<execute>1</execute>
|
| 3352 |
+
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
| 3353 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3354 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3355 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3356 |
+
</tax_calculation_HU_19_companies>
|
| 3357 |
+
|
| 3358 |
+
<tax_calculation_HU_19_shipping_customer>
|
| 3359 |
+
<execute>1</execute>
|
| 3360 |
+
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
| 3361 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3362 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3363 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3364 |
+
</tax_calculation_HU_19_shipping_customer>
|
| 3365 |
+
|
| 3366 |
+
<tax_calculation_HU_19_shipping_companies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3367 |
<execute>1</execute>
|
| 3368 |
+
<tax_calculation_rate_id>75</tax_calculation_rate_id>
|
| 3369 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3370 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3371 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3372 |
+
</tax_calculation_HU_19_shipping_companies>
|
| 3373 |
+
|
| 3374 |
+
<tax_calculation_HU_7_customer>
|
| 3375 |
<execute>1</execute>
|
| 3376 |
+
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 3377 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3378 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3379 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3380 |
+
</tax_calculation_HU_7_customer>
|
| 3381 |
+
|
| 3382 |
+
<tax_calculation_HU_7_companies>
|
| 3383 |
<execute>1</execute>
|
| 3384 |
+
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 3385 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3386 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3387 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3388 |
+
</tax_calculation_HU_7_companies>
|
| 3389 |
+
|
| 3390 |
+
<tax_calculation_HU_7_shipping_customer>
|
| 3391 |
<execute>1</execute>
|
| 3392 |
+
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 3393 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3394 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3395 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3396 |
+
</tax_calculation_HU_7_shipping_customer>
|
| 3397 |
+
|
| 3398 |
+
<tax_calculation_HU_7_shipping_companies>
|
| 3399 |
<execute>1</execute>
|
| 3400 |
+
<tax_calculation_rate_id>76</tax_calculation_rate_id>
|
| 3401 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3402 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3403 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3404 |
+
</tax_calculation_HU_7_shipping_companies>
|
| 3405 |
+
|
| 3406 |
+
<tax_calculation_HU_19_companies_vat>
|
| 3407 |
<execute>1</execute>
|
| 3408 |
+
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 3409 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3410 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3411 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3412 |
+
</tax_calculation_HU_19_companies_vat>
|
| 3413 |
+
|
| 3414 |
+
<tax_calculation_HU_7_companies_vat>
|
| 3415 |
<execute>1</execute>
|
| 3416 |
+
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 3417 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3418 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3419 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3420 |
+
</tax_calculation_HU_7_companies_vat>
|
| 3421 |
+
|
| 3422 |
+
<tax_calculation_HU_19_shipping_companies_vat>
|
| 3423 |
+
<execute>1</execute>
|
| 3424 |
+
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 3425 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3426 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3427 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3428 |
+
</tax_calculation_HU_19_shipping_companies_vat>
|
| 3429 |
+
|
| 3430 |
+
<tax_calculation_HU_7_shipping_companies_vat>
|
| 3431 |
<execute>1</execute>
|
| 3432 |
+
<tax_calculation_rate_id>77</tax_calculation_rate_id>
|
| 3433 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3434 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3435 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3436 |
+
</tax_calculation_HU_7_shipping_companies_vat>
|
| 3437 |
+
|
| 3438 |
+
<tax_calculation_GB_19_customer>
|
| 3439 |
<execute>1</execute>
|
| 3440 |
+
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
| 3441 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3442 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3443 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3444 |
+
</tax_calculation_GB_19_customer>
|
| 3445 |
+
|
| 3446 |
+
<tax_calculation_GB_19_companies>
|
| 3447 |
<execute>1</execute>
|
| 3448 |
+
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
| 3449 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3450 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3451 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3452 |
+
</tax_calculation_GB_19_companies>
|
| 3453 |
+
|
| 3454 |
+
<tax_calculation_GB_19_shipping_customer>
|
| 3455 |
+
<execute>1</execute>
|
| 3456 |
+
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
| 3457 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3458 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3459 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3460 |
+
</tax_calculation_GB_19_shipping_customer>
|
| 3461 |
+
|
| 3462 |
+
<tax_calculation_GB_19_shipping_companies>
|
| 3463 |
<execute>1</execute>
|
| 3464 |
+
<tax_calculation_rate_id>78</tax_calculation_rate_id>
|
| 3465 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3466 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3467 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 3468 |
+
</tax_calculation_GB_19_shipping_companies>
|
| 3469 |
+
|
| 3470 |
+
<tax_calculation_GB_7_customer>
|
| 3471 |
+
<execute>1</execute>
|
| 3472 |
+
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 3473 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3474 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3475 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3476 |
+
</tax_calculation_GB_7_customer>
|
| 3477 |
+
|
| 3478 |
+
<tax_calculation_GB_7_companies>
|
| 3479 |
+
<execute>1</execute>
|
| 3480 |
+
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 3481 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3482 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3483 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3484 |
+
</tax_calculation_GB_7_companies>
|
| 3485 |
+
|
| 3486 |
+
<tax_calculation_GB_7_shipping_customer>
|
| 3487 |
<execute>1</execute>
|
| 3488 |
+
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 3489 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3490 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3491 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3492 |
+
</tax_calculation_GB_7_shipping_customer>
|
| 3493 |
+
|
| 3494 |
+
<tax_calculation_GB_7_shipping_companies>
|
| 3495 |
+
<execute>1</execute>
|
| 3496 |
+
<tax_calculation_rate_id>79</tax_calculation_rate_id>
|
| 3497 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3498 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3499 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3500 |
+
</tax_calculation_GB_7_shipping_companies>
|
| 3501 |
+
|
| 3502 |
+
<tax_calculation_GB_19_companies_vat>
|
| 3503 |
+
<execute>1</execute>
|
| 3504 |
+
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 3505 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3506 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3507 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3508 |
+
</tax_calculation_GB_19_companies_vat>
|
| 3509 |
+
|
| 3510 |
+
<tax_calculation_GB_7_companies_vat>
|
| 3511 |
<execute>1</execute>
|
| 3512 |
+
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 3513 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3514 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3515 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3516 |
+
</tax_calculation_GB_7_companies_vat>
|
| 3517 |
+
|
| 3518 |
+
<tax_calculation_GB_19_shipping_companies_vat>
|
| 3519 |
+
<execute>1</execute>
|
| 3520 |
+
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 3521 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3522 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3523 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3524 |
+
</tax_calculation_GB_19_shipping_companies_vat>
|
| 3525 |
+
|
| 3526 |
+
<tax_calculation_GB_7_shipping_companies_vat>
|
| 3527 |
<execute>1</execute>
|
| 3528 |
+
<tax_calculation_rate_id>80</tax_calculation_rate_id>
|
| 3529 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3530 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3531 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3532 |
+
</tax_calculation_GB_7_shipping_companies_vat>
|
| 3533 |
+
|
| 3534 |
+
<tax_calculation_CY_19_customer>
|
| 3535 |
<execute>1</execute>
|
| 3536 |
+
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
| 3537 |
<tax_calculation_rule_id>3</tax_calculation_rule_id>
|
| 3538 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3539 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3540 |
+
</tax_calculation_CY_19_customer>
|
| 3541 |
+
|
| 3542 |
+
<tax_calculation_CY_19_companies>
|
| 3543 |
<execute>1</execute>
|
| 3544 |
+
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
| 3545 |
+
<tax_calculation_rule_id>6</tax_calculation_rule_id>
|
| 3546 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3547 |
+
<product_tax_class_id>1</product_tax_class_id>
|
| 3548 |
+
</tax_calculation_CY_19_companies>
|
| 3549 |
+
|
| 3550 |
+
<tax_calculation_CY_19_shipping_customer>
|
| 3551 |
+
<execute>1</execute>
|
| 3552 |
+
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
| 3553 |
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3554 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3555 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3556 |
+
</tax_calculation_CY_19_shipping_customer>
|
| 3557 |
+
|
| 3558 |
+
<tax_calculation_CY_19_shipping_companies>
|
| 3559 |
<execute>1</execute>
|
| 3560 |
+
<tax_calculation_rate_id>81</tax_calculation_rate_id>
|
| 3561 |
+
<tax_calculation_rule_id>5</tax_calculation_rule_id>
|
| 3562 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3563 |
+
<product_tax_class_id>4</product_tax_class_id>
|
| 3564 |
+
</tax_calculation_CY_19_shipping_companies>
|
| 3565 |
+
|
| 3566 |
+
<tax_calculation_CY_7_customer>
|
| 3567 |
+
<execute>1</execute>
|
| 3568 |
+
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 3569 |
<tax_calculation_rule_id>4</tax_calculation_rule_id>
|
| 3570 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3571 |
<product_tax_class_id>2</product_tax_class_id>
|
| 3572 |
+
</tax_calculation_CY_7_customer>
|
| 3573 |
+
|
| 3574 |
+
<tax_calculation_CY_7_companies>
|
| 3575 |
<execute>1</execute>
|
| 3576 |
+
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 3577 |
+
<tax_calculation_rule_id>8</tax_calculation_rule_id>
|
| 3578 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3579 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3580 |
+
</tax_calculation_CY_7_companies>
|
| 3581 |
+
|
| 3582 |
+
<tax_calculation_CY_7_shipping_customer>
|
| 3583 |
+
<execute>1</execute>
|
| 3584 |
+
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 3585 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3586 |
<customer_tax_class_id>3</customer_tax_class_id>
|
| 3587 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3588 |
+
</tax_calculation_CY_7_shipping_customer>
|
| 3589 |
+
|
| 3590 |
+
<tax_calculation_CY_7_shipping_companies>
|
| 3591 |
+
<execute>1</execute>
|
| 3592 |
+
<tax_calculation_rate_id>82</tax_calculation_rate_id>
|
| 3593 |
+
<tax_calculation_rule_id>7</tax_calculation_rule_id>
|
| 3594 |
+
<customer_tax_class_id>5</customer_tax_class_id>
|
| 3595 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3596 |
+
</tax_calculation_CY_7_shipping_companies>
|
| 3597 |
+
|
| 3598 |
+
<tax_calculation_CY_19_companies_vat>
|
| 3599 |
+
<execute>1</execute>
|
| 3600 |
+
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 3601 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3602 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3603 |
<product_tax_class_id>1</product_tax_class_id>
|
| 3604 |
+
</tax_calculation_CY_19_companies_vat>
|
| 3605 |
+
|
| 3606 |
+
<tax_calculation_CY_7_companies_vat>
|
| 3607 |
<execute>1</execute>
|
| 3608 |
+
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 3609 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3610 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3611 |
+
<product_tax_class_id>2</product_tax_class_id>
|
| 3612 |
+
</tax_calculation_CY_7_companies_vat>
|
| 3613 |
+
|
| 3614 |
+
<tax_calculation_CY_19_shipping_companies_vat>
|
| 3615 |
+
<execute>1</execute>
|
| 3616 |
+
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 3617 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3618 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3619 |
<product_tax_class_id>4</product_tax_class_id>
|
| 3620 |
+
</tax_calculation_CY_19_shipping_companies_vat>
|
| 3621 |
+
|
| 3622 |
+
<tax_calculation_CY_7_shipping_companies_vat>
|
| 3623 |
<execute>1</execute>
|
| 3624 |
<tax_calculation_rate_id>83</tax_calculation_rate_id>
|
| 3625 |
+
<tax_calculation_rule_id>10</tax_calculation_rule_id>
|
| 3626 |
+
<customer_tax_class_id>6</customer_tax_class_id>
|
| 3627 |
+
<product_tax_class_id>7</product_tax_class_id>
|
| 3628 |
+
</tax_calculation_CY_7_shipping_companies_vat>
|
| 3629 |
</default>
|
| 3630 |
</tax_calculations>
|
| 3631 |
<tax_config>
|
| 3632 |
+
<default>
|
| 3633 |
+
<general__country__default>DE</general__country__default>
|
| 3634 |
+
<tax__classes__shipping_tax_class>4</tax__classes__shipping_tax_class>
|
| 3635 |
+
<tax__calculation__based_on>billing</tax__calculation__based_on>
|
| 3636 |
+
<tax__calculation__price_includes_tax>1</tax__calculation__price_includes_tax>
|
| 3637 |
+
<tax__calculation__shipping_includes_tax>1</tax__calculation__shipping_includes_tax>
|
| 3638 |
+
<tax__calculation__apply_after_discount>1</tax__calculation__apply_after_discount>
|
| 3639 |
+
<tax__calculation__discount_tax>1</tax__calculation__discount_tax>
|
| 3640 |
+
<tax__defaults__country>DE</tax__defaults__country>
|
| 3641 |
+
<tax__defaults__region>79</tax__defaults__region>
|
| 3642 |
+
<tax__defaults__postcode>12345</tax__defaults__postcode>
|
| 3643 |
+
<tax__display__type>2</tax__display__type>
|
| 3644 |
+
<tax__display__shipping>2</tax__display__shipping>
|
| 3645 |
+
<tax__cart_display__subtotal>2</tax__cart_display__subtotal>
|
| 3646 |
+
<tax__cart_display__full_summary>1</tax__cart_display__full_summary>
|
| 3647 |
+
<tax__cart_display__shipping>2</tax__cart_display__shipping>
|
| 3648 |
+
<tax__cart_display__price>2</tax__cart_display__price>
|
| 3649 |
+
<tax__cart_display__zero_tax>1</tax__cart_display__zero_tax>
|
| 3650 |
+
<tax__cart_display__grandtotal>0</tax__cart_display__grandtotal>
|
| 3651 |
+
<tax__sales_display__price>2</tax__sales_display__price>
|
| 3652 |
+
<tax__sales_display__subtotal>2</tax__sales_display__subtotal>
|
| 3653 |
+
<tax__sales_display__shipping>2</tax__sales_display__shipping>
|
| 3654 |
+
<tax__sales_display__grandtotal>0</tax__sales_display__grandtotal>
|
| 3655 |
+
<tax__sales_display__full_summary>1</tax__sales_display__full_summary>
|
| 3656 |
+
<tax__sales_display__zero_tax>1</tax__sales_display__zero_tax>
|
| 3657 |
+
<shipping__origin__country_id>DE</shipping__origin__country_id>
|
| 3658 |
+
<shipping__origin__region_id>79</shipping__origin__region_id>
|
| 3659 |
+
<shipping__origin__postcode>12345</shipping__origin__postcode>
|
| 3660 |
+
<shipping__origin__city>Musterstadt</shipping__origin__city>
|
| 3661 |
+
</default>
|
| 3662 |
</tax_config>
|
| 3663 |
</germansetup>
|
| 3664 |
</default>
|
app/code/community/FireGento/GermanSetup/etc/system.xml
CHANGED
|
@@ -40,6 +40,15 @@
|
|
| 40 |
<show_in_website>1</show_in_website>
|
| 41 |
<show_in_store>1</show_in_store>
|
| 42 |
</display_block_below_price>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
<cms_page_shipping translate="label" module="germansetup">
|
| 44 |
<label>CMS Page for Shipping Info</label>
|
| 45 |
<frontend_type>select</frontend_type>
|
|
@@ -58,6 +67,24 @@
|
|
| 58 |
<show_in_website>1</show_in_website>
|
| 59 |
<show_in_store>1</show_in_store>
|
| 60 |
</including_shipping_costs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
</fields>
|
| 62 |
</price>
|
| 63 |
</groups>
|
|
@@ -210,6 +237,30 @@
|
|
| 210 |
<show_in_website>1</show_in_website>
|
| 211 |
<show_in_store>1</show_in_store>
|
| 212 |
</owner>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 213 |
<register_number translate="label">
|
| 214 |
<label>Register number</label>
|
| 215 |
<frontend_type>text</frontend_type>
|
|
@@ -280,12 +331,14 @@
|
|
| 280 |
</groups>
|
| 281 |
</general>
|
| 282 |
<checkout>
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
|
| 286 |
<display_additional_information translate="label,comment" module="germansetup">
|
| 287 |
<label>Display Additional Information</label>
|
| 288 |
-
<comment>Display content from text field below at the checkout confirm page directly above
|
|
|
|
|
|
|
| 289 |
<frontend_type>select</frontend_type>
|
| 290 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 291 |
<sort_order>500</sort_order>
|
|
@@ -301,20 +354,53 @@
|
|
| 301 |
<show_in_website>1</show_in_website>
|
| 302 |
<show_in_store>1</show_in_store>
|
| 303 |
<depends>
|
| 304 |
-
|
| 305 |
</depends>
|
| 306 |
</additional_information>
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 310 |
</checkout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 311 |
<google>
|
| 312 |
<groups>
|
| 313 |
<analytics>
|
| 314 |
<fields>
|
| 315 |
<ip_anonymization translate="label, comment">
|
| 316 |
<label>Ip anonymization</label>
|
| 317 |
-
<comment>Ensures that the ip address of the customers doesnt get involved into the
|
|
|
|
|
|
|
| 318 |
<frontend_type>select</frontend_type>
|
| 319 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 320 |
<sort_order>190</sort_order>
|
|
@@ -327,12 +413,13 @@
|
|
| 327 |
</groups>
|
| 328 |
</google>
|
| 329 |
<tax>
|
| 330 |
-
|
| 331 |
-
|
| 332 |
-
|
| 333 |
<shipping_tax_on_product_tax translate="label,comment" module="germansetup">
|
| 334 |
<label>Dynamic Shipping Tax Class Calculation</label>
|
| 335 |
-
<comment
|
|
|
|
| 336 |
<frontend_type>select</frontend_type>
|
| 337 |
<source_model>germansetup/source_tax_dynamicType</source_model>
|
| 338 |
<sort_order>11</sort_order>
|
|
@@ -340,9 +427,9 @@
|
|
| 340 |
<show_in_website>1</show_in_website>
|
| 341 |
<show_in_store>0</show_in_store>
|
| 342 |
</shipping_tax_on_product_tax>
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
| 346 |
</tax>
|
| 347 |
</sections>
|
| 348 |
</config>
|
| 40 |
<show_in_website>1</show_in_website>
|
| 41 |
<show_in_store>1</show_in_store>
|
| 42 |
</display_block_below_price>
|
| 43 |
+
<display_delivery_time_on_categories translate="label,comment" module="germansetup">
|
| 44 |
+
<label>Display Delivery time on Category Pages</label>
|
| 45 |
+
<frontend_type>select</frontend_type>
|
| 46 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 47 |
+
<sort_order>25</sort_order>
|
| 48 |
+
<show_in_default>1</show_in_default>
|
| 49 |
+
<show_in_website>1</show_in_website>
|
| 50 |
+
<show_in_store>1</show_in_store>
|
| 51 |
+
</display_delivery_time_on_categories>
|
| 52 |
<cms_page_shipping translate="label" module="germansetup">
|
| 53 |
<label>CMS Page for Shipping Info</label>
|
| 54 |
<frontend_type>select</frontend_type>
|
| 67 |
<show_in_website>1</show_in_website>
|
| 68 |
<show_in_store>1</show_in_store>
|
| 69 |
</including_shipping_costs>
|
| 70 |
+
<display_product_weight translate="label,comment" module="germansetup">
|
| 71 |
+
<label>Display Product Weight below Price</label>
|
| 72 |
+
<frontend_type>select</frontend_type>
|
| 73 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 74 |
+
<sort_order>50</sort_order>
|
| 75 |
+
<show_in_default>1</show_in_default>
|
| 76 |
+
<show_in_website>1</show_in_website>
|
| 77 |
+
<show_in_store>1</show_in_store>
|
| 78 |
+
</display_product_weight>
|
| 79 |
+
<weight_unit translate="label,comment" module="germansetup">
|
| 80 |
+
<label>Unit for Product Weight</label>
|
| 81 |
+
<comment>e.g. g, kg, lb, ...</comment>
|
| 82 |
+
<frontend_type>text</frontend_type>
|
| 83 |
+
<sort_order>60</sort_order>
|
| 84 |
+
<show_in_default>1</show_in_default>
|
| 85 |
+
<show_in_website>1</show_in_website>
|
| 86 |
+
<show_in_store>1</show_in_store>
|
| 87 |
+
</weight_unit>
|
| 88 |
</fields>
|
| 89 |
</price>
|
| 90 |
</groups>
|
| 237 |
<show_in_website>1</show_in_website>
|
| 238 |
<show_in_store>1</show_in_store>
|
| 239 |
</owner>
|
| 240 |
+
<content_responsable_name translate="label">
|
| 241 |
+
<label>Responsible for content</label>
|
| 242 |
+
<frontend_type>text</frontend_type>
|
| 243 |
+
<sort_order>137</sort_order>
|
| 244 |
+
<show_in_default>1</show_in_default>
|
| 245 |
+
<show_in_website>1</show_in_website>
|
| 246 |
+
<show_in_store>1</show_in_store>
|
| 247 |
+
</content_responsable_name>
|
| 248 |
+
<content_responsable_address translate="label">
|
| 249 |
+
<label>Responsible for content address</label>
|
| 250 |
+
<frontend_type>textarea</frontend_type>
|
| 251 |
+
<sort_order>138</sort_order>
|
| 252 |
+
<show_in_default>1</show_in_default>
|
| 253 |
+
<show_in_website>1</show_in_website>
|
| 254 |
+
<show_in_store>1</show_in_store>
|
| 255 |
+
</content_responsable_address>
|
| 256 |
+
<content_responsable_press_law translate="label">
|
| 257 |
+
<label>Responsible in the interests of the press law</label>
|
| 258 |
+
<frontend_type>text</frontend_type>
|
| 259 |
+
<sort_order>139</sort_order>
|
| 260 |
+
<show_in_default>1</show_in_default>
|
| 261 |
+
<show_in_website>1</show_in_website>
|
| 262 |
+
<show_in_store>1</show_in_store>
|
| 263 |
+
</content_responsable_press_law>
|
| 264 |
<register_number translate="label">
|
| 265 |
<label>Register number</label>
|
| 266 |
<frontend_type>text</frontend_type>
|
| 331 |
</groups>
|
| 332 |
</general>
|
| 333 |
<checkout>
|
| 334 |
+
<groups>
|
| 335 |
+
<options>
|
| 336 |
+
<fields>
|
| 337 |
<display_additional_information translate="label,comment" module="germansetup">
|
| 338 |
<label>Display Additional Information</label>
|
| 339 |
+
<comment>Display content from text field below at the checkout confirm page directly above
|
| 340 |
+
the checkout button
|
| 341 |
+
</comment>
|
| 342 |
<frontend_type>select</frontend_type>
|
| 343 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 344 |
<sort_order>500</sort_order>
|
| 354 |
<show_in_website>1</show_in_website>
|
| 355 |
<show_in_store>1</show_in_store>
|
| 356 |
<depends>
|
| 357 |
+
<display_additional_information>1</display_additional_information>
|
| 358 |
</depends>
|
| 359 |
</additional_information>
|
| 360 |
+
</fields>
|
| 361 |
+
</options>
|
| 362 |
+
<cart>
|
| 363 |
+
<fields>
|
| 364 |
+
<hide_shipping translate="label,comment" module="germansetup">
|
| 365 |
+
<label>Hide estimated shipping costs in cart</label>
|
| 366 |
+
<comment>Replace with a link to the shipping costs cms page</comment>
|
| 367 |
+
<frontend_type>select</frontend_type>
|
| 368 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 369 |
+
<sort_order>500</sort_order>
|
| 370 |
+
<show_in_default>1</show_in_default>
|
| 371 |
+
<show_in_website>1</show_in_website>
|
| 372 |
+
<show_in_store>1</show_in_store>
|
| 373 |
+
</hide_shipping>
|
| 374 |
+
</fields>
|
| 375 |
+
</cart>
|
| 376 |
+
</groups>
|
| 377 |
</checkout>
|
| 378 |
+
<sales>
|
| 379 |
+
<groups>
|
| 380 |
+
<reorder>
|
| 381 |
+
<fields>
|
| 382 |
+
<hide_sidebar_box translate="label" module="germansetup">
|
| 383 |
+
<label>Hide box "Last Ordered Items"</label>
|
| 384 |
+
<frontend_type>select</frontend_type>
|
| 385 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 386 |
+
<sort_order>500</sort_order>
|
| 387 |
+
<show_in_default>1</show_in_default>
|
| 388 |
+
<show_in_website>1</show_in_website>
|
| 389 |
+
<show_in_store>1</show_in_store>
|
| 390 |
+
</hide_sidebar_box>
|
| 391 |
+
</fields>
|
| 392 |
+
</reorder>
|
| 393 |
+
</groups>
|
| 394 |
+
</sales>
|
| 395 |
<google>
|
| 396 |
<groups>
|
| 397 |
<analytics>
|
| 398 |
<fields>
|
| 399 |
<ip_anonymization translate="label, comment">
|
| 400 |
<label>Ip anonymization</label>
|
| 401 |
+
<comment>Ensures that the ip address of the customers doesnt get involved into the
|
| 402 |
+
tracking
|
| 403 |
+
</comment>
|
| 404 |
<frontend_type>select</frontend_type>
|
| 405 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 406 |
<sort_order>190</sort_order>
|
| 413 |
</groups>
|
| 414 |
</google>
|
| 415 |
<tax>
|
| 416 |
+
<groups>
|
| 417 |
+
<classes>
|
| 418 |
+
<fields>
|
| 419 |
<shipping_tax_on_product_tax translate="label,comment" module="germansetup">
|
| 420 |
<label>Dynamic Shipping Tax Class Calculation</label>
|
| 421 |
+
<comment>
|
| 422 |
+
<![CDATA[Set to "yes" if you want to calculate the shipping tax rate based on the highest product tax rate or according to the tax rate of products that make up the biggest amount in cart.<br /><b>ATTENTION:</b> This setting overwrites the "Tax Class for Shipping" setting above!]]></comment>
|
| 423 |
<frontend_type>select</frontend_type>
|
| 424 |
<source_model>germansetup/source_tax_dynamicType</source_model>
|
| 425 |
<sort_order>11</sort_order>
|
| 427 |
<show_in_website>1</show_in_website>
|
| 428 |
<show_in_store>0</show_in_store>
|
| 429 |
</shipping_tax_on_product_tax>
|
| 430 |
+
</fields>
|
| 431 |
+
</classes>
|
| 432 |
+
</groups>
|
| 433 |
</tax>
|
| 434 |
</sections>
|
| 435 |
</config>
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-install-0.5.0.php
CHANGED
|
@@ -22,7 +22,6 @@
|
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
* Setup script; Adds the delivery_time attribute for products
|
| 25 |
-
* and creates all initial pages, blocks and emails
|
| 26 |
*
|
| 27 |
* @category FireGento
|
| 28 |
* @package FireGento_GermanSetup
|
|
@@ -43,19 +42,19 @@ $installer->addAttribute(
|
|
| 43 |
array(
|
| 44 |
'label' => 'Lieferzeit',
|
| 45 |
'input' => 'text',
|
| 46 |
-
'required' =>
|
| 47 |
-
'user_defined' =>
|
| 48 |
'default' => '2-3 Tage',
|
| 49 |
'group' => 'General',
|
| 50 |
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
|
| 51 |
-
'visible' =>
|
| 52 |
-
'filterable' =>
|
| 53 |
-
'searchable' =>
|
| 54 |
-
'comparable' =>
|
| 55 |
-
'visible_on_front' =>
|
| 56 |
-
'visible_in_advanced_search' =>
|
| 57 |
-
'used_in_product_listing' =>
|
| 58 |
-
'is_html_allowed_on_front' =>
|
| 59 |
)
|
| 60 |
);
|
| 61 |
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
* Setup script; Adds the delivery_time attribute for products
|
|
|
|
| 25 |
*
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
| 42 |
array(
|
| 43 |
'label' => 'Lieferzeit',
|
| 44 |
'input' => 'text',
|
| 45 |
+
'required' => 0,
|
| 46 |
+
'user_defined' => 1,
|
| 47 |
'default' => '2-3 Tage',
|
| 48 |
'group' => 'General',
|
| 49 |
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
|
| 50 |
+
'visible' => 1,
|
| 51 |
+
'filterable' => 0,
|
| 52 |
+
'searchable' => 0,
|
| 53 |
+
'comparable' => 1,
|
| 54 |
+
'visible_on_front' => 1,
|
| 55 |
+
'visible_in_advanced_search' => 1,
|
| 56 |
+
'used_in_product_listing' => 1,
|
| 57 |
+
'is_html_allowed_on_front' => 1,
|
| 58 |
)
|
| 59 |
);
|
| 60 |
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.0.4-1.0.5.php
CHANGED
|
@@ -21,8 +21,7 @@
|
|
| 21 |
* @since 1.0.5
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
-
* Setup script; Adds
|
| 25 |
-
* and creates all initial pages, blocks and emails
|
| 26 |
*
|
| 27 |
* @category FireGento
|
| 28 |
* @package FireGento_GermanSetup
|
| 21 |
* @since 1.0.5
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
+
* Setup script; Adds a new column 'Visible in Checkout' to attributes
|
|
|
|
| 25 |
*
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.1.3-1.1.4.php
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
* @since 1.0.7
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
-
* Setup script; Adds
|
| 25 |
*
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
|
@@ -46,7 +46,7 @@ if (version_compare(Mage::getVersion(), '1.6', '<')) {
|
|
| 46 |
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'Subscriber Status',
|
| 47 |
`email` text COMMENT 'Subscriber Status',
|
| 48 |
`created_at` timestamp NULL DEFAULT NULL COMMENT 'Changed at',
|
| 49 |
-
PRIMARY KEY (`id`)
|
| 50 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber Status Table';
|
| 51 |
");
|
| 52 |
|
| 21 |
* @since 1.0.7
|
| 22 |
*/
|
| 23 |
/**
|
| 24 |
+
* Setup script; Adds a new table for newsletter subscriber status
|
| 25 |
*
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
| 46 |
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'Subscriber Status',
|
| 47 |
`email` text COMMENT 'Subscriber Status',
|
| 48 |
`created_at` timestamp NULL DEFAULT NULL COMMENT 'Changed at',
|
| 49 |
+
PRIMARY KEY (`id`)
|
| 50 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber Status Table';
|
| 51 |
");
|
| 52 |
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.1.4-1.2.0.php
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Setup script; Adds the delivery_time attribute for products
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 0.1.0
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
|
| 36 |
+
$installer = $this;
|
| 37 |
+
$installer->startSetup();
|
| 38 |
+
|
| 39 |
+
// Update attribute properties
|
| 40 |
+
$installer->updateAttribute(
|
| 41 |
+
'catalog_product',
|
| 42 |
+
'delivery_time',
|
| 43 |
+
'is_comparable',
|
| 44 |
+
true
|
| 45 |
+
);
|
| 46 |
+
|
| 47 |
+
$installer->updateAttribute(
|
| 48 |
+
'catalog_product',
|
| 49 |
+
'delivery_time',
|
| 50 |
+
'is_visible_on_front',
|
| 51 |
+
true
|
| 52 |
+
);
|
| 53 |
+
|
| 54 |
+
$installer->updateAttribute(
|
| 55 |
+
'catalog_product',
|
| 56 |
+
'delivery_time',
|
| 57 |
+
'is_visible_in_advanced_search',
|
| 58 |
+
true
|
| 59 |
+
);
|
| 60 |
+
|
| 61 |
+
$installer->updateAttribute(
|
| 62 |
+
'catalog_product',
|
| 63 |
+
'delivery_time',
|
| 64 |
+
'used_in_product_listing',
|
| 65 |
+
true
|
| 66 |
+
);
|
| 67 |
+
|
| 68 |
+
$installer->updateAttribute(
|
| 69 |
+
'catalog_product',
|
| 70 |
+
'delivery_time',
|
| 71 |
+
'is_html_allowed_on_front',
|
| 72 |
+
true
|
| 73 |
+
);
|
| 74 |
+
|
| 75 |
+
$installer->updateAttribute(
|
| 76 |
+
'catalog_product',
|
| 77 |
+
'delivery_time',
|
| 78 |
+
'is_visible_on_checkout',
|
| 79 |
+
true
|
| 80 |
+
);
|
| 81 |
+
|
| 82 |
+
$installer->updateAttribute(
|
| 83 |
+
'catalog_product',
|
| 84 |
+
'short_description',
|
| 85 |
+
'is_visible_on_checkout',
|
| 86 |
+
true
|
| 87 |
+
);
|
| 88 |
+
|
| 89 |
+
$installer->endSetup();
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.0-1.2.1.php
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Setup script; Adds the delivery_time attribute for products
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.1
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
|
| 36 |
+
$installer = $this;
|
| 37 |
+
$installer->startSetup();
|
| 38 |
+
|
| 39 |
+
// Update attribute properties
|
| 40 |
+
$installer->updateAttribute(
|
| 41 |
+
'catalog_product',
|
| 42 |
+
'weight',
|
| 43 |
+
'used_in_product_listing',
|
| 44 |
+
true
|
| 45 |
+
);
|
| 46 |
+
|
| 47 |
+
$installer->endSetup();
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.1-1.2.2.php
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @since 0.1.0
|
| 21 |
+
*/
|
| 22 |
+
/**
|
| 23 |
+
* Setup script; Adds the is_required field for the checkout agreements
|
| 24 |
+
*
|
| 25 |
+
* @category FireGento
|
| 26 |
+
* @package FireGento_GermanSetup
|
| 27 |
+
* @author FireGento Team <team@firegento.com>
|
| 28 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 29 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 30 |
+
* @version $Id:$
|
| 31 |
+
* @since 1.2.2
|
| 32 |
+
*/
|
| 33 |
+
|
| 34 |
+
/** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
|
| 35 |
+
$installer = $this;
|
| 36 |
+
$installer->startSetup();
|
| 37 |
+
|
| 38 |
+
if (version_compare(Mage::getVersion(), '1.6', '<')) {
|
| 39 |
+
|
| 40 |
+
$installer->run("
|
| 41 |
+
ALTER TABLE `{$installer->getTable('checkout/agreement')}`
|
| 42 |
+
ADD `agreement_type` SMALLINT( 5 ) NOT NULL DEFAULT '0' COMMENT 'Agreement Type'
|
| 43 |
+
");
|
| 44 |
+
|
| 45 |
+
} else {
|
| 46 |
+
|
| 47 |
+
$installer->getConnection()->addColumn(
|
| 48 |
+
$installer->getTable('checkout/agreement'),
|
| 49 |
+
'agreement_type',
|
| 50 |
+
array(
|
| 51 |
+
'type' => Varien_Db_Ddl_Table::TYPE_SMALLINT,
|
| 52 |
+
'unsigned' => true,
|
| 53 |
+
'nullable' => false,
|
| 54 |
+
'default' => '0',
|
| 55 |
+
'comment' => 'Agreement Type'
|
| 56 |
+
)
|
| 57 |
+
);
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
$installer->endSetup();
|
app/code/community/FireGento/GermanSetup/sql/germansetup_setup/mysql4-upgrade-1.2.2-1.2.3.php
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Setup script; Adds the meta_autogenerate attribute for products
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.3
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/** @var $installer Mage_Catalog_Model_Resource_Eav_Mysql4_Setup */
|
| 36 |
+
$installer = $this;
|
| 37 |
+
$installer->startSetup();
|
| 38 |
+
|
| 39 |
+
$installer->addAttribute(
|
| 40 |
+
'catalog_product',
|
| 41 |
+
'meta_autogenerate',
|
| 42 |
+
array(
|
| 43 |
+
'label' => 'Auto-Generate Meta-Information',
|
| 44 |
+
'input' => 'select',
|
| 45 |
+
'source' => 'eav/entity_attribute_source_boolean',
|
| 46 |
+
'required' => false,
|
| 47 |
+
'user_defined' => true,
|
| 48 |
+
'default' => '0',
|
| 49 |
+
'group' => 'Meta Information',
|
| 50 |
+
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
|
| 51 |
+
'visible' => true,
|
| 52 |
+
'filterable' => false,
|
| 53 |
+
'searchable' => false,
|
| 54 |
+
'comparable' => false,
|
| 55 |
+
'visible_on_front' => false,
|
| 56 |
+
'visible_in_advanced_search' => false,
|
| 57 |
+
'used_in_product_listing' => false,
|
| 58 |
+
'is_html_allowed_on_front' => false,
|
| 59 |
+
)
|
| 60 |
+
);
|
| 61 |
+
|
| 62 |
+
$installer->endSetup();
|
app/design/adminhtml/default/default/template/germansetup/extensions.phtml
CHANGED
|
@@ -4,84 +4,106 @@
|
|
| 4 |
</div>
|
| 5 |
|
| 6 |
<div class="entry-edit">
|
| 7 |
-
|
| 8 |
-
|
| 9 |
<div class="form-buttons"></div>
|
| 10 |
</div>
|
| 11 |
<div class="fieldset fieldset-wide" id="group_fields7">
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
<tr>
|
| 17 |
-
|
| 18 |
-
|
| 19 |
</tr>
|
| 20 |
<tr>
|
| 21 |
-
|
| 22 |
-
|
| 23 |
</tr>
|
| 24 |
<tr><td colspan="2"> </td></tr>
|
| 25 |
|
| 26 |
-
|
| 27 |
<tr>
|
| 28 |
-
|
| 29 |
-
|
| 30 |
</tr>
|
| 31 |
<tr>
|
| 32 |
-
|
| 33 |
-
|
| 34 |
</tr>
|
| 35 |
<tr><td colspan="2"> </td></tr>
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
</div>
|
| 41 |
|
| 42 |
<div class="entry-edit">
|
| 43 |
-
|
| 44 |
-
|
| 45 |
<div class="form-buttons"></div>
|
| 46 |
</div>
|
| 47 |
<div class="fieldset fieldset-wide" id="group_fields7">
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
<tr>
|
| 53 |
-
|
| 54 |
-
|
| 55 |
</tr>
|
| 56 |
<tr>
|
| 57 |
-
|
| 58 |
-
|
| 59 |
</tr>
|
| 60 |
<tr><td colspan="2"> </td></tr>
|
| 61 |
|
| 62 |
-
|
| 63 |
<tr>
|
| 64 |
-
|
| 65 |
-
|
| 66 |
</tr>
|
| 67 |
<tr>
|
| 68 |
-
|
| 69 |
-
|
| 70 |
</tr>
|
| 71 |
<tr><td colspan="2"> </td></tr>
|
| 72 |
|
| 73 |
-
|
| 74 |
<tr>
|
| 75 |
-
|
| 76 |
-
|
| 77 |
</tr>
|
| 78 |
<tr>
|
| 79 |
-
|
| 80 |
-
|
| 81 |
</tr>
|
| 82 |
<tr><td colspan="2"> </td></tr>
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
</div>
|
| 4 |
</div>
|
| 5 |
|
| 6 |
<div class="entry-edit">
|
| 7 |
+
<div class="entry-edit-head">
|
| 8 |
+
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Recommended Extensions') ?></h4>
|
| 9 |
<div class="form-buttons"></div>
|
| 10 |
</div>
|
| 11 |
<div class="fieldset fieldset-wide" id="group_fields7">
|
| 12 |
+
<div class="hor-scroll">
|
| 13 |
+
<table cellspacing="0" class="form-list">
|
| 14 |
+
<tbody>
|
| 15 |
+
<tr><td class="value" colspan="2"><strong>Deutsches Sprachpaket</strong></td></tr>
|
| 16 |
<tr>
|
| 17 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 18 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2317/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2317/</a></td>
|
| 19 |
</tr>
|
| 20 |
<tr>
|
| 21 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 22 |
+
<td class="value">http://connect20.magentocommerce.com/community/Locale_Mage_community_de_DE</td>
|
| 23 |
</tr>
|
| 24 |
<tr><td colspan="2"> </td></tr>
|
| 25 |
|
| 26 |
+
<tr><td class="value" colspan="2"><strong>Grundpreis-Modul (PAngV)</strong></td></tr>
|
| 27 |
<tr>
|
| 28 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 29 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2897/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2897/</a></td>
|
| 30 |
</tr>
|
| 31 |
<tr>
|
| 32 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 33 |
+
<td class="value">http://connect20.magentocommerce.com/community/DerModPro_BasePrice</td>
|
| 34 |
</tr>
|
| 35 |
<tr><td colspan="2"> </td></tr>
|
| 36 |
+
|
| 37 |
+
<tr><td class="value" colspan="2"><strong>Newsletter Abmeldung als Gast und Double Opt-In für registrierte Kunden</strong></td></tr>
|
| 38 |
+
<tr>
|
| 39 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 40 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/15534/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/15534/</a></td>
|
| 41 |
+
</tr>
|
| 42 |
+
<tr>
|
| 43 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 44 |
+
<td class="value">http://connect20.magentocommerce.com/community/Loewenstark_Newsletter</td>
|
| 45 |
+
</tr>
|
| 46 |
+
<tr><td colspan="2"> </td></tr>
|
| 47 |
+
</tbody>
|
| 48 |
+
</table>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
</div>
|
| 52 |
|
| 53 |
<div class="entry-edit">
|
| 54 |
+
<div class="entry-edit-head">
|
| 55 |
+
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Popular Payment Methods in Germany') ?></h4>
|
| 56 |
<div class="form-buttons"></div>
|
| 57 |
</div>
|
| 58 |
<div class="fieldset fieldset-wide" id="group_fields7">
|
| 59 |
+
<div class="hor-scroll">
|
| 60 |
+
<table cellspacing="0" class="form-list">
|
| 61 |
+
<tbody>
|
| 62 |
+
<tr><td class="value" colspan="2"><strong>Bankeinzug/Lastschrift</strong></td></tr>
|
| 63 |
<tr>
|
| 64 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 65 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2606/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2606/</a></td>
|
| 66 |
</tr>
|
| 67 |
<tr>
|
| 68 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 69 |
+
<td class="value">http://connect20.magentocommerce.com/community/DebitPayment</td>
|
| 70 |
</tr>
|
| 71 |
<tr><td colspan="2"> </td></tr>
|
| 72 |
|
| 73 |
+
<tr><td class="value" colspan="2"><strong>Nachnahme</strong></td></tr>
|
| 74 |
<tr>
|
| 75 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 76 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2360/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2360/</a></td>
|
| 77 |
</tr>
|
| 78 |
<tr>
|
| 79 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 80 |
+
<td class="value">http://connect20.magentocommerce.com/community/CashOnDelivery</td>
|
| 81 |
</tr>
|
| 82 |
<tr><td colspan="2"> </td></tr>
|
| 83 |
|
| 84 |
+
<tr><td class="value" colspan="2"><strong>Vorkasse</strong></td></tr>
|
| 85 |
<tr>
|
| 86 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 87 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2298/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/2298/</a></td>
|
| 88 |
</tr>
|
| 89 |
<tr>
|
| 90 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 91 |
+
<td class="value">http://connect20.magentocommerce.com/community/BankPayment</td>
|
| 92 |
</tr>
|
| 93 |
<tr><td colspan="2"> </td></tr>
|
| 94 |
+
|
| 95 |
+
<tr><td class="value" colspan="2"><strong>Rechnung</strong></td></tr>
|
| 96 |
+
<tr>
|
| 97 |
+
<td class="label"><label for="name">MagentoConnect</label></td>
|
| 98 |
+
<td class="value"><a href="http://www.magentocommerce.com/magento-connect/catalog/product/view/id/17239/s/invoice-6810/" target="_blank">http://www.magentocommerce.com/magento-connect/catalog/product/view/id/17239/s/invoice-6810/</a></td>
|
| 99 |
+
</tr>
|
| 100 |
+
<tr>
|
| 101 |
+
<td class="label"><label for="name">Extension Key</label></td>
|
| 102 |
+
<td class="value">http://connect20.magentocommerce.com/community/InvoicePayment</td>
|
| 103 |
+
</tr>
|
| 104 |
+
<tr><td colspan="2"> </td></tr>
|
| 105 |
+
</tbody>
|
| 106 |
+
</table>
|
| 107 |
+
</div>
|
| 108 |
+
</div>
|
| 109 |
</div>
|
app/design/frontend/base/default/layout/germansetup.xml
CHANGED
|
@@ -1,171 +1,520 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<layout version="0.1.0">
|
| 3 |
|
| 4 |
-
|
| 5 |
Adding custom product price block
|
| 6 |
-->
|
| 7 |
<catalog_category_default>
|
| 8 |
<reference name="product_list">
|
| 9 |
-
<action method="addPriceBlockType"
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
</reference>
|
| 16 |
</catalog_category_default>
|
| 17 |
|
| 18 |
<catalog_category_view>
|
| 19 |
<reference name="product_list">
|
| 20 |
-
<action method="addPriceBlockType"
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
</reference>
|
| 27 |
</catalog_category_view>
|
| 28 |
|
| 29 |
<catalog_category_layered>
|
| 30 |
<reference name="product_list">
|
| 31 |
-
<action method="addPriceBlockType"
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
</reference>
|
| 38 |
</catalog_category_layered>
|
| 39 |
|
| 40 |
<catalog_product_compare_index>
|
| 41 |
<reference name="catalog.compare.list">
|
| 42 |
-
<action method="addPriceBlockType"
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
</reference>
|
| 49 |
</catalog_product_compare_index>
|
| 50 |
|
| 51 |
<catalogsearch_result_index>
|
| 52 |
<reference name="search_result_list">
|
| 53 |
-
<action method="addPriceBlockType"
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
</reference>
|
| 60 |
</catalogsearch_result_index>
|
| 61 |
|
| 62 |
<catalogsearch_advanced_result>
|
| 63 |
<reference name="search_result_list">
|
| 64 |
-
<action method="addPriceBlockType"
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
</reference>
|
| 71 |
</catalogsearch_advanced_result>
|
| 72 |
|
| 73 |
<tag_product_list>
|
| 74 |
<reference name="search_result_list">
|
| 75 |
-
<action method="addPriceBlockType"
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
</reference>
|
| 82 |
</tag_product_list>
|
| 83 |
|
| 84 |
<tag_customer_view>
|
| 85 |
<reference name="customer_view">
|
| 86 |
-
<action method="addPriceBlockType"
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
</reference>
|
| 93 |
</tag_customer_view>
|
| 94 |
|
| 95 |
<default>
|
| 96 |
<reference name="wishlist_sidebar">
|
| 97 |
-
<action method="addPriceBlockType"
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
</reference>
|
| 104 |
<reference name="catalog_product_price_template">
|
| 105 |
-
<action method="addPriceBlockType"
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
</reference>
|
| 112 |
</default>
|
| 113 |
|
| 114 |
<catalog_product_view>
|
| 115 |
<reference name="catalog.product.related">
|
| 116 |
-
<action method="addPriceBlockType"
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
<action method="addPriceBlockType"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
</reference>
|
| 123 |
</catalog_product_view>
|
| 124 |
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
<germansetup_frontend_agreements>
|
| 129 |
<reference name="root">
|
| 130 |
-
<action method="setTemplate"
|
|
|
|
|
|
|
| 131 |
</reference>
|
| 132 |
<reference name="content">
|
| 133 |
-
<block type="core/text" name="agreement"
|
| 134 |
</reference>
|
| 135 |
</germansetup_frontend_agreements>
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
<checkout_onepage_index>
|
| 138 |
<reference name="head">
|
| 139 |
-
<action method="addCss"
|
|
|
|
|
|
|
| 140 |
</reference>
|
| 141 |
</checkout_onepage_index>
|
| 142 |
|
| 143 |
<checkout_onepage_review>
|
| 144 |
-
<reference name="checkout.onepage.agreements">
|
| 145 |
-
<action method="setTemplate"><template>germansetup/checkout/onepage/agreements.phtml</template></action>
|
| 146 |
-
</reference>
|
| 147 |
<reference name="root">
|
| 148 |
-
<action method="unsetChild"
|
|
|
|
|
|
|
| 149 |
</reference>
|
| 150 |
<reference name="checkout.onepage.review.info.items.before">
|
| 151 |
-
<
|
|
|
|
| 152 |
</reference>
|
| 153 |
<reference name="checkout.onepage.review.info.items.after">
|
| 154 |
-
<block type="germansetup/checkout_information" name="checkout.onepage.additional" as="additional"
|
|
|
|
| 155 |
</reference>
|
| 156 |
</checkout_onepage_review>
|
| 157 |
|
| 158 |
<checkout_multishipping_overview>
|
| 159 |
<reference name="head">
|
| 160 |
-
<action method="addCss"
|
|
|
|
|
|
|
| 161 |
</reference>
|
| 162 |
<reference name="checkout_overview">
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
</reference>
|
| 167 |
<reference name="checkout.multishipping.overview.items.after">
|
| 168 |
-
<block type="germansetup/checkout_information" name="checkout.multishipping.additional" as="additional"
|
|
|
|
| 169 |
</reference>
|
| 170 |
</checkout_multishipping_overview>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
</layout>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<layout version="0.1.0">
|
| 3 |
|
| 4 |
+
<!--
|
| 5 |
Adding custom product price block
|
| 6 |
-->
|
| 7 |
<catalog_category_default>
|
| 8 |
<reference name="product_list">
|
| 9 |
+
<action method="addPriceBlockType">
|
| 10 |
+
<type>simple</type>
|
| 11 |
+
<block>germansetup/catalog_product_price</block>
|
| 12 |
+
<template>catalog/product/price.phtml</template>
|
| 13 |
+
</action>
|
| 14 |
+
<action method="addPriceBlockType">
|
| 15 |
+
<type>virtual</type>
|
| 16 |
+
<block>germansetup/catalog_product_price</block>
|
| 17 |
+
<template>catalog/product/price.phtml</template>
|
| 18 |
+
</action>
|
| 19 |
+
<action method="addPriceBlockType">
|
| 20 |
+
<type>grouped</type>
|
| 21 |
+
<block>germansetup/catalog_product_price</block>
|
| 22 |
+
<template>catalog/product/price.phtml</template>
|
| 23 |
+
</action>
|
| 24 |
+
<action method="addPriceBlockType">
|
| 25 |
+
<type>downloadable</type>
|
| 26 |
+
<block>germansetup/catalog_product_price</block>
|
| 27 |
+
<template>catalog/product/price.phtml</template>
|
| 28 |
+
</action>
|
| 29 |
+
<action method="addPriceBlockType">
|
| 30 |
+
<type>configurable</type>
|
| 31 |
+
<block>germansetup/catalog_product_price</block>
|
| 32 |
+
<template>catalog/product/price.phtml</template>
|
| 33 |
+
</action>
|
| 34 |
+
<action method="addPriceBlockType">
|
| 35 |
+
<type>bundle</type>
|
| 36 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 37 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 38 |
+
</action>
|
| 39 |
</reference>
|
| 40 |
</catalog_category_default>
|
| 41 |
|
| 42 |
<catalog_category_view>
|
| 43 |
<reference name="product_list">
|
| 44 |
+
<action method="addPriceBlockType">
|
| 45 |
+
<type>simple</type>
|
| 46 |
+
<block>germansetup/catalog_product_price</block>
|
| 47 |
+
<template>catalog/product/price.phtml</template>
|
| 48 |
+
</action>
|
| 49 |
+
<action method="addPriceBlockType">
|
| 50 |
+
<type>virtual</type>
|
| 51 |
+
<block>germansetup/catalog_product_price</block>
|
| 52 |
+
<template>catalog/product/price.phtml</template>
|
| 53 |
+
</action>
|
| 54 |
+
<action method="addPriceBlockType">
|
| 55 |
+
<type>grouped</type>
|
| 56 |
+
<block>germansetup/catalog_product_price</block>
|
| 57 |
+
<template>catalog/product/price.phtml</template>
|
| 58 |
+
</action>
|
| 59 |
+
<action method="addPriceBlockType">
|
| 60 |
+
<type>downloadable</type>
|
| 61 |
+
<block>germansetup/catalog_product_price</block>
|
| 62 |
+
<template>catalog/product/price.phtml</template>
|
| 63 |
+
</action>
|
| 64 |
+
<action method="addPriceBlockType">
|
| 65 |
+
<type>configurable</type>
|
| 66 |
+
<block>germansetup/catalog_product_price</block>
|
| 67 |
+
<template>catalog/product/price.phtml</template>
|
| 68 |
+
</action>
|
| 69 |
+
<action method="addPriceBlockType">
|
| 70 |
+
<type>bundle</type>
|
| 71 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 72 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 73 |
+
</action>
|
| 74 |
</reference>
|
| 75 |
</catalog_category_view>
|
| 76 |
|
| 77 |
<catalog_category_layered>
|
| 78 |
<reference name="product_list">
|
| 79 |
+
<action method="addPriceBlockType">
|
| 80 |
+
<type>simple</type>
|
| 81 |
+
<block>germansetup/catalog_product_price</block>
|
| 82 |
+
<template>catalog/product/price.phtml</template>
|
| 83 |
+
</action>
|
| 84 |
+
<action method="addPriceBlockType">
|
| 85 |
+
<type>virtual</type>
|
| 86 |
+
<block>germansetup/catalog_product_price</block>
|
| 87 |
+
<template>catalog/product/price.phtml</template>
|
| 88 |
+
</action>
|
| 89 |
+
<action method="addPriceBlockType">
|
| 90 |
+
<type>grouped</type>
|
| 91 |
+
<block>germansetup/catalog_product_price</block>
|
| 92 |
+
<template>catalog/product/price.phtml</template>
|
| 93 |
+
</action>
|
| 94 |
+
<action method="addPriceBlockType">
|
| 95 |
+
<type>downloadable</type>
|
| 96 |
+
<block>germansetup/catalog_product_price</block>
|
| 97 |
+
<template>catalog/product/price.phtml</template>
|
| 98 |
+
</action>
|
| 99 |
+
<action method="addPriceBlockType">
|
| 100 |
+
<type>configurable</type>
|
| 101 |
+
<block>germansetup/catalog_product_price</block>
|
| 102 |
+
<template>catalog/product/price.phtml</template>
|
| 103 |
+
</action>
|
| 104 |
+
<action method="addPriceBlockType">
|
| 105 |
+
<type>bundle</type>
|
| 106 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 107 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 108 |
+
</action>
|
| 109 |
</reference>
|
| 110 |
</catalog_category_layered>
|
| 111 |
|
| 112 |
<catalog_product_compare_index>
|
| 113 |
<reference name="catalog.compare.list">
|
| 114 |
+
<action method="addPriceBlockType">
|
| 115 |
+
<type>simple</type>
|
| 116 |
+
<block>germansetup/catalog_product_price</block>
|
| 117 |
+
<template>catalog/product/price.phtml</template>
|
| 118 |
+
</action>
|
| 119 |
+
<action method="addPriceBlockType">
|
| 120 |
+
<type>virtual</type>
|
| 121 |
+
<block>germansetup/catalog_product_price</block>
|
| 122 |
+
<template>catalog/product/price.phtml</template>
|
| 123 |
+
</action>
|
| 124 |
+
<action method="addPriceBlockType">
|
| 125 |
+
<type>grouped</type>
|
| 126 |
+
<block>germansetup/catalog_product_price</block>
|
| 127 |
+
<template>catalog/product/price.phtml</template>
|
| 128 |
+
</action>
|
| 129 |
+
<action method="addPriceBlockType">
|
| 130 |
+
<type>downloadable</type>
|
| 131 |
+
<block>germansetup/catalog_product_price</block>
|
| 132 |
+
<template>catalog/product/price.phtml</template>
|
| 133 |
+
</action>
|
| 134 |
+
<action method="addPriceBlockType">
|
| 135 |
+
<type>configurable</type>
|
| 136 |
+
<block>germansetup/catalog_product_price</block>
|
| 137 |
+
<template>catalog/product/price.phtml</template>
|
| 138 |
+
</action>
|
| 139 |
+
<action method="addPriceBlockType">
|
| 140 |
+
<type>bundle</type>
|
| 141 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 142 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 143 |
+
</action>
|
| 144 |
</reference>
|
| 145 |
</catalog_product_compare_index>
|
| 146 |
|
| 147 |
<catalogsearch_result_index>
|
| 148 |
<reference name="search_result_list">
|
| 149 |
+
<action method="addPriceBlockType">
|
| 150 |
+
<type>simple</type>
|
| 151 |
+
<block>germansetup/catalog_product_price</block>
|
| 152 |
+
<template>catalog/product/price.phtml</template>
|
| 153 |
+
</action>
|
| 154 |
+
<action method="addPriceBlockType">
|
| 155 |
+
<type>virtual</type>
|
| 156 |
+
<block>germansetup/catalog_product_price</block>
|
| 157 |
+
<template>catalog/product/price.phtml</template>
|
| 158 |
+
</action>
|
| 159 |
+
<action method="addPriceBlockType">
|
| 160 |
+
<type>grouped</type>
|
| 161 |
+
<block>germansetup/catalog_product_price</block>
|
| 162 |
+
<template>catalog/product/price.phtml</template>
|
| 163 |
+
</action>
|
| 164 |
+
<action method="addPriceBlockType">
|
| 165 |
+
<type>downloadable</type>
|
| 166 |
+
<block>germansetup/catalog_product_price</block>
|
| 167 |
+
<template>catalog/product/price.phtml</template>
|
| 168 |
+
</action>
|
| 169 |
+
<action method="addPriceBlockType">
|
| 170 |
+
<type>configurable</type>
|
| 171 |
+
<block>germansetup/catalog_product_price</block>
|
| 172 |
+
<template>catalog/product/price.phtml</template>
|
| 173 |
+
</action>
|
| 174 |
+
<action method="addPriceBlockType">
|
| 175 |
+
<type>bundle</type>
|
| 176 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 177 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 178 |
+
</action>
|
| 179 |
</reference>
|
| 180 |
</catalogsearch_result_index>
|
| 181 |
|
| 182 |
<catalogsearch_advanced_result>
|
| 183 |
<reference name="search_result_list">
|
| 184 |
+
<action method="addPriceBlockType">
|
| 185 |
+
<type>simple</type>
|
| 186 |
+
<block>germansetup/catalog_product_price</block>
|
| 187 |
+
<template>catalog/product/price.phtml</template>
|
| 188 |
+
</action>
|
| 189 |
+
<action method="addPriceBlockType">
|
| 190 |
+
<type>virtual</type>
|
| 191 |
+
<block>germansetup/catalog_product_price</block>
|
| 192 |
+
<template>catalog/product/price.phtml</template>
|
| 193 |
+
</action>
|
| 194 |
+
<action method="addPriceBlockType">
|
| 195 |
+
<type>grouped</type>
|
| 196 |
+
<block>germansetup/catalog_product_price</block>
|
| 197 |
+
<template>catalog/product/price.phtml</template>
|
| 198 |
+
</action>
|
| 199 |
+
<action method="addPriceBlockType">
|
| 200 |
+
<type>downloadable</type>
|
| 201 |
+
<block>germansetup/catalog_product_price</block>
|
| 202 |
+
<template>catalog/product/price.phtml</template>
|
| 203 |
+
</action>
|
| 204 |
+
<action method="addPriceBlockType">
|
| 205 |
+
<type>configurable</type>
|
| 206 |
+
<block>germansetup/catalog_product_price</block>
|
| 207 |
+
<template>catalog/product/price.phtml</template>
|
| 208 |
+
</action>
|
| 209 |
+
<action method="addPriceBlockType">
|
| 210 |
+
<type>bundle</type>
|
| 211 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 212 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 213 |
+
</action>
|
| 214 |
</reference>
|
| 215 |
</catalogsearch_advanced_result>
|
| 216 |
|
| 217 |
<tag_product_list>
|
| 218 |
<reference name="search_result_list">
|
| 219 |
+
<action method="addPriceBlockType">
|
| 220 |
+
<type>simple</type>
|
| 221 |
+
<block>germansetup/catalog_product_price</block>
|
| 222 |
+
<template>catalog/product/price.phtml</template>
|
| 223 |
+
</action>
|
| 224 |
+
<action method="addPriceBlockType">
|
| 225 |
+
<type>virtual</type>
|
| 226 |
+
<block>germansetup/catalog_product_price</block>
|
| 227 |
+
<template>catalog/product/price.phtml</template>
|
| 228 |
+
</action>
|
| 229 |
+
<action method="addPriceBlockType">
|
| 230 |
+
<type>grouped</type>
|
| 231 |
+
<block>germansetup/catalog_product_price</block>
|
| 232 |
+
<template>catalog/product/price.phtml</template>
|
| 233 |
+
</action>
|
| 234 |
+
<action method="addPriceBlockType">
|
| 235 |
+
<type>downloadable</type>
|
| 236 |
+
<block>germansetup/catalog_product_price</block>
|
| 237 |
+
<template>catalog/product/price.phtml</template>
|
| 238 |
+
</action>
|
| 239 |
+
<action method="addPriceBlockType">
|
| 240 |
+
<type>configurable</type>
|
| 241 |
+
<block>germansetup/catalog_product_price</block>
|
| 242 |
+
<template>catalog/product/price.phtml</template>
|
| 243 |
+
</action>
|
| 244 |
+
<action method="addPriceBlockType">
|
| 245 |
+
<type>bundle</type>
|
| 246 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 247 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 248 |
+
</action>
|
| 249 |
</reference>
|
| 250 |
</tag_product_list>
|
| 251 |
|
| 252 |
<tag_customer_view>
|
| 253 |
<reference name="customer_view">
|
| 254 |
+
<action method="addPriceBlockType">
|
| 255 |
+
<type>simple</type>
|
| 256 |
+
<block>germansetup/catalog_product_price</block>
|
| 257 |
+
<template>catalog/product/price.phtml</template>
|
| 258 |
+
</action>
|
| 259 |
+
<action method="addPriceBlockType">
|
| 260 |
+
<type>virtual</type>
|
| 261 |
+
<block>germansetup/catalog_product_price</block>
|
| 262 |
+
<template>catalog/product/price.phtml</template>
|
| 263 |
+
</action>
|
| 264 |
+
<action method="addPriceBlockType">
|
| 265 |
+
<type>grouped</type>
|
| 266 |
+
<block>germansetup/catalog_product_price</block>
|
| 267 |
+
<template>catalog/product/price.phtml</template>
|
| 268 |
+
</action>
|
| 269 |
+
<action method="addPriceBlockType">
|
| 270 |
+
<type>downloadable</type>
|
| 271 |
+
<block>germansetup/catalog_product_price</block>
|
| 272 |
+
<template>catalog/product/price.phtml</template>
|
| 273 |
+
</action>
|
| 274 |
+
<action method="addPriceBlockType">
|
| 275 |
+
<type>configurable</type>
|
| 276 |
+
<block>germansetup/catalog_product_price</block>
|
| 277 |
+
<template>catalog/product/price.phtml</template>
|
| 278 |
+
</action>
|
| 279 |
+
<action method="addPriceBlockType">
|
| 280 |
+
<type>bundle</type>
|
| 281 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 282 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 283 |
+
</action>
|
| 284 |
</reference>
|
| 285 |
</tag_customer_view>
|
| 286 |
|
| 287 |
<default>
|
| 288 |
<reference name="wishlist_sidebar">
|
| 289 |
+
<action method="addPriceBlockType">
|
| 290 |
+
<type>simple</type>
|
| 291 |
+
<block>germansetup/catalog_product_price</block>
|
| 292 |
+
<template>catalog/product/price.phtml</template>
|
| 293 |
+
</action>
|
| 294 |
+
<action method="addPriceBlockType">
|
| 295 |
+
<type>virtual</type>
|
| 296 |
+
<block>germansetup/catalog_product_price</block>
|
| 297 |
+
<template>catalog/product/price.phtml</template>
|
| 298 |
+
</action>
|
| 299 |
+
<action method="addPriceBlockType">
|
| 300 |
+
<type>grouped</type>
|
| 301 |
+
<block>germansetup/catalog_product_price</block>
|
| 302 |
+
<template>catalog/product/price.phtml</template>
|
| 303 |
+
</action>
|
| 304 |
+
<action method="addPriceBlockType">
|
| 305 |
+
<type>downloadable</type>
|
| 306 |
+
<block>germansetup/catalog_product_price</block>
|
| 307 |
+
<template>catalog/product/price.phtml</template>
|
| 308 |
+
</action>
|
| 309 |
+
<action method="addPriceBlockType">
|
| 310 |
+
<type>configurable</type>
|
| 311 |
+
<block>germansetup/catalog_product_price</block>
|
| 312 |
+
<template>catalog/product/price.phtml</template>
|
| 313 |
+
</action>
|
| 314 |
+
<action method="addPriceBlockType">
|
| 315 |
+
<type>bundle</type>
|
| 316 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 317 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 318 |
+
</action>
|
| 319 |
</reference>
|
| 320 |
<reference name="catalog_product_price_template">
|
| 321 |
+
<action method="addPriceBlockType">
|
| 322 |
+
<type>simple</type>
|
| 323 |
+
<block>germansetup/catalog_product_price</block>
|
| 324 |
+
<template>catalog/product/price.phtml</template>
|
| 325 |
+
</action>
|
| 326 |
+
<action method="addPriceBlockType">
|
| 327 |
+
<type>virtual</type>
|
| 328 |
+
<block>germansetup/catalog_product_price</block>
|
| 329 |
+
<template>catalog/product/price.phtml</template>
|
| 330 |
+
</action>
|
| 331 |
+
<action method="addPriceBlockType">
|
| 332 |
+
<type>grouped</type>
|
| 333 |
+
<block>germansetup/catalog_product_price</block>
|
| 334 |
+
<template>catalog/product/price.phtml</template>
|
| 335 |
+
</action>
|
| 336 |
+
<action method="addPriceBlockType">
|
| 337 |
+
<type>downloadable</type>
|
| 338 |
+
<block>germansetup/catalog_product_price</block>
|
| 339 |
+
<template>catalog/product/price.phtml</template>
|
| 340 |
+
</action>
|
| 341 |
+
<action method="addPriceBlockType">
|
| 342 |
+
<type>configurable</type>
|
| 343 |
+
<block>germansetup/catalog_product_price</block>
|
| 344 |
+
<template>catalog/product/price.phtml</template>
|
| 345 |
+
</action>
|
| 346 |
+
<action method="addPriceBlockType">
|
| 347 |
+
<type>bundle</type>
|
| 348 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 349 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 350 |
+
</action>
|
| 351 |
</reference>
|
| 352 |
</default>
|
| 353 |
|
| 354 |
<catalog_product_view>
|
| 355 |
<reference name="catalog.product.related">
|
| 356 |
+
<action method="addPriceBlockType">
|
| 357 |
+
<type>simple</type>
|
| 358 |
+
<block>germansetup/catalog_product_price</block>
|
| 359 |
+
<template>catalog/product/price.phtml</template>
|
| 360 |
+
</action>
|
| 361 |
+
<action method="addPriceBlockType">
|
| 362 |
+
<type>virtual</type>
|
| 363 |
+
<block>germansetup/catalog_product_price</block>
|
| 364 |
+
<template>catalog/product/price.phtml</template>
|
| 365 |
+
</action>
|
| 366 |
+
<action method="addPriceBlockType">
|
| 367 |
+
<type>grouped</type>
|
| 368 |
+
<block>germansetup/catalog_product_price</block>
|
| 369 |
+
<template>catalog/product/price.phtml</template>
|
| 370 |
+
</action>
|
| 371 |
+
<action method="addPriceBlockType">
|
| 372 |
+
<type>downloadable</type>
|
| 373 |
+
<block>germansetup/catalog_product_price</block>
|
| 374 |
+
<template>catalog/product/price.phtml</template>
|
| 375 |
+
</action>
|
| 376 |
+
<action method="addPriceBlockType">
|
| 377 |
+
<type>configurable</type>
|
| 378 |
+
<block>germansetup/catalog_product_price</block>
|
| 379 |
+
<template>catalog/product/price.phtml</template>
|
| 380 |
+
</action>
|
| 381 |
+
<action method="addPriceBlockType">
|
| 382 |
+
<type>bundle</type>
|
| 383 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 384 |
+
<template>bundle/catalog/product/price.phtml</template>
|
| 385 |
+
</action>
|
| 386 |
</reference>
|
| 387 |
</catalog_product_view>
|
| 388 |
|
| 389 |
+
<reference name="product.clone_prices">
|
| 390 |
+
<action method="addPriceBlockType">
|
| 391 |
+
<type>bundle</type>
|
| 392 |
+
<block>germansetup/bundle_catalog_product_price</block>
|
| 393 |
+
<template>bundle/catalog/product/view/price.phtml</template>
|
| 394 |
+
</action>
|
| 395 |
+
</reference>
|
| 396 |
+
|
| 397 |
+
<PRODUCT_TYPE_simple>
|
| 398 |
+
<reference name="product.info.simple.extra">
|
| 399 |
+
<block type="catalog/product_view_type_simple" name="germansetup.deliverytime"
|
| 400 |
+
template="germansetup/delivery_time.phtml"/>
|
| 401 |
+
</reference>
|
| 402 |
+
</PRODUCT_TYPE_simple>
|
| 403 |
+
|
| 404 |
+
<PRODUCT_TYPE_configurable>
|
| 405 |
+
<reference name="product.info.configurable.extra">
|
| 406 |
+
<block type="catalog/product_view_type_configurable" name="germansetup.deliverytime"
|
| 407 |
+
template="germansetup/delivery_time.phtml"/>
|
| 408 |
+
</reference>
|
| 409 |
+
</PRODUCT_TYPE_configurable>
|
| 410 |
+
|
| 411 |
+
<PRODUCT_TYPE_grouped>
|
| 412 |
+
<reference name="product.info.grouped.extra">
|
| 413 |
+
<block type="catalog/product_view_type_grouped" name="germansetup.deliverytime"
|
| 414 |
+
template="germansetup/delivery_time.phtml"/>
|
| 415 |
+
</reference>
|
| 416 |
+
</PRODUCT_TYPE_grouped>
|
| 417 |
+
|
| 418 |
+
<PRODUCT_TYPE_virtual>
|
| 419 |
+
<reference name="product.info.virtual.extra">
|
| 420 |
+
<block type="catalog/product_view_type_virtual" name="germansetup.deliverytime"
|
| 421 |
+
template="germansetup/delivery_time.phtml"/>
|
| 422 |
+
</reference>
|
| 423 |
+
</PRODUCT_TYPE_virtual>
|
| 424 |
+
|
| 425 |
+
<PRODUCT_TYPE_downloadable>
|
| 426 |
+
<reference name="product.info.downloadable.extra">
|
| 427 |
+
<block type="downloadable/catalog_product_view_type" name="germansetup.deliverytime"
|
| 428 |
+
template="germansetup/delivery_time.phtml"/>
|
| 429 |
+
</reference>
|
| 430 |
+
</PRODUCT_TYPE_downloadable>
|
| 431 |
+
|
| 432 |
+
<!--
|
| 433 |
+
Changes for Button Loesung
|
| 434 |
+
-->
|
| 435 |
<germansetup_frontend_agreements>
|
| 436 |
<reference name="root">
|
| 437 |
+
<action method="setTemplate">
|
| 438 |
+
<template>page/popup.phtml</template>
|
| 439 |
+
</action>
|
| 440 |
</reference>
|
| 441 |
<reference name="content">
|
| 442 |
+
<block type="core/text" name="agreement"/>
|
| 443 |
</reference>
|
| 444 |
</germansetup_frontend_agreements>
|
| 445 |
|
| 446 |
+
<checkout_cart_index>
|
| 447 |
+
<reference name="checkout.cart.shipping">
|
| 448 |
+
<action method="setTemplate" ifconfig="checkout/cart/hide_shipping">
|
| 449 |
+
<template>germansetup/shipping.phtml</template>
|
| 450 |
+
</action>
|
| 451 |
+
</reference>
|
| 452 |
+
</checkout_cart_index>
|
| 453 |
+
|
| 454 |
<checkout_onepage_index>
|
| 455 |
<reference name="head">
|
| 456 |
+
<action method="addCss">
|
| 457 |
+
<stylesheet>css/germansetup/checkout.css</stylesheet>
|
| 458 |
+
</action>
|
| 459 |
</reference>
|
| 460 |
</checkout_onepage_index>
|
| 461 |
|
| 462 |
<checkout_onepage_review>
|
|
|
|
|
|
|
|
|
|
| 463 |
<reference name="root">
|
| 464 |
+
<action method="unsetChild">
|
| 465 |
+
<alias>agreements</alias>
|
| 466 |
+
</action>
|
| 467 |
</reference>
|
| 468 |
<reference name="checkout.onepage.review.info.items.before">
|
| 469 |
+
<block type="germansetup/checkout_agreements" name="germansetup.checkout.agreements" as="agreements"
|
| 470 |
+
template="germansetup/checkout/onepage/agreements.phtml"/>
|
| 471 |
</reference>
|
| 472 |
<reference name="checkout.onepage.review.info.items.after">
|
| 473 |
+
<block type="germansetup/checkout_information" name="checkout.onepage.additional" as="additional"
|
| 474 |
+
template="germansetup/checkout/additional.phtml"/>
|
| 475 |
</reference>
|
| 476 |
</checkout_onepage_review>
|
| 477 |
|
| 478 |
<checkout_multishipping_overview>
|
| 479 |
<reference name="head">
|
| 480 |
+
<action method="addCss">
|
| 481 |
+
<stylesheet>css/germansetup/checkout.css</stylesheet>
|
| 482 |
+
</action>
|
| 483 |
</reference>
|
| 484 |
<reference name="checkout_overview">
|
| 485 |
+
<action method="setTemplate">
|
| 486 |
+
<name>germansetup/checkout/multishipping/overview.phtml</name>
|
| 487 |
+
</action>
|
| 488 |
+
<action method="unsetChild">
|
| 489 |
+
<name>agreements</name>
|
| 490 |
+
</action>
|
| 491 |
+
<block type="checkout/agreements" name="checkout.multishipping.agreements" as="agreements"
|
| 492 |
+
template="germansetup/checkout/multishipping/agreements.phtml"/>
|
| 493 |
</reference>
|
| 494 |
<reference name="checkout.multishipping.overview.items.after">
|
| 495 |
+
<block type="germansetup/checkout_information" name="checkout.multishipping.additional" as="additional"
|
| 496 |
+
template="germansetup/checkout/additional.phtml"/>
|
| 497 |
</reference>
|
| 498 |
</checkout_multishipping_overview>
|
| 499 |
+
|
| 500 |
+
<!-- Customer Terms and Condition Confirmation -->
|
| 501 |
+
<customer_account_create>
|
| 502 |
+
<reference name="form.additional.info">
|
| 503 |
+
<block type="germansetup/customer_account_agreements" name="customer.tc-confirmation"
|
| 504 |
+
template="germansetup/customer/form/tc-confirmation.phtml"/>
|
| 505 |
+
</reference>
|
| 506 |
+
</customer_account_create>
|
| 507 |
+
|
| 508 |
+
<customer_logged_in>
|
| 509 |
+
<reference name="right">
|
| 510 |
+
<action method="unsetChild" ifconfig="sales/reorder/hide_sidebar_box">
|
| 511 |
+
<name>reorder</name>
|
| 512 |
+
</action>
|
| 513 |
+
</reference>
|
| 514 |
+
<reference name="left">
|
| 515 |
+
<action method="unsetChild" ifconfig="sales/reorder/hide_sidebar_box">
|
| 516 |
+
<name>reorder</name>
|
| 517 |
+
</action>
|
| 518 |
+
</reference>
|
| 519 |
+
</customer_logged_in>
|
| 520 |
</layout>
|
app/design/frontend/base/default/template/germansetup/checkout/onepage/agreements.phtml
CHANGED
|
@@ -26,32 +26,33 @@
|
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
| 28 |
* @author FireGento Team <team@firegento.com>
|
| 29 |
-
* @copyright
|
| 30 |
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
* @version $Id:$
|
| 32 |
-
* @since
|
| 33 |
*/
|
| 34 |
|
| 35 |
/**
|
| 36 |
-
* @var $this
|
| 37 |
*/
|
| 38 |
|
| 39 |
-
|
| 40 |
-
$helper =
|
|
|
|
| 41 |
?>
|
| 42 |
|
| 43 |
-
<?php if (!$
|
| 44 |
|
| 45 |
<form action="" id="checkout-agreements" onsubmit="return false;">
|
| 46 |
<ol class="checkout-agreements">
|
| 47 |
-
<?php foreach ($
|
| 48 |
<li>
|
| 49 |
<p class="agree">
|
| 50 |
-
<?php if($
|
| 51 |
-
<input type="checkbox" id="agreement-<?php echo $
|
| 52 |
<?php endif; ?>
|
| 53 |
-
<label <?php if($
|
| 54 |
-
<a href="<?php echo $helper->getAgreementUrl($
|
| 55 |
</p>
|
| 56 |
</li>
|
| 57 |
<?php endforeach ?>
|
| 26 |
* @category FireGento
|
| 27 |
* @package FireGento_GermanSetup
|
| 28 |
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
* @version $Id:$
|
| 32 |
+
* @since 1.2.2
|
| 33 |
*/
|
| 34 |
|
| 35 |
/**
|
| 36 |
+
* @var $this FireGento_GermanSetup_Block_Checkout_Agreements
|
| 37 |
*/
|
| 38 |
|
| 39 |
+
/** @var $helper FireGento_GermanSetup_Helper_Data */
|
| 40 |
+
$helper = Mage::helper('germansetup');
|
| 41 |
+
$agreements = $this->getAgreements();
|
| 42 |
?>
|
| 43 |
|
| 44 |
+
<?php if (!$agreements) return; ?>
|
| 45 |
|
| 46 |
<form action="" id="checkout-agreements" onsubmit="return false;">
|
| 47 |
<ol class="checkout-agreements">
|
| 48 |
+
<?php foreach ($agreements as $agreement): ?>
|
| 49 |
<li>
|
| 50 |
<p class="agree">
|
| 51 |
+
<?php if($agreement->getIsRequired()): ?>
|
| 52 |
+
<input type="checkbox" id="agreement-<?php echo $agreement->getId()?>" name="agreement[<?php echo $agreement->getId()?>]" value="1" title="<?php echo $this->htmlEscape($agreement->getCheckboxText()) ?>" class="checkbox" />
|
| 53 |
<?php endif; ?>
|
| 54 |
+
<label <?php if($agreement->getIsRequired()): ?>for="agreement-<?php echo $agreement->getId()?>"<?php endif; ?>><?php echo $agreement->getIsHtml() ? $agreement->getCheckboxText() : $this->escapeHtml($agreement->getCheckboxText()) ?></label>
|
| 55 |
+
<a href="<?php echo $helper->getAgreementUrl($agreement) ?>" onclick="window.open(this.href, '', 'width=600,height=600,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes').focus(); return false;"><?php echo $this->__('[Show]') ?></a>
|
| 56 |
</p>
|
| 57 |
</li>
|
| 58 |
<?php endforeach ?>
|
app/design/frontend/base/default/template/germansetup/customer/form/tc-confirmation.phtml
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Checkout Agreements
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 0.1.0
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/**
|
| 36 |
+
* @var $this Mage_Checkout_Block_Agreements
|
| 37 |
+
*/
|
| 38 |
+
|
| 39 |
+
/* @var $helper FireGento_GermanSetup_Helper_Data */
|
| 40 |
+
$helper = $this->helper('germansetup');
|
| 41 |
+
?>
|
| 42 |
+
|
| 43 |
+
<?php if (!$this->getAgreements()) return; ?>
|
| 44 |
+
|
| 45 |
+
<?php foreach ($this->getAgreements() as $_a): ?>
|
| 46 |
+
<li class="control">
|
| 47 |
+
<p class="agree">
|
| 48 |
+
<?php if( $_a->getIsRequired() ): ?>
|
| 49 |
+
<input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->htmlEscape( $_a->getCheckboxText() ) ?>" class="checkbox required-entry"/>
|
| 50 |
+
<?php endif; ?>
|
| 51 |
+
<label <?php if( $_a->getIsRequired() ): ?>for="agreement-<?php echo $_a->getId()?>"<?php endif; ?> style="float:none;"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->htmlEscape( $_a->getCheckboxText() ) ?></label>
|
| 52 |
+
<a href="<?php echo $helper->getAgreementUrl( $_a ) ?>" onclick="window.open(this.href, '', 'width=600,height=600,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes').focus(); return false;"><?php echo $this->__( '[Show]' ) ?></a>
|
| 53 |
+
</p>
|
| 54 |
+
</li>
|
| 55 |
+
<?php endforeach ?>
|
app/design/frontend/base/default/template/germansetup/delivery_time.phtml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Template for displaying delivery time
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.0
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/**
|
| 36 |
+
* @var $this Mage_Catalog_Block_Product_View_Abstract
|
| 37 |
+
*/
|
| 38 |
+
?>
|
| 39 |
+
|
| 40 |
+
<?php if ($this->getProduct()->getDeliveryTime()): ?>
|
| 41 |
+
<p class="delivery-time">
|
| 42 |
+
<?php echo $this->__('Delivery Time') ?>: <?php echo $this->getProduct()->getDeliveryTime() ?>
|
| 43 |
+
</p>
|
| 44 |
+
<?php endif ?>
|
app/design/frontend/base/default/template/germansetup/imprint/legal.phtml
CHANGED
|
@@ -23,6 +23,7 @@
|
|
| 23 |
?>
|
| 24 |
<?php
|
| 25 |
/**
|
|
|
|
| 26 |
* @see FireGento_GermanSetup_Block_Imprint_Content
|
| 27 |
*/
|
| 28 |
?>
|
|
@@ -30,7 +31,22 @@
|
|
| 30 |
<?php echo $this->__('CEO') ?>: <?php echo $this->getCeo() ?><br />
|
| 31 |
<?php endif ?>
|
| 32 |
<?php if (strlen(trim($this->getOwner()))): ?>
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
<?php endif ?>
|
| 35 |
<?php if (strlen(trim($this->getCourt()))): ?>
|
| 36 |
<?php echo $this->__('Register court') ?>: <?php echo $this->getCourt() ?><br />
|
| 23 |
?>
|
| 24 |
<?php
|
| 25 |
/**
|
| 26 |
+
* @var $this FireGento_GermanSetup_Block_Imprint_Content
|
| 27 |
* @see FireGento_GermanSetup_Block_Imprint_Content
|
| 28 |
*/
|
| 29 |
?>
|
| 31 |
<?php echo $this->__('CEO') ?>: <?php echo $this->getCeo() ?><br />
|
| 32 |
<?php endif ?>
|
| 33 |
<?php if (strlen(trim($this->getOwner()))): ?>
|
| 34 |
+
<?php echo $this->__('Owner') ?>: <?php echo $this->getOwner() ?><br />
|
| 35 |
+
<?php endif ?>
|
| 36 |
+
<?php if (strlen(trim($this->getContentResponsableName())) || strlen(trim($this->getContentResponsableAddress()))): ?>
|
| 37 |
+
<p><?php echo $this->__('Responsible according to § 5 TMG'); ?>:</p>
|
| 38 |
+
<?php endif;?>
|
| 39 |
+
<?php if (strlen(trim($this->getContentResponsableName()))): ?>
|
| 40 |
+
<?php echo $this->__('Responsible for content') ?>: <?php echo $this->getContentResponsableName() ?><br />
|
| 41 |
+
<?php endif ?>
|
| 42 |
+
<?php if (strlen(trim($this->getContentResponsableAddress()))): ?>
|
| 43 |
+
<?php echo $this->__('Responsible for content address') ?>: <?php echo $this->getContentResponsableAddress() ?><br />
|
| 44 |
+
<?php endif ?>
|
| 45 |
+
<?php if (strlen(trim($this->getContentResponsablePressLaw()))): ?>
|
| 46 |
+
<?php echo $this->__('Responsible in the interests of the press law') ?>: <?php echo $this->getContentResponsablePressLaw() ?><br />
|
| 47 |
+
<?php endif ?>
|
| 48 |
+
<?php if (strlen(trim($this->getVatId()))): ?>
|
| 49 |
+
<?php echo $this->__('VAT-ID') ?>: <?php echo $this->getVatId() ?><br />
|
| 50 |
<?php endif ?>
|
| 51 |
<?php if (strlen(trim($this->getCourt()))): ?>
|
| 52 |
<?php echo $this->__('Register court') ?>: <?php echo $this->getCourt() ?><br />
|
app/design/frontend/base/default/template/germansetup/price_info.phtml
CHANGED
|
@@ -37,25 +37,34 @@
|
|
| 37 |
*/
|
| 38 |
?>
|
| 39 |
|
| 40 |
-
<?php $shippingCostUrl = Mage::helper('germansetup')->getShippingCostUrl() ?>
|
| 41 |
-
<?php if
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
<?php else: ?>
|
| 46 |
-
<span class="tax-details"><?php echo $this->__('Excl. %s Tax
|
| 47 |
<?php endif ?>
|
| 48 |
-
|
| 49 |
-
<?php if
|
| 50 |
-
|
| 51 |
<?php else: ?>
|
| 52 |
-
|
| 53 |
<?php endif ?>
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
<?php else: ?>
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
<?php elseif
|
| 59 |
-
|
| 60 |
<?php endif ?>
|
| 61 |
<?php endif ?>
|
| 37 |
*/
|
| 38 |
?>
|
| 39 |
|
| 40 |
+
<?php $shippingCostUrl = Mage::helper( 'germansetup' )->getShippingCostUrl() ?>
|
| 41 |
+
<?php if( !empty( $shippingCostUrl ) && $this->getIsShowShippingLink() ): ?>
|
| 42 |
+
<?php if( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_EXCLUDING_TAX ): ?>
|
| 43 |
+
<?php if( $this->getIsIncludingShippingCosts() ): ?>
|
| 44 |
+
<span class="tax-details"><?php echo $this->__( 'Excl. %s Tax', $this->getFormattedTaxRate() ) ?><span class="tax-separator">, </span><span class="shipping-cost-details"><?php echo $this->__( 'incl. <a href="%s">Shipping Cost</a>', $shippingCostUrl ) ?></span></span>
|
| 45 |
<?php else: ?>
|
| 46 |
+
<span class="tax-details"><?php echo $this->__( 'Excl. %s Tax' ) ?><span class="tax-separator">, </span><span class="shipping-cost-details"><?php echo $this->__( 'excl. <a href="%s">Shipping Cost</a>', $shippingCostUrl ) ?></span></span>
|
| 47 |
<?php endif ?>
|
| 48 |
+
<?php elseif( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_INCLUDING_TAX ): ?>
|
| 49 |
+
<?php if( $this->getIsIncludingShippingCosts() ): ?>
|
| 50 |
+
<span class="tax-details"><?php echo $this->__( 'Incl. %s Tax', $this->getFormattedTaxRate() ) ?><span class="tax-separator">, </span><span class="shipping-cost-details"><?php echo $this->__( 'incl. <a href="%s">Shipping Cost</a>', $shippingCostUrl ) ?></span></span>
|
| 51 |
<?php else: ?>
|
| 52 |
+
<span class="tax-details"><?php echo $this->__( 'Incl. %s Tax', $this->getFormattedTaxRate() ) ?><span class="tax-separator">, </span><span class="shipping-cost-details"><?php echo $this->__( 'excl. <a href="%s">Shipping Cost</a>', $shippingCostUrl ) ?></span></span>
|
| 53 |
<?php endif ?>
|
| 54 |
+
<?php elseif( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_BOTH ): ?>
|
| 55 |
+
<?php if( $this->getIsIncludingShippingCosts() ): ?>
|
| 56 |
+
<span class="tax-details"><?php echo $this->__('incl. <a href="%s">Shipping Cost</a>', $shippingCostUrl) ?></span>
|
| 57 |
+
<?php else: ?>
|
| 58 |
+
<span class="tax-details"><?php echo $this->__('excl. <a href="%s">Shipping Cost</a>', $shippingCostUrl) ?></span>
|
| 59 |
+
<?php endif ?>
|
| 60 |
+
<?php endif ?>
|
| 61 |
+
<?php if ($this->getIsShowWeightInfo()): ?>
|
| 62 |
+
(<?php echo $this->__('Shipping Weight %s', $this->getFormattedWeight()) ?>)
|
| 63 |
+
<?php endif ?>
|
| 64 |
<?php else: ?>
|
| 65 |
+
<?php if( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_EXCLUDING_TAX ): ?>
|
| 66 |
+
<span class="tax-details"><?php echo $this->__( 'Excl. %s Tax', $this->getFormattedTaxRate() ) ?></span>
|
| 67 |
+
<?php elseif( $this->getIsIncludingTax() == Mage_Tax_Model_Config::DISPLAY_TYPE_INCLUDING_TAX ): ?>
|
| 68 |
+
<span class="tax-details"><?php echo $this->__( 'Incl. %s Tax', $this->getFormattedTaxRate() ) ?></span>
|
| 69 |
<?php endif ?>
|
| 70 |
<?php endif ?>
|
app/design/frontend/base/default/template/germansetup/shipping.phtml
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* This file is part of the FIREGENTO project.
|
| 4 |
+
*
|
| 5 |
+
* FireGento_GermanSetup is free software; you can redistribute it and/or
|
| 6 |
+
* modify it under the terms of the GNU General Public License version 3 as
|
| 7 |
+
* published by the Free Software Foundation.
|
| 8 |
+
*
|
| 9 |
+
* This script is distributed in the hope that it will be useful, but WITHOUT
|
| 10 |
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
| 11 |
+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
| 12 |
+
*
|
| 13 |
+
* PHP version 5
|
| 14 |
+
*
|
| 15 |
+
* @category FireGento
|
| 16 |
+
* @package FireGento_GermanSetup
|
| 17 |
+
* @author FireGento Team <team@firegento.com>
|
| 18 |
+
* @copyright 2012 FireGento Team (http://www.firegento.de). All rights served.
|
| 19 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 20 |
+
* @version $Id:$
|
| 21 |
+
* @since 0.1.0
|
| 22 |
+
*/
|
| 23 |
+
/**
|
| 24 |
+
* Template for shipping cost link
|
| 25 |
+
*
|
| 26 |
+
* @category FireGento
|
| 27 |
+
* @package FireGento_GermanSetup
|
| 28 |
+
* @author FireGento Team <team@firegento.com>
|
| 29 |
+
* @copyright 2013 FireGento Team (http://www.firegento.de). All rights served.
|
| 30 |
+
* @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3)
|
| 31 |
+
* @version $Id:$
|
| 32 |
+
* @since 1.2.0
|
| 33 |
+
*/
|
| 34 |
+
|
| 35 |
+
/**
|
| 36 |
+
* @var $this Mage_Checkout_Block_Cart_Shipping
|
| 37 |
+
*/
|
| 38 |
+
?>
|
| 39 |
+
|
| 40 |
+
<?php $shippingCostUrl = Mage::helper( 'germansetup' )->getShippingCostUrl() ?>
|
| 41 |
+
<?php if( !empty( $shippingCostUrl )): ?>
|
| 42 |
+
<div class="shipping">
|
| 43 |
+
<h2><?php echo $this->__('Shipping Costs') ?></h2>
|
| 44 |
+
<p><a href="<?php echo $shippingCostUrl ?>"><?php echo $this->__('Here you find information regarding the shipping costs.') ?></a></p>
|
| 45 |
+
</div>
|
| 46 |
+
<?php endif ?>
|
app/locale/de_DE/FireGento_GermanSetup.csv
CHANGED
|
@@ -1,18 +1,19 @@
|
|
| 1 |
"Display Block below Price","Block unterhalb der Preise darstellen"
|
| 2 |
"Display tax info and shipping cost link below the price on all pages","Steuerinformationen und Link zur Versandkostenseite auf allen Seiten unterhalb der Preise darstellen"
|
|
|
|
| 3 |
"CMS Page for Shipping Info","CMS-Seite für Versandkosten"
|
| 4 |
"Show ""incl. Shipping Cost"" instead of ""excl. Shipping Cost""","Zeige ""inkl. Versandkosten"" statt ""zzgl. Versandkosten"""
|
| 5 |
"No Page","Keine Seite"
|
| 6 |
"No Block","Kein Block"
|
| 7 |
-
"Incl. Tax, excl. <a href=""%s"">Shipping Cost</a>","Inkl. MwSt., zzgl. <a href=""%s"">Versandkosten</a>"
|
| 8 |
-
"Incl. Tax, incl. <a href=""%s"">Shipping Cost</a>","Inkl. MwSt., inkl. <a href=""%s"">Versandkosten</a>"
|
| 9 |
-
"Incl. %s Tax, excl. <a href=""%s"">Shipping Cost</a>","Inkl. %s MwSt., zzgl. <a href=""%s"">Versandkosten</a>"
|
| 10 |
-
"Incl. %s Tax, incl. <a href=""%s"">Shipping Cost</a>","Inkl. %s MwSt., inkl. <a href=""%s"">Versandkosten</a>"
|
| 11 |
-
"Excl. %s Tax, excl. <a href=""%s"">Shipping Cost</a>","Zzgl. %s MwSt., zzgl. <a href=""%s"">Versandkosten</a>"
|
| 12 |
-
"Excl. %s Tax, incl. <a href=""%s"">Shipping Cost</a>","Zzgl. %s MwSt., inkl. <a href=""%s"">Versandkosten</a>"
|
| 13 |
"Incl. Tax","Inkl. MwSt."
|
| 14 |
"Incl. %s Tax","Inkl. %s MwSt."
|
| 15 |
"Excl. %s Tax","Zzgl. %s MwSt."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
"German Setup has been installed.","German Setup wurde installiert."
|
| 18 |
"Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Klicken Sie <a href=""%s"">hier</a>, um CMS-Seiten, Blöcke, E-Mails und Steuer-Einstellungen zu initialisieren."
|
|
@@ -48,6 +49,10 @@
|
|
| 48 |
"Bank name","Kreditinstitut"
|
| 49 |
"CEO","Geschäftsführer"
|
| 50 |
"Owner","Inhaber"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
"E-Mail","E-Mail"
|
| 52 |
"Fax","Fax"
|
| 53 |
"Financial office","Finanzamt"
|
|
@@ -80,7 +85,7 @@
|
|
| 80 |
"Recommended Extensions","Empfohlene Erweiterungen"
|
| 81 |
"Popular Payment Methods in Germany","Beliebte Zahlungsmethoden in Deutschland"
|
| 82 |
"Ip anonymization", "IP Adresse verschleiern"
|
| 83 |
-
"Ensures that the ip address of the customers doesnt get involved into the tracking", "Stellt sicher
|
| 84 |
|
| 85 |
"Dynamic Shipping Tax Class Calculation","Dynamische Berechnung der Versand-Steuerklasse"
|
| 86 |
"Set to ""yes"" if you want to calculate the shipping tax rate based on the highest product tax rate in cart.<br /><b>ATTENTION:</b> This setting overwrites the ""Tax Class for Shipping"" setting above!","Auf ""Ja"" stellen, wenn Sie die Versand-Steuerklasse basierend auf der höchsten Produktsteuerklasse im Warenkorb dynamisch berechnen lassen möchten.<br /><b>ACHTUNG:</b> Diese Einstellung überschreibt die Einstellung ""Steuerklasse für den Versand"" darüber."
|
|
@@ -106,4 +111,19 @@
|
|
| 106 |
"Configuration Settings","Konfigurations-Einstellungen"
|
| 107 |
"CMS Settings","CMS-Einstellungen"
|
| 108 |
"Email Settings","Email-Einstellungen"
|
| 109 |
-
"Tax Settings","Steuer-Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
"Display Block below Price","Block unterhalb der Preise darstellen"
|
| 2 |
"Display tax info and shipping cost link below the price on all pages","Steuerinformationen und Link zur Versandkostenseite auf allen Seiten unterhalb der Preise darstellen"
|
| 3 |
+
"Display Delivery time on Category Pages","Lieferzeit auf Produktübersichtsseiten anzeigen"
|
| 4 |
"CMS Page for Shipping Info","CMS-Seite für Versandkosten"
|
| 5 |
"Show ""incl. Shipping Cost"" instead of ""excl. Shipping Cost""","Zeige ""inkl. Versandkosten"" statt ""zzgl. Versandkosten"""
|
| 6 |
"No Page","Keine Seite"
|
| 7 |
"No Block","Kein Block"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
"Incl. Tax","Inkl. MwSt."
|
| 9 |
"Incl. %s Tax","Inkl. %s MwSt."
|
| 10 |
"Excl. %s Tax","Zzgl. %s MwSt."
|
| 11 |
+
"excl. <a href=""%s"">Shipping Cost</a>","zzgl. <a href=""%s"">Versandkosten</a>"
|
| 12 |
+
"incl. <a href=""%s"">Shipping Cost</a>","inkl. <a href=""%s"">Versandkosten</a>"
|
| 13 |
+
"Display Product Weight below Price","Produktgewicht unterhalb der Preise darstellen"
|
| 14 |
+
"Unit for Product Weight","Einheit für Produktgewicht"
|
| 15 |
+
"e.g. g, kg, lb, ...","z.B. g, kg, lb, ..."
|
| 16 |
+
"Shipping Weight %s","Versandgewicht %s"
|
| 17 |
|
| 18 |
"German Setup has been installed.","German Setup wurde installiert."
|
| 19 |
"Click <a href=""%s"">here</a> to set up your pages, blocks, emails and tax settings.","Klicken Sie <a href=""%s"">hier</a>, um CMS-Seiten, Blöcke, E-Mails und Steuer-Einstellungen zu initialisieren."
|
| 49 |
"Bank name","Kreditinstitut"
|
| 50 |
"CEO","Geschäftsführer"
|
| 51 |
"Owner","Inhaber"
|
| 52 |
+
"Responsible according to § 5 TMG","Inhaltlich verantwortlich gemäß § 5 TMG"
|
| 53 |
+
"Responsible for content","Inhalt. Verantwortlicher"
|
| 54 |
+
"Responsible for content address","Adresse des inhalt. Verantwortlichen"
|
| 55 |
+
"Responsible in the interests of the press law","Verantwortlich im Sinne des Presserechts (V.i.S.d.P.)"
|
| 56 |
"E-Mail","E-Mail"
|
| 57 |
"Fax","Fax"
|
| 58 |
"Financial office","Finanzamt"
|
| 85 |
"Recommended Extensions","Empfohlene Erweiterungen"
|
| 86 |
"Popular Payment Methods in Germany","Beliebte Zahlungsmethoden in Deutschland"
|
| 87 |
"Ip anonymization", "IP Adresse verschleiern"
|
| 88 |
+
"Ensures that the ip address of the customers doesnt get involved into the tracking", "Stellt sicher, dass die IP Adresse der Kunden beim Tracking nicht mit übertragen werden (Datenschutz)"
|
| 89 |
|
| 90 |
"Dynamic Shipping Tax Class Calculation","Dynamische Berechnung der Versand-Steuerklasse"
|
| 91 |
"Set to ""yes"" if you want to calculate the shipping tax rate based on the highest product tax rate in cart.<br /><b>ATTENTION:</b> This setting overwrites the ""Tax Class for Shipping"" setting above!","Auf ""Ja"" stellen, wenn Sie die Versand-Steuerklasse basierend auf der höchsten Produktsteuerklasse im Warenkorb dynamisch berechnen lassen möchten.<br /><b>ACHTUNG:</b> Diese Einstellung überschreibt die Einstellung ""Steuerklasse für den Versand"" darüber."
|
| 111 |
"Configuration Settings","Konfigurations-Einstellungen"
|
| 112 |
"CMS Settings","CMS-Einstellungen"
|
| 113 |
"Email Settings","Email-Einstellungen"
|
| 114 |
+
"Tax Settings","Steuer-Einstellungen"
|
| 115 |
+
|
| 116 |
+
"Delivery Time","Lieferzeit"
|
| 117 |
+
"Shipping Costs","Versandkosten"
|
| 118 |
+
"Hide estimated shipping costs in cart","Geschätzte Versandkosten im Warenkorb verstecken"
|
| 119 |
+
"Replace with a link to the shipping costs cms page","Mit einem Link zur CMS-Seite ""Versandkosten"" ersetzen"
|
| 120 |
+
"Here you find information regarding the shipping costs.","Hier finden Sie Informationen zu den Versandkosten."
|
| 121 |
+
"Hide box ""Last Ordered Items""","Box ""Zuletzt bestellte Artikel"" verstecken"
|
| 122 |
+
"Tax Settings","Steuer-Einstellungen"
|
| 123 |
+
|
| 124 |
+
"Display on","Anzeigen in"
|
| 125 |
+
"On checkout (Magento Default)","Im Checkout (Magento-Standard)"
|
| 126 |
+
"On customer registration (or on checkout, if customer not registered before)","In der Kundenregistrierung (oder im Checkout, wenn der Kunde vorher nicht registriert ist)"
|
| 127 |
+
"On customer registration and on checkout","In der Kundenregistrierung und im Checkout"
|
| 128 |
+
"Nowhere","Nirgendwo"
|
| 129 |
+
"Agreements not confirmed.","Bedingungen wurden nicht bestätigt."
|
app/locale/de_DE/template/germansetup/page/impressum.html
CHANGED
|
@@ -16,6 +16,8 @@ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
|
|
| 16 |
|
| 17 |
<p>{{block type="germansetup/imprint_content" template="germansetup/imprint/legal.phtml"}}</p>
|
| 18 |
|
|
|
|
|
|
|
| 19 |
<p>{{block type="germansetup/imprint_content" template="germansetup/imprint/bank.phtml"}}</p>
|
| 20 |
|
| 21 |
<p>{{block type="germansetup/imprint_field" value="business_rules"}}</p>
|
|
@@ -30,4 +32,3 @@ Richtigkeit und Vollständigkeit dieser Texte eine Verantwortung.</p>
|
|
| 30 |
|
| 31 |
<p>Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen. Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschützten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind! Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.</p>
|
| 32 |
|
| 33 |
-
<p>Inhaltlich verantwortlich gemäß § 5 TMG ist {{block type="germansetup/imprint_field" value="ceo"}}, Kontaktdaten siehe oben. </p>
|
| 16 |
|
| 17 |
<p>{{block type="germansetup/imprint_content" template="germansetup/imprint/legal.phtml"}}</p>
|
| 18 |
|
| 19 |
+
<p>{{block type="germansetup/imprint_content" template="germansetup/imprint/tax.phtml"}}</p>
|
| 20 |
+
|
| 21 |
<p>{{block type="germansetup/imprint_content" template="germansetup/imprint/bank.phtml"}}</p>
|
| 22 |
|
| 23 |
<p>{{block type="germansetup/imprint_field" value="business_rules"}}</p>
|
| 32 |
|
| 33 |
<p>Der Autor ist bestrebt, in allen Publikationen die Urheberrechte der verwendeten Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu beachten, von ihm selbst erstellte Bilder, Grafiken, Tondokumente, Videosequenzen und Texte zu nutzen oder auf lizenzfreie Grafiken, Tondokumente, Videosequenzen und Texte zurückzugreifen. Alle innerhalb des Internetangebotes genannten und ggf. durch Dritte geschützten Marken- und Warenzeichen unterliegen uneingeschränkt den Bestimmungen des jeweils gültigen Kennzeichenrechts und den Besitzrechten der jeweiligen eingetragenen Eigentümer. Allein aufgrund der bloßen Nennung ist nicht der Schluss zu ziehen, dass Markenzeichen nicht durch Rechte Dritter geschützt sind! Das Copyright für veröffentlichte, vom Autor selbst erstellte Objekte bleibt allein beim Autor der Seiten. Eine Vervielfältigung oder Verwendung solcher Grafiken, Tondokumente, Videosequenzen und Texte in anderen elektronischen oder gedruckten Publikationen ist ohne ausdrückliche Zustimmung des Autors nicht gestattet.</p>
|
| 34 |
|
|
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>FireGento_GermanSetup</name>
|
| 4 |
-
<version>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>
|
|
@@ -28,15 +28,11 @@ Advantages:
|
|
| 28 |
- No rewrites of any core classes, no owerwritten classes
|
| 29 |
- Can be installed at any time
|
| 30 |
- Any data overwriting is only done if explicitly executed by admin, not done automatically</description>
|
| 31 |
-
<notes>-
|
| 32 |
-
- Newsletter registrations and unregistrations are now stored as a history (see Newsletter -> Newsletter Subscribers status history)
|
| 33 |
-
- Added compatibility to Sitewards_B2B module
|
| 34 |
-
- Added possibility to display shipping costs as "including" instead of "excluding"
|
| 35 |
-
- Small fixes</notes>
|
| 36 |
<authors><author><name>FireGento Team</name><user>firegento</user><email>team@firegento.com</email></author></authors>
|
| 37 |
-
<date>
|
| 38 |
-
<time>
|
| 39 |
-
<contents><target name="magecommunity"><dir name="FireGento"><dir name="GermanSetup"><dir name="Block"><dir name="Adminhtml"><file name="Germansetup.php" hash="
|
| 40 |
<compatible/>
|
| 41 |
<dependencies><required><php><min>5.2.0</min><max>7.9.9</max></php></required></dependencies>
|
| 42 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>FireGento_GermanSetup</name>
|
| 4 |
+
<version>1.2.3</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>
|
| 28 |
- No rewrites of any core classes, no owerwritten classes
|
| 29 |
- Can be installed at any time
|
| 30 |
- Any data overwriting is only done if explicitly executed by admin, not done automatically</description>
|
| 31 |
+
<notes>- Many small fixes and features</notes>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
<authors><author><name>FireGento Team</name><user>firegento</user><email>team@firegento.com</email></author></authors>
|
| 33 |
+
<date>2013-06-05</date>
|
| 34 |
+
<time>12:07:19</time>
|
| 35 |
+
<contents><target name="magecommunity"><dir name="FireGento"><dir name="GermanSetup"><dir name="Block"><dir name="Adminhtml"><file name="Germansetup.php" hash="7249a001ba86e2fe2d9c6a503b09d87c"/><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Grid.php" hash="696b0fb2dcfd5b4c33d4f3304dd80072"/></dir><file name="Status.php" hash="d597dffb5800a4276f808a1bc4b8ef8f"/></dir></dir><file name="Notifications.php" hash="9bf663592227da07b7be7637aaba030e"/></dir><dir name="Bundle"><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="efa2cea2ccc479b133de478a9b264448"/></dir><file name="Price.php" hash="e7821f6e8a075001d1a5c46958d52b6d"/></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Price"><file name="Abstract.php" hash="f4f062d939f346ed8eec5ae42c62d76d"/></dir><file name="Price.php" hash="68b819bbfde16f9db1e27cf6295c11eb"/></dir></dir><dir name="Checkout"><file name="Agreements.php" hash="f095ac3420904f62f3843a74309ce964"/><file name="Information.php" hash="63ba26233bdfc26705c4af6ea22c76af"/></dir><dir name="Customer"><dir name="Account"><file name="Agreements.php" hash="8bb36f4cfb2b88ff74d5fb153868582d"/></dir></dir><file name="Ga.php" hash="7c28e42a149480cadafbc2a7cc8ad720"/><dir name="Imprint"><file name="Content.php" hash="0448f2b08311eb09f8ecd6621719c497"/><file name="Field.php" hash="73e9b043eca8f76844938163b0431dcb"/></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="9f354576f94ea9379f0c88229cf42eeb"/></dir></dir><dir name="Checkout"><file name="Data.php" hash="8ad3ac94c1dd7c2367f74b9d2ac85a59"/></dir><file name="Data.php" hash="0e3d2d7d88900a0d4c22d37d02cc3584"/></dir><dir name="Model"><file name="Config.php" hash="d69d23cb55853f33219b6f39e4ccd91b"/><dir name="Newsletter"><file name="Observer.php" hash="f53dd9f556235a571e858d810dbb3636"/><dir name="Subscriber"><file name="Status.php" hash="00e08e92ec401511b10f76b6dd545ce1"/></dir></dir><file name="Observer.php" hash="d99004566f6e5aaff008583ea02c34e9"/><dir name="Resource"><dir name="Newsletter"><dir name="Subscriber"><dir name="Status"><file name="Collection.php" hash="c278cdd3288a83df31c93476adcd45c8"/></dir><file name="Status.php" hash="b4769c2ee69c1adffcd3a93cb09dccef"/></dir></dir></dir><dir name="Setup"><file name="Abstract.php" hash="113525676a8188218382bd95a148f819"/><file name="Agreements.php" hash="3be7b5250133eaad69c846af23c35a1e"/><file name="Cms.php" hash="0cf843983f9e54e8bc012e0ee54b6c3e"/><file name="Email.php" hash="53d96d6394a3ac5d260e922b68983bf7"/><file name="Systemconfig.php" hash="2caefe77e727f85b03dd8610642e82ab"/><file name="Tax.php" hash="b4ff48f1607e58b2979517ad06755a14"/></dir><file name="Setup.php" hash="199fdde45225ca4d1f07e8a7340fff8d"/><dir name="Source"><file name="AgreementType.php" hash="b4a18ba55d05a8fc93ca5481cb04da1b"/><dir name="Cms"><file name="Block.php" hash="65619ddf168677d999053590d0582148"/><file name="Page.php" hash="0afcfc4e6bdebf23e0a5d9fd780e725c"/></dir><dir name="Tax"><file name="DynamicType.php" hash="fd9a27ac0c9de485b1f0d9398d5a33e3"/><file name="NewProductTaxClass.php" hash="af4936858d06413572418f47d27496a5"/><file name="ProductTaxClass.php" hash="d90f1bc17dadae62a4d955f78e0af2d5"/></dir></dir><dir name="Tax"><file name="Config.php" hash="b62e3b3f6b44e714ada5de063f1ce68c"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="NewsletterController.php" hash="12b993b33fdc1304b298aadf9c35bc03"/></dir><file name="FrontendController.php" hash="beef26faeb3ef6206a50dc22ab50fe8f"/><file name="GermansetupController.php" hash="9e78576142a1c79a0881120d2a8dda8c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0b25908da8e677acbc61d8ca6498d6e3"/><dir name="at"><file name="tax.xml" hash="b772b2a968798c82d55206cdf065a6f4"/></dir><dir name="ch"><file name="tax.xml" hash="996e0218c57d41667899f5ac193e999e"/></dir><file name="config.xml" hash="46ddafa5891b362dc321731359024105"/><dir name="default"><file name="cms.xml" hash="66403112868c8be2840b86540f443546"/><file name="email.xml" hash="c727b41374f21465d9dc6801254857a1"/><file name="systemconfig.xml" hash="6427ac970c0d63a8c5377c852ec13908"/><file name="tax.xml" hash="70e7f07ff6a9f6649c2355cae76dea6e"/></dir><file name="system.xml" hash="1de496cab38a5294584dfa3b7aaf9778"/></dir><dir name="sql"><dir name="germansetup_setup"><file name="mysql4-install-0.5.0.php" hash="88f9cdacc4a86718851e100f9aa6a103"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="2550a541f1c195f7264d99f86e841e56"/><file name="mysql4-upgrade-1.1.2-1.1.3.php" hash="dc9709870c4ae9c35985a5cb45ea7948"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="7131498276df8d0de3b32c6c21cc5d78"/><file name="mysql4-upgrade-1.1.4-1.2.0.php" hash="5f2541503b0f9e677800fba594dab7f4"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="2eeab5b9aab480263e11629829010778"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="1b0a6c7e5956467dbca0cffd5b83245a"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="9ca91ea0a791083cff2aa73b7cd63eb7"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="germansetup.xml" hash="d737e7583aa5e272c93a5c0001ea4223"/></dir><dir name="template"><dir name="germansetup"><file name="extensions.phtml" hash="daf262c3c165a9846b03e5fbc26faf15"/><file name="form.phtml" hash="616a0e0e0d44b950b0fd7d4fc3de242d"/><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="f4387947ff41451b17f3cb1577682e19"/></dir><dir name="template"><dir name="germansetup"><dir><dir name="checkout"><file name="additional.phtml" hash="4853303a07693827e7de31509ab7f85c"/><dir name="multishipping"><file name="agreements.phtml" hash="2a19135a35685ca43723406aa9986b1c"/><file name="overview.phtml" hash="af1aa216e8e4c2f241df8d0f528744bb"/></dir><dir name="onepage"><file name="agreements.phtml" hash="15c5b7737401ae8ca4b49ee041bf38f6"/></dir></dir><dir name="customer"><dir name="form"><file name="tc-confirmation.phtml" hash="03e35ff7990012bd2ad88d34012ab128"/></dir></dir><dir name="imprint"><file name="address.phtml" hash="6a1c17178336ffe03b0503b295b370f2"/><file name="bank.phtml" hash="ecc8bdcdad0db71085cc4d5a1beb58f5"/><file name="communication.phtml" hash="3b40b8f69c99510ab400616e33608e40"/><file name="email_footer.phtml" hash="9dcf3aa25109a8e7b8d9a236d92fd8e9"/><file name="legal.phtml" hash="09d536510f3863998f9437f923e71422"/><file name="tax.phtml" hash="6a766c210c013c6517fcd07d43bba0eb"/></dir></dir><file name="delivery_time.phtml" hash="d18e541838a73ebb499b66243b829616"/><file name="price_info.phtml" hash="73583803f1dc3176de161d88da0814a6"/><file name="shipping.phtml" hash="7bf5eea85d300156655184f80e793dfc"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="FireGento_GermanSetup.xml" hash="1bd05f60d947625a4d19308579510ef8"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="FireGento_GermanSetup.csv" hash="4714354c94815ec76bf29bd159af344a"/><dir name="template"><dir name="germansetup"><dir name="block"><file name="agb.html" hash="12b9765598280cb21db12493500aceb0"/><file name="widerruf.html" hash="470282d7d2aadb660fa57ea70af7aa9b"/></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="4021cd17b74ab664fcd83fa9e5640ffa"/><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></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="3029914e5a310d69a1429825e3d86045"/></dir></dir></dir></dir></dir></target></contents>
|
| 36 |
<compatible/>
|
| 37 |
<dependencies><required><php><min>5.2.0</min><max>7.9.9</max></php></required></dependencies>
|
| 38 |
</package>
|
skin/frontend/base/default/css/germansetup/checkout.css
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
#checkout-review-table td.last {
|
| 4 |
text-align: right;
|
|
@@ -7,12 +14,27 @@
|
|
| 7 |
font-weight: bold;
|
| 8 |
}
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
#opc-review .additional-information {
|
| 11 |
clear: both;
|
| 12 |
margin:0;
|
| 13 |
padding: 15px 10px;
|
| 14 |
-
border: 1px solid #d9dde3;
|
| 15 |
-
border-width: 0 1px 1px;
|
| 16 |
text-align: right;
|
| 17 |
}
|
| 18 |
|
| 1 |
+
#checkout-review-table tfoot tr {
|
| 2 |
+
background-color: #FBFAF6 !important;
|
| 3 |
+
}
|
| 4 |
|
| 5 |
+
#checkout-review-table tr.odd,
|
| 6 |
+
#checkout-review-table tr.even {
|
| 7 |
+
background-color: #FBFAF6;
|
| 8 |
+
}
|
| 9 |
|
| 10 |
#checkout-review-table td.last {
|
| 11 |
text-align: right;
|
| 14 |
font-weight: bold;
|
| 15 |
}
|
| 16 |
|
| 17 |
+
#checkout-review-table-wrapper {
|
| 18 |
+
border: 2px solid #0A263D;
|
| 19 |
+
border-bottom: 0;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
#opc-review #checkout-step-review .additional-information {
|
| 23 |
+
border: 2px solid #0A263D;
|
| 24 |
+
border-top: 0;
|
| 25 |
+
border-bottom: 0;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
#checkout-review-submit {
|
| 29 |
+
background-color: #FBFAF6;
|
| 30 |
+
border: 2px solid #0A263D;
|
| 31 |
+
border-top: 0;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
#opc-review .additional-information {
|
| 35 |
clear: both;
|
| 36 |
margin:0;
|
| 37 |
padding: 15px 10px;
|
|
|
|
|
|
|
| 38 |
text-align: right;
|
| 39 |
}
|
| 40 |
|
