Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | <script setup lang="ts">
import { useAuthAbility } from '@/composables/useAuthAbilities';
import AppLayout from '@/layouts/AppLayout.vue';
import { Head, Link, router } from '@inertiajs/vue3';
import { computed, ref } from 'vue';
import { Plus, Search, Filter, ArrowUp, ArrowDown, Settings, Eye } from 'lucide-vue-next';
import stockMovements from '@/routes/stock-movements';
interface Product {
id: number;
name: string;
sku: string | null;
}
interface User {
id: number;
name: string;
}
interface StockMovement {
id: number;
product: Product | null;
type: 'in' | 'out' | 'adjustment' | 'transfer';
quantity: number;
unit_cost: number | null;
stock_before: number;
stock_after: number;
reference: string | null;
notes: string | null;
user: User | null;
created_at: string;
}
interface Props {
movements?: {
data: StockMovement[];
links?: any[];
from?: number;
to?: number;
total?: number;
meta?: {
from?: number;
to?: number;
total?: number;
};
};
filters?: {
product_id?: number;
type?: string;
date_from?: string;
date_to?: string;
sort_by?: string;
sort_dir?: 'asc' | 'desc';
};
products?: Product[];
}
const canStockMovementsCreate = useAuthAbility('stock-movements', 'create');
const props = withDefaults(defineProps<Props>(), {
movements: () => ({
data: [],
links: [],
from: 0,
to: 0,
total: 0,
meta: {
from: 0,
to: 0,
total: 0
}
}),
filters: () => ({}),
products: () => [],
});
const searchProduct = ref(props.filters?.product_id?.toString() || '');
const typeFilter = ref(props.filters?.type || '');
const dateFrom = ref(props.filters?.date_from || '');
const dateTo = ref(props.filters?.date_to || '');
const sortBy = ref(props.filters?.sort_by || 'created_at');
const sortDir = ref(props.filters?.sort_dir || 'desc');
function applyFilters() {
const params: Record<string, string | number> = {};
if (searchProduct.value) params.product_id = parseInt(searchProduct.value);
if (typeFilter.value) params.type = typeFilter.value;
if (dateFrom.value) params.date_from = dateFrom.value;
if (dateTo.value) params.date_to = dateTo.value;
params.sort_by = sortBy.value;
params.sort_dir = sortDir.value;
router.get(stockMovements.index().url, params, {
preserveState: true,
replace: true,
});
}
function toggleSort(field: string) {
if (sortBy.value === field) {
sortDir.value = sortDir.value === 'asc' ? 'desc' : 'asc';
} else {
sortBy.value = field;
sortDir.value = field === 'created_at' ? 'desc' : 'asc';
}
applyFilters();
}
function sortIndicator(field: string) {
if (sortBy.value !== field) return '↕';
return sortDir.value === 'asc' ? '↑' : '↓';
}
function clearFilters() {
searchProduct.value = '';
typeFilter.value = '';
dateFrom.value = '';
dateTo.value = '';
applyFilters();
}
function getTypeIcon(type: string) {
return type === 'in' ? ArrowUp : type === 'out' ? ArrowDown : Settings;
}
function getTypeColor(type: string) {
return {
'in': 'text-green-600 bg-green-50',
'out': 'text-red-600 bg-red-50',
'adjustment': 'text-blue-600 bg-blue-50',
'transfer': 'text-yellow-600 bg-yellow-50',
}[type] || 'text-gray-600 bg-gray-50';
}
</script>
<template>
<Head title="Stock Movements" />
<AppLayout>
<div class="p-6">
<div class="mb-6 flex items-center justify-between">
<div>
<h1 class="text-2xl font-bold text-gray-900">Stock Movements</h1>
<p class="text-gray-600">Track all stock movements and inventory changes</p>
</div>
<Link
v-if="canStockMovementsCreate"
:href="stockMovements.create().url"
class="flex items-center gap-2 rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700"
>
<Plus class="h-4 w-4" />
Record Movement
</Link>
</div>
<!-- Filters -->
<div class="mb-6 rounded-lg border border-gray-200 bg-white p-4">
<div class="flex flex-wrap items-end gap-4">
<div class="min-w-[200px] flex-1">
<label class="mb-1 block text-sm font-medium text-gray-700">Product</label>
<select
v-model="searchProduct"
class="w-full rounded border border-gray-300 px-3 py-2 focus:border-blue-500 focus:ring-2 focus:ring-blue-500"
>
<option value="">All Products</option>
<option v-for="product in (products || [])" :key="product.id" :value="product.id.toString()">
{{ product.name }} {{ product.sku ? `(${product.sku})` : '' }}
</option>
</select>
</div>
<div class="min-w-[150px]">
<label class="mb-1 block text-sm font-medium text-gray-700">Type</label>
<select
v-model="typeFilter"
class="w-full rounded border border-gray-300 px-3 py-2 focus:border-blue-500 focus:ring-2 focus:ring-blue-500"
>
<option value="">All Types</option>
<option value="in">In</option>
<option value="out">Out</option>
<option value="adjustment">Adjustment</option>
</select>
</div>
<div class="min-w-[150px]">
<label class="mb-1 block text-sm font-medium text-gray-700">Date From</label>
<input
v-model="dateFrom"
type="date"
class="w-full rounded border border-gray-300 px-3 py-2 focus:border-blue-500 focus:ring-2 focus:ring-blue-500"
/>
</div>
<div class="min-w-[150px]">
<label class="mb-1 block text-sm font-medium text-gray-700">Date To</label>
<input
v-model="dateTo"
type="date"
class="w-full rounded border border-gray-300 px-3 py-2 focus:border-blue-500 focus:ring-2 focus:ring-blue-500"
/>
</div>
<div class="flex gap-2">
<button
@click="applyFilters"
class="rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700"
>
Filter
</button>
<button
@click="clearFilters"
class="rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-50"
>
Clear
</button>
</div>
</div>
</div>
<!-- Movements Table -->
<div class="overflow-hidden rounded-lg border border-gray-200 bg-white shadow">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('created_at')" class="inline-flex items-center gap-1 hover:text-gray-700">Date {{ sortIndicator('created_at') }}</button></th>
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('product_name')" class="inline-flex items-center gap-1 hover:text-gray-700">Product {{ sortIndicator('product_name') }}</button></th>
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('type')" class="inline-flex items-center gap-1 hover:text-gray-700">Type {{ sortIndicator('type') }}</button></th>
<th class="px-6 py-3 text-right text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('quantity')" class="inline-flex items-center gap-1 hover:text-gray-700">Quantity {{ sortIndicator('quantity') }}</button></th>
<th class="px-6 py-3 text-right text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('stock_before')" class="inline-flex items-center gap-1 hover:text-gray-700">Stock Before {{ sortIndicator('stock_before') }}</button></th>
<th class="px-6 py-3 text-right text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('stock_after')" class="inline-flex items-center gap-1 hover:text-gray-700">Stock After {{ sortIndicator('stock_after') }}</button></th>
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('reference')" class="inline-flex items-center gap-1 hover:text-gray-700">Reference {{ sortIndicator('reference') }}</button></th>
<th class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider text-gray-500"><button type="button" @click="toggleSort('user_name')" class="inline-flex items-center gap-1 hover:text-gray-700">User {{ sortIndicator('user_name') }}</button></th>
<th class="px-6 py-3 text-right text-xs font-medium uppercase tracking-wider text-gray-500">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200 bg-white">
<tr
v-for="movement in (movements?.data || [])"
:key="movement.id"
class="cursor-pointer hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500"
tabindex="0"
role="link"
@click="router.visit(stockMovements.show(movement.id).url)"
@keydown.enter.prevent="router.visit(stockMovements.show(movement.id).url)"
@keydown.space.prevent="router.visit(stockMovements.show(movement.id).url)"
>
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-900">
{{ new Date(movement.created_at).toLocaleDateString() }}
<div class="text-xs text-gray-500">{{ new Date(movement.created_at).toLocaleTimeString() }}</div>
</td>
<td class="whitespace-nowrap px-6 py-4">
<div class="font-medium text-gray-900">{{ movement.product?.name ?? 'Unknown product' }}</div>
<div v-if="movement.product?.sku" class="text-xs text-gray-500">{{ movement.product.sku }}</div>
</td>
<td class="whitespace-nowrap px-6 py-4">
<span :class="getTypeColor(movement.type)" class="inline-flex items-center gap-1 rounded-full px-2 py-1 text-xs font-semibold capitalize">
<component :is="getTypeIcon(movement.type)" class="h-3 w-3" />
{{ movement.type }}
</span>
</td>
<td class="whitespace-nowrap px-6 py-4 text-right text-sm font-medium" :class="movement.type === 'in' ? 'text-green-600' : movement.type === 'out' ? 'text-red-600' : 'text-gray-900'">
{{ movement.type === 'in' ? '+' : movement.type === 'out' ? '-' : '' }}{{ Math.abs(movement.quantity) }}
</td>
<td class="whitespace-nowrap px-6 py-4 text-right text-sm text-gray-500">
{{ movement.stock_before }}
</td>
<td class="whitespace-nowrap px-6 py-4 text-right text-sm font-medium text-gray-900">
{{ movement.stock_after }}
</td>
<td class="px-6 py-4 text-sm text-gray-500">
{{ movement.reference || '—' }}
</td>
<td class="whitespace-nowrap px-6 py-4 text-sm text-gray-500">
{{ movement.user?.name || 'System' }}
</td>
<td class="whitespace-nowrap px-6 py-4 text-right text-sm font-medium" @click.stop>
</td>
</tr>
<tr v-if="!movements?.data || movements.data.length === 0">
<td colspan="9" class="px-6 py-8 text-center text-sm text-gray-500">
No stock movements found.
</td>
</tr>
</tbody>
</table>
</div>
<!-- Pagination -->
<div v-if="movements?.links && Array.isArray(movements.links) && movements.links.length > 3" class="mt-4 flex items-center justify-between">
<div class="text-sm text-gray-700">
Showing {{ movements?.from ?? movements?.meta?.from ?? 0 }} to {{ movements?.to ?? movements?.meta?.to ?? 0 }} of {{ movements?.total ?? movements?.meta?.total ?? 0 }} movements
</div>
<div class="flex gap-2">
<Link
v-for="link in movements.links"
:key="link.label"
:href="link.url || '#'"
:class="[
'rounded-md px-3 py-2 text-sm font-medium',
link.active ? 'bg-blue-600 text-white' : 'bg-white text-gray-700 hover:bg-gray-50',
!link.url ? 'cursor-not-allowed opacity-50' : ''
]"
v-html="link.label"
/>
</div>
</div>
</div>
</AppLayout>
</template>
|