This commit is contained in:
2024-02-22 19:01:12 +01:00
parent 4e3ac183d4
commit c6e0854544
8 changed files with 493 additions and 24 deletions

View File

@@ -255,7 +255,7 @@ setupPage()
label="Land"
>
<USelectMenu
:options="['Deutschland','Niederlande','Belgien','Italien']"
:options="['Deutschland','Niederlande','Belgien','Italien', 'Frankreich','Irland','USA','Spanien', 'Schweden']"
v-model="itemInfo.infoData.country"
/>
</UFormGroup>

View File

@@ -132,13 +132,6 @@ setupPage()
v-model="itemInfo.name"
/>
</UFormGroup>
<UFormGroup
label="Hersteller:"
>
<UInput
v-model="itemInfo.manufacturer"
/>
</UFormGroup>
<UFormGroup
label="Einheit:"
>
@@ -162,25 +155,22 @@ setupPage()
multiple
/>
</UFormGroup>
<UFormGroup
label="EAN:"
label="Leistungskategorie:"
>
<UInput
v-model="itemInfo.ean"
/>
<USelectMenu
:options="dataStore.serviceCategories"
option-attribute="name"
value-attribute="id"
></USelectMenu>
</UFormGroup>
<UFormGroup
label="Barcode:"
label="Verkaufspreis:"
>
<UInput
v-model="itemInfo.barcode"
/>
</UFormGroup>
<UFormGroup
label="Einkaufspreis:"
>
<UInput
v-model="itemInfo.purchasePrice"
v-model="itemInfo.sellingPrice"
type="number"
steps="0.01"
>

View File

@@ -172,7 +172,7 @@ setupPage()
</InputGroup>
<DocumentList
:documents="dataStore.getDocumentsByContractId(currentItem.id)"
:documents="dataStore.getDocumentsByVehicleId(currentItem.id)"
/>
</div>
</template>

View File

@@ -161,6 +161,14 @@ setupPage()
v-model="itemInfo.infoData.city"
/>
</UFormGroup>
<UFormGroup
label="Land"
>
<USelectMenu
:options="['Deutschland','Niederlande','Belgien','Italien', 'Frankreich','Irland','USA','Spanien', 'Schweden']"
v-model="itemInfo.infoData.country"
/>
</UFormGroup>
<UFormGroup
label="Telefon:"