Added 19 USTG
This commit is contained in:
@@ -669,7 +669,7 @@ const getDocumentData = () => {
|
||||
|
||||
let rows = itemInfo.value.rows
|
||||
|
||||
if(itemInfo.value.taxType === "13b UStG") {
|
||||
if(itemInfo.value.taxType === "13b UStG" || itemInfo.value.taxType === "19 UStG") {
|
||||
rows = rows.map(row => {
|
||||
return {
|
||||
...row,
|
||||
@@ -1243,7 +1243,7 @@ const setRowData = (row) => {
|
||||
v-if="itemInfo.type === 'invoices'"
|
||||
>
|
||||
<USelectMenu
|
||||
:options="['Standard','13b UStG']"
|
||||
:options="['Standard','13b UStG','19 UStG']"
|
||||
v-model="itemInfo.taxType"
|
||||
class="w-full"
|
||||
></USelectMenu>
|
||||
@@ -1954,7 +1954,7 @@ const setRowData = (row) => {
|
||||
<USelectMenu
|
||||
:options="[19,7,0]"
|
||||
v-model="row.taxPercent"
|
||||
:disabled="itemInfo.taxType === '13b UStG'"
|
||||
:disabled="itemInfo.taxType === '13b UStG' || itemInfo.taxType === '19 UStG'"
|
||||
>
|
||||
<template #option="{option}">
|
||||
{{option}} %
|
||||
|
||||
Reference in New Issue
Block a user