Update WorkorderCompanyPWA.php

This commit is contained in:
Luca Haid
2025-09-08 08:47:09 +00:00
parent 1f8d3c36f9
commit ac5c8e5c24

View File

@@ -418,11 +418,10 @@
<div v-for="wo in filteredWorkorders" :key="wo.id" @click="openDetails(wo)" class="bg-white p-4 rounded-lg shadow-md cursor-pointer transition active:scale-[0.98]">
<div class="flex justify-between items-start">
<div class="flex-grow pr-2 min-w-0">
<p class="font-bold text-slate-800 break-words">{{ wo.customerName || 'N/A' }}</p>
<p class="font-bold text-slate-800 break-words">#{{ wo.id }} | {{ wo.customerName || 'N/A' }}</p>
<p class="text-sm text-slate-500 break-words">{{ wo.street }} {{ wo.hausnummer }}, {{ wo.plz }} {{ wo.city }}</p>
<div class="flex items-center text-xs text-slate-400 mt-1 flex-wrap">
<span class="mr-2">ID: {{ wo.id }}</span>
<span class="mr-2">OAID: {{ wo.oaid || 'N/A' }}</span>
<div class="items-center text-xs text-slate-400 mt-1">
<span class="mr-2">OAID: {{ wo.oaid || 'N/A' }}</span><br>
<span class="truncate">FCP: {{ wo.rimo_fcp_name || 'N/A' }}</span>
</div>
</div>