Comments for invoices
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user