diff --git a/pages/createDocument/edit/[[id]].vue b/pages/createDocument/edit/[[id]].vue
index ce7ba9c..bce8d07 100644
--- a/pages/createDocument/edit/[[id]].vue
+++ b/pages/createDocument/edit/[[id]].vue
@@ -312,6 +312,14 @@ const setDocumentTypeConfig = (withTexts = false) => {
}
+const setTaxType = () => {
+ if(itemInfo.value.taxType === "19 UStG") {
+ itemInfo.value.rows.forEach(row => {
+ row.taxPercent = 0
+ })
+ }
+}
+
const setCustomerData = () => {
let customer = customers.value.find(i => i.id === itemInfo.value.customer)
@@ -1266,6 +1274,7 @@ const setRowData = (row) => {