|
2 | 2 | <span class="text-gray-700">{{ `Creating invoice for ${form.model.for.value.value.firstName} ${form.model.for.value.value.lastName} as ` }}</span>
|
3 | 3 | <UserLink :user="form.model.by.value.value"/>
|
4 | 4 | <div class="flex flex-column justify-content-between gap-2">
|
5 |
| - <InputSpan :label="$t('invoice.Description')" |
| 5 | + <InputSpan :label="$t('c_invoiceInfo.Description')" |
6 | 6 | :value="form.model.description.value.value"
|
7 | 7 | :attributes="form.model.description.attr.value"
|
8 | 8 | @update:value="form.context.setFieldValue('description', $event)"
|
9 | 9 | :errors="form.context.errors.value.description"
|
10 | 10 | id="description" placeholder="Invoice Description" type="textarea"/>
|
11 |
| - <InputSpan :label="$t('invoice.Reference')" |
| 11 | + <InputSpan :label="$t('c_invoiceInfo.Reference')" |
12 | 12 | :value="form.model.reference.value.value"
|
13 | 13 | :attributes="form.model.reference.attr.value"
|
14 | 14 | @update:value="form.context.setFieldValue('reference', $event)"
|
15 | 15 | :errors="form.context.errors.value.reference"
|
16 | 16 | id="reference" placeholder="Invoice Reference" type="text"/>
|
17 |
| - <InputSpan :label="$t('invoice.Date')" |
| 17 | + <InputSpan :label="$t('c_invoiceInfo.Date')" |
18 | 18 | :value="form.model.date.value.value"
|
19 | 19 | :attributes="form.model.date.attr.value"
|
20 | 20 | @update:value="form.context.setFieldValue('date', $event)"
|
21 | 21 | :errors="form.context.errors.value.date"
|
22 | 22 | id="date" placeholder="Invoice Date" type="date"/>
|
23 |
| - <InputSpan :label="$t('invoice.Addressee')" |
| 23 | + <InputSpan :label="$t('c_invoiceInfo.Addressee')" |
24 | 24 | :value="form.model.addressee.value.value"
|
25 | 25 | :attributes="form.model.addressee.attr.value"
|
26 | 26 | @update:value="form.context.setFieldValue('addressee', $event)"
|
27 | 27 | :errors="form.context.errors.value.addressee"
|
28 | 28 | id="addressee" placeholder="Addressee" type="text"/>
|
29 |
| - <InputSpan :label="$t('invoice.Attention')" |
| 29 | + <InputSpan :label="$t('c_invoiceInfo.Attention')" |
30 | 30 | :value="form.model.attention.value.value"
|
31 | 31 | :attributes="form.model.attention.attr.value"
|
32 | 32 | @update:value="form.context.setFieldValue('attention', $event)"
|
33 | 33 | :errors="form.context.errors.value.attention"
|
34 | 34 | id="attention" placeholder="Attention" type="text"/>
|
35 |
| - <InputSpan :label="$t('invoice.Street')" |
| 35 | + <InputSpan :label="$t('c_invoiceInfo.Street')" |
36 | 36 | :value="form.model.street.value.value"
|
37 | 37 | :attributes="form.model.street.attr.value"
|
38 | 38 | @update:value="form.context.setFieldValue('street', $event)"
|
39 | 39 | :errors="form.context.errors.value.street"
|
40 | 40 | id="street" placeholder="Street" type="text"/>
|
41 |
| - <InputSpan :label="$t('invoice.Postal code')" |
| 41 | + <InputSpan :label="$t('c_invoiceInfo.Postal code')" |
42 | 42 | :value="form.model.postalCode.value.value"
|
43 | 43 | :attributes="form.model.postalCode.attr.value"
|
44 | 44 | @update:value="form.context.setFieldValue('postalCode', $event)"
|
45 | 45 | :errors="form.context.errors.value.postalCode"
|
46 | 46 | id="postalCode" placeholder="Postal code" type="text"/>
|
47 |
| - <InputSpan :label="$t('invoice.City')" |
| 47 | + <InputSpan :label="$t('c_invoiceInfo.City')" |
48 | 48 | :value="form.model.city.value.value"
|
49 | 49 | :attributes="form.model.city.attr.value"
|
50 | 50 | @update:value="form.context.setFieldValue('city', $event)"
|
51 | 51 | :errors="form.context.errors.value.city"
|
52 | 52 | id="city" placeholder="City" type="text"/>
|
53 |
| - <InputSpan :label="$t('invoice.Country')" |
| 53 | + <InputSpan :label="$t('c_invoiceInfo.Country')" |
54 | 54 | :value="form.model.country.value.value"
|
55 | 55 | :attributes="form.model.country.attr.value"
|
56 | 56 | @update:value="form.context.setFieldValue('country', $event)"
|
57 | 57 | :errors="form.context.errors.value.country"
|
58 | 58 | id="country" placeholder="Country" type="text"/>
|
59 |
| - <InputSpan :label="$t('invoice.Is credit invoice')" |
| 59 | + <InputSpan :label="$t('c_invoiceInfo.IsCreditInvoice')" |
60 | 60 | :value="form.model.isCreditInvoice.value.value"
|
61 | 61 | :attributes="form.model.isCreditInvoice.attr.value"
|
62 | 62 | @update:value="form.context.setFieldValue('isCreditInvoice', $event)"
|
|
0 commit comments