201 lines
12 KiB
Vue
201 lines
12 KiB
Vue
<script setup>
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue'
|
|
import StatutBadge from '@/Components/Commandes/StatutBadge.vue'
|
|
import PrioriteBadge from '@/Components/Commandes/PrioriteBadge.vue'
|
|
import Pagination from '@/Components/Pagination.vue'
|
|
import ConfirmModal from '@/Components/ConfirmModal.vue'
|
|
import { Head, Link, router, useForm, usePage } from '@inertiajs/vue3'
|
|
import { ref, reactive } from 'vue'
|
|
|
|
const props = defineProps({
|
|
commandes: Object,
|
|
services: Array,
|
|
fournisseurs: Array,
|
|
filters: Object,
|
|
})
|
|
|
|
const page = usePage()
|
|
const statuts = page.props.config?.statuts ?? {}
|
|
|
|
const filters = reactive({ ...props.filters })
|
|
const deleteTarget = ref(null)
|
|
|
|
function applyFilters() {
|
|
router.get(route('commandes.index'), filters, { preserveState: true, replace: true })
|
|
}
|
|
|
|
function resetFilters() {
|
|
Object.keys(filters).forEach(k => filters[k] = '')
|
|
applyFilters()
|
|
}
|
|
|
|
function confirmDelete(cmd) {
|
|
deleteTarget.value = cmd
|
|
}
|
|
|
|
const deleteForm = useForm({})
|
|
function doDelete() {
|
|
deleteForm.delete(route('commandes.destroy', deleteTarget.value.id), {
|
|
onSuccess: () => deleteTarget.value = null,
|
|
})
|
|
}
|
|
|
|
function formatDate(d) {
|
|
if (!d) return '—'
|
|
return new Intl.DateTimeFormat('fr-FR').format(new Date(d))
|
|
}
|
|
|
|
function formatCurrency(v) {
|
|
if (v == null) return '—'
|
|
return new Intl.NumberFormat('fr-FR', { style: 'currency', currency: 'EUR' }).format(v)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Commandes" />
|
|
<AuthenticatedLayout>
|
|
<template #header>
|
|
<div class="flex items-center justify-between">
|
|
<h1 class="text-xl font-semibold text-gray-900">Commandes</h1>
|
|
<Link v-if="$page.props.auth.user?.roles?.some(r => ['admin','responsable','acheteur'].includes(r.name))"
|
|
:href="route('commandes.create')"
|
|
class="rounded-lg bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700 transition-colors">
|
|
+ Nouvelle commande
|
|
</Link>
|
|
</div>
|
|
</template>
|
|
|
|
<div class="space-y-4">
|
|
<!-- Filtres -->
|
|
<div class="rounded-xl bg-white p-4 shadow-sm border border-gray-100">
|
|
<div class="grid gap-3 sm:grid-cols-2 lg:grid-cols-4 xl:grid-cols-6">
|
|
<input v-model="filters.search" @input="applyFilters" type="text" placeholder="Recherche..."
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none xl:col-span-2" />
|
|
|
|
<select v-model="filters.service_id" @change="applyFilters"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none">
|
|
<option value="">Tous les services</option>
|
|
<option v-for="s in services" :key="s.id" :value="s.id">{{ s.nom }}</option>
|
|
</select>
|
|
|
|
<select v-model="filters.fournisseur_id" @change="applyFilters"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none">
|
|
<option value="">Tous les fournisseurs</option>
|
|
<option v-for="f in fournisseurs" :key="f.id" :value="f.id">{{ f.nom }}</option>
|
|
</select>
|
|
|
|
<select v-model="filters.statut" @change="applyFilters"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none">
|
|
<option value="">Tous les statuts</option>
|
|
<option v-for="(label, key) in statuts" :key="key" :value="key">{{ label }}</option>
|
|
</select>
|
|
|
|
<select v-model="filters.priorite" @change="applyFilters"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none">
|
|
<option value="">Toutes priorités</option>
|
|
<option value="urgente">Urgente</option>
|
|
<option value="haute">Haute</option>
|
|
<option value="normale">Normale</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="mt-3 grid gap-3 sm:grid-cols-3">
|
|
<input v-model="filters.date_from" @change="applyFilters" type="date" placeholder="Du"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none" />
|
|
<input v-model="filters.date_to" @change="applyFilters" type="date" placeholder="Au"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm focus:border-blue-500 focus:outline-none" />
|
|
<button @click="resetFilters"
|
|
class="rounded-lg border border-gray-300 px-3 py-2 text-sm text-gray-600 hover:bg-gray-50 transition-colors">
|
|
Réinitialiser les filtres
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Table -->
|
|
<div class="rounded-xl bg-white shadow-sm border border-gray-100 overflow-hidden">
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-100 text-sm">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">N°</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Objet</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Service</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Fournisseur</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Statut</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Priorité</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Demandé le</th>
|
|
<th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase">Souhaité le</th>
|
|
<th class="px-4 py-3 text-right text-xs font-medium text-gray-500 uppercase">Montant TTC</th>
|
|
<th class="px-4 py-3 text-center text-xs font-medium text-gray-500 uppercase">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-50">
|
|
<tr v-for="cmd in commandes.data" :key="cmd.id"
|
|
:class="['hover:bg-gray-50 transition-colors', cmd.est_en_retard ? 'bg-red-50/30' : '']">
|
|
<td class="px-4 py-3 font-medium">
|
|
<Link :href="route('commandes.show', cmd.id)" class="text-blue-600 hover:underline whitespace-nowrap">
|
|
{{ cmd.numero_commande }}
|
|
</Link>
|
|
</td>
|
|
<td class="px-4 py-3 max-w-xs">
|
|
<p class="truncate text-gray-800">{{ cmd.objet }}</p>
|
|
</td>
|
|
<td class="px-4 py-3 whitespace-nowrap text-gray-600">{{ cmd.service?.nom }}</td>
|
|
<td class="px-4 py-3 whitespace-nowrap text-gray-600">{{ cmd.fournisseur?.nom ?? '—' }}</td>
|
|
<td class="px-4 py-3"><StatutBadge :statut="cmd.statut" /></td>
|
|
<td class="px-4 py-3"><PrioriteBadge :priorite="cmd.priorite" /></td>
|
|
<td class="px-4 py-3 whitespace-nowrap text-gray-600">{{ formatDate(cmd.date_demande) }}</td>
|
|
<td class="px-4 py-3 whitespace-nowrap" :class="cmd.est_en_retard ? 'text-red-600 font-medium' : 'text-gray-600'">
|
|
{{ formatDate(cmd.date_souhaitee) }}
|
|
<span v-if="cmd.est_en_retard" class="ml-1 text-xs">⚠</span>
|
|
</td>
|
|
<td class="px-4 py-3 text-right font-medium whitespace-nowrap text-gray-900">
|
|
{{ formatCurrency(cmd.montant_ttc) }}
|
|
</td>
|
|
<td class="px-4 py-3 text-center">
|
|
<div class="flex items-center justify-center gap-2">
|
|
<Link :href="route('commandes.show', cmd.id)"
|
|
class="text-gray-400 hover:text-blue-600 transition-colors" title="Voir">
|
|
<svg class="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
|
</svg>
|
|
</Link>
|
|
<Link v-if="['brouillon','en_attente_validation'].includes(cmd.statut)"
|
|
:href="route('commandes.edit', cmd.id)"
|
|
class="text-gray-400 hover:text-indigo-600 transition-colors" title="Modifier">
|
|
<svg class="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
|
</svg>
|
|
</Link>
|
|
<button v-if="$page.props.auth.user?.roles?.some(r => r.name === 'admin')" @click="confirmDelete(cmd)"
|
|
class="text-gray-400 hover:text-red-600 transition-colors" title="Supprimer">
|
|
<svg class="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div v-if="!commandes.data.length" class="py-12 text-center text-gray-400">
|
|
Aucune commande trouvée.
|
|
</div>
|
|
|
|
<div class="border-t border-gray-100 px-4 py-3">
|
|
<Pagination :links="commandes.links" :meta="commandes.meta" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ConfirmModal :show="!!deleteTarget"
|
|
title="Supprimer la commande"
|
|
:message="`Supprimer définitivement la commande ${deleteTarget?.numero_commande} ?`"
|
|
:processing="deleteForm.processing"
|
|
@confirm="doDelete"
|
|
@cancel="deleteTarget = null" />
|
|
</AuthenticatedLayout>
|
|
</template>
|