Comments for invoices

This commit is contained in:
2026-05-14 16:16:36 +02:00
parent c60429ad28
commit 775d9158a6
11 changed files with 41 additions and 14 deletions
@@ -20,7 +20,7 @@ const formData = reactive({
type_internal: props.newInvoice.internalType || '',
cost_unit: props.newInvoice.costUnitId || '',
amount: props.newInvoice.amountPlain || '',
reason_of_correction: '',
notices: props.newInvoice.comments || '',
})
const submitForm = () => {
@@ -71,9 +71,13 @@ onMounted(async () => {
</tr>
<tr>
<td>Grund der Korrektur:</td>
<td>Anmerkungen:</td>
<td>
<input type="text" v-model="formData.reason_of_correction" class="width-half-full" />
<textarea
id="notices"
name="notices" v-model="formData.notices"
maxlength="128"
style="font-size: 14pt; width: 550px;" />
</td>
</tr>