diff --git a/Configuration/TCA/tx_cart_domain_model_order_tax.php b/Configuration/TCA/tx_cart_domain_model_order_tax.php
index 66f72623..79f16fb4 100644
--- a/Configuration/TCA/tx_cart_domain_model_order_tax.php
+++ b/Configuration/TCA/tx_cart_domain_model_order_tax.php
@@ -35,6 +35,19 @@
],
],
'columns' => [
+ 'record_type' => [
+ 'exclude' => 0,
+ 'label' => $_LLL . ':tx_cart_domain_model_order_tax.record_type',
+ 'config' => [
+ 'type' => 'select',
+ 'renderType' => 'selectSingle',
+ 'items' => [
+ [$_LLL . ':tx_cart_domain_model_order_tax.record_type.tax', 'tax'],
+ [$_LLL . ':tx_cart_domain_model_order_tax.record_type.total_tax', 'total_tax'],
+ ],
+ 'default' => 'tax',
+ ],
+ ],
'tax' => [
'exclude' => 0,
'label' => $_LLL . ':tx_cart_domain_model_order_tax.tax',
diff --git a/Documentation/guides.xml b/Documentation/guides.xml
index 2f73fc06..94151cd0 100644
--- a/Documentation/guides.xml
+++ b/Documentation/guides.xml
@@ -11,7 +11,7 @@
interlink-shortcode="extcode/cart"
/>
diff --git a/Resources/Private/Language/locallang_db.xlf b/Resources/Private/Language/locallang_db.xlf
index d0b6a3c7..b59f0407 100644
--- a/Resources/Private/Language/locallang_db.xlf
+++ b/Resources/Private/Language/locallang_db.xlf
@@ -260,6 +260,15 @@
Tax Class
+
+ Record Type
+
+
+ Tax
+
+
+ Total Tax/source>
+
Product
diff --git a/ext_emconf.php b/ext_emconf.php
index d90b4988..90fa3af7 100644
--- a/ext_emconf.php
+++ b/ext_emconf.php
@@ -4,7 +4,7 @@
'title' => 'Cart',
'description' => 'Shopping Cart(s) for TYPO3',
'category' => 'plugin',
- 'version' => '10.2.7',
+ 'version' => '10.2.8',
'state' => 'stable',
'author' => 'Daniel Gohlke',
'author_email' => 'ext@extco.de',