Changed users to profiles in projects

This commit is contained in:
2024-12-18 20:47:01 +01:00
parent 756bfb8478
commit a6c1eaf69f

View File

@@ -303,7 +303,7 @@ const invoiceDeliveryNotes = () => {
<UCard class="mt-3">
<h1 class="font-bold text-lg mb-3">Beteiligte Benutzer:</h1>
<UAlert
v-for="projectUser in itemInfo.users"
v-for="projectUser in itemInfo.profiles"
:avatar="{ alt: dataStore.getProfileById(projectUser).fullName }"
:title="dataStore.getProfileById(projectUser).fullName"
class="mb-3"
@@ -643,7 +643,7 @@ const invoiceDeliveryNotes = () => {
label="Beteiligte Benutzer:"
>
<USelectMenu
v-model="itemInfo.users"
v-model="itemInfo.profiles"
:options="dataStore.profiles"
option-attribute="fullName"
value-attribute="id"
@@ -652,7 +652,7 @@ const invoiceDeliveryNotes = () => {
:search-attributes="['fullName']"
>
<template #label>
{{itemInfo.users.length > 0 ? itemInfo.users.map(i => dataStore.getProfileById(i).fullName).join(", ") : "Kein Benutzer ausgewählt"}}
{{itemInfo.profiles.length > 0 ? itemInfo.profiles.map(i => dataStore.getProfileById(i).fullName).join(", ") : "Kein Benutzer ausgewählt"}}
</template>
</USelectMenu>
</UFormGroup>