39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<template>
|
|
<div class="flex items-center justify-between">
|
|
<div class="flex items-center gap-10">
|
|
<Icon @click="router.push('/')" name="gg:arrow-left-o" size="44" class="cursor-pointer text-primary-500"/>
|
|
<h1 class="text-3xl font-bold uppercase text-primary-500">listes des réceptions en attente</h1>
|
|
</div>
|
|
</div>
|
|
<UiDataTable
|
|
:columns="columns"
|
|
url="receptions"
|
|
:query="{ isValid: false }"
|
|
@row-click="goToReception"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
const columns = [
|
|
{key: 'supplier', label: 'Fournisseur'},
|
|
{key: 'address.fullAddress', label: 'Adresse'},
|
|
{key: 'receptionType', label: 'Type'},
|
|
{key: 'carrier', label: 'Transporteur'},
|
|
{key: 'licensePlate', label: 'Immatriculation'},
|
|
]
|
|
|
|
|
|
type ReceptionRow = {
|
|
id?: number | string
|
|
}
|
|
const goToReception = (row: ReceptionRow) => {
|
|
const id = Number(row?.id)
|
|
if (!Number.isFinite(id)) return
|
|
router.push(`/reception/${id}`)
|
|
}
|
|
</script>
|