195 lines
8.3 KiB
Vue
195 lines
8.3 KiB
Vue
<script setup lang="ts">
|
|
import { computed, ref } from 'vue';
|
|
import DataTableToolbar from '@/components/data-table/DataTableToolbar.vue';
|
|
import GroupedTableFooter from '@/components/data-table/GroupedTableFooter.vue';
|
|
import MediaThumbnailCell from '@/components/media/MediaThumbnailCell.vue';
|
|
import VerificationDetailModal from '@/components/owner-verification/VerificationDetailModal.vue';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import {
|
|
Empty,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyTitle,
|
|
} from '@/components/ui/empty';
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from '@/components/ui/table';
|
|
import { usePaginationSummary } from '@/composables/usePaginationSummary';
|
|
import { groupedTableRowNumber } from '@/lib/grouped-table';
|
|
import type {
|
|
DataTablePagination,
|
|
DataTablePaginationLink,
|
|
} from '@/types/data-table';
|
|
import type { RestockItemDetail, RestockListItem } from '@/types/restock';
|
|
import DataTableActions from './data-table-actions.vue';
|
|
|
|
const props = defineProps<{
|
|
restocks: RestockListItem[];
|
|
firstItem?: number;
|
|
pagination?: DataTablePagination;
|
|
paginationLinks?: DataTablePaginationLink[];
|
|
}>();
|
|
|
|
const search = defineModel<string>('search', { default: '' });
|
|
|
|
const emit = defineEmits<{
|
|
'filters-reset': [];
|
|
}>();
|
|
|
|
const showingCount = computed(() => props.restocks.length);
|
|
const paginationSummary = usePaginationSummary(() => props.pagination, showingCount, 'restock');
|
|
|
|
function rowNumber(index: number): number {
|
|
return groupedTableRowNumber(props.firstItem, index);
|
|
}
|
|
|
|
interface GroupedRestockItems {
|
|
productId: number;
|
|
productName: string;
|
|
items: RestockItemDetail[];
|
|
}
|
|
|
|
function getGroupedItems(items: RestockItemDetail[]): GroupedRestockItems[] {
|
|
const groups: Record<number, GroupedRestockItems> = {};
|
|
|
|
items.forEach((item) => {
|
|
const productId = item.product_variant?.product?.id ?? 0;
|
|
const productName = item.product_name || 'Produk Tidak Diketahui';
|
|
|
|
if (!groups[productId]) {
|
|
groups[productId] = {
|
|
productId,
|
|
productName,
|
|
items: [],
|
|
};
|
|
}
|
|
|
|
groups[productId].items.push(item);
|
|
});
|
|
|
|
return Object.values(groups);
|
|
}
|
|
|
|
const verificationModalOpen = ref(false);
|
|
const selectedRequestId = ref<number | null>(null);
|
|
|
|
function openVerificationDetail(requestId: number | undefined) {
|
|
if (requestId) {
|
|
selectedRequestId.value = requestId;
|
|
verificationModalOpen.value = true;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="space-y-4">
|
|
<DataTableToolbar v-model:search="search" @filters-reset="emit('filters-reset')" />
|
|
|
|
<div v-if="restocks.length" class="space-y-4">
|
|
<div v-for="(restock, index) in restocks" :key="restock.id" class="overflow-hidden rounded-md border">
|
|
<div
|
|
class="flex flex-col gap-3 border-b bg-muted/30 px-4 py-3 sm:flex-row sm:items-start sm:justify-between">
|
|
<div class="flex min-w-0 items-start gap-3">
|
|
<span class="text-muted-foreground w-8 shrink-0 pt-0.5 text-center text-sm tabular-nums">
|
|
{{ rowNumber(index) }}
|
|
</span>
|
|
<div class="min-w-0 space-y-2">
|
|
<div class="flex items-center gap-2 flex-wrap">
|
|
<h3 class="font-medium leading-tight">
|
|
Restock #{{ restock.id }}
|
|
</h3>
|
|
<Badge variant="secondary">{{ restock.stock_type_label }}</Badge>
|
|
<Badge v-if="restock.has_pending_request" variant="outline" class="border-amber-500 text-amber-600">
|
|
Menunggu Verifikasi
|
|
</Badge>
|
|
<Badge v-else variant="outline" class="border-green-500 text-green-600">
|
|
Terverifikasi
|
|
</Badge>
|
|
</div>
|
|
<p v-if="restock.has_pending_request" class="text-sm text-amber-600">
|
|
{{ restock.pending_request_submitted_by_name }} mengajukan {{ restock.pending_request_action_label?.toLowerCase() }} restock ini —
|
|
<button type="button" class="underline-offset-2 hover:underline" @click="openVerificationDetail(restock.pending_request_id)">lihat</button>
|
|
</p>
|
|
<div class="text-muted-foreground space-y-1 text-sm">
|
|
<p>{{ restock.created_at_formatted }}</p>
|
|
<p>Oleh {{ restock.created_by?.profile?.full_name ?? restock.created_by?.username }}
|
|
</p>
|
|
</div>
|
|
<div class="flex flex-wrap gap-x-4 gap-y-1 text-sm">
|
|
<span>Total <strong class="text-primary">{{ restock.total_formatted }}</strong></span>
|
|
</div>
|
|
<p v-if="restock.notes" class="text-muted-foreground text-sm">
|
|
{{ restock.notes }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex shrink-0 items-center justify-end gap-2 sm:pt-0.5">
|
|
<MediaThumbnailCell :items="restock.photos ? [restock.photos] : []" />
|
|
<DataTableActions :restock="restock" />
|
|
</div>
|
|
</div>
|
|
|
|
<Table>
|
|
<TableHeader>
|
|
<TableRow>
|
|
<TableHead>Varian</TableHead>
|
|
<TableHead>Jumlah</TableHead>
|
|
<TableHead>Harga Satuan</TableHead>
|
|
<TableHead>Subtotal</TableHead>
|
|
</TableRow>
|
|
</TableHeader>
|
|
<TableBody>
|
|
<TableRow v-if="!restock.items.length" :key="`${restock.id}-empty`">
|
|
<TableCell colspan="4" class="text-muted-foreground">
|
|
Belum ada item
|
|
</TableCell>
|
|
</TableRow>
|
|
<template v-else v-for="group in getGroupedItems(restock.items)" :key="group.productId">
|
|
<TableRow class="bg-muted/20 hover:bg-muted/20">
|
|
<TableCell colspan="4" class="font-semibold text-foreground">
|
|
{{ group.productName }}
|
|
</TableCell>
|
|
</TableRow>
|
|
<TableRow v-for="item in group.items" :key="item.id">
|
|
<TableCell class="pl-6 font-medium">
|
|
{{ item.variant_name }}
|
|
</TableCell>
|
|
<TableCell class="tabular-nums">
|
|
{{ item.quantity_formatted }}
|
|
</TableCell>
|
|
<TableCell class="tabular-nums">
|
|
{{ item.unit_price_formatted }}
|
|
</TableCell>
|
|
<TableCell class="tabular-nums font-medium">
|
|
{{ item.subtotal_formatted }}
|
|
</TableCell>
|
|
</TableRow>
|
|
</template>
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-else class="rounded-md border px-6 py-10">
|
|
<Empty>
|
|
<EmptyHeader>
|
|
<EmptyTitle>Data tidak ditemukan</EmptyTitle>
|
|
<EmptyDescription>
|
|
Silakan lakukan pencarian untuk menemukan data yang Anda cari.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
</Empty>
|
|
</div>
|
|
|
|
<GroupedTableFooter :summary="paginationSummary" :pagination="pagination" :pagination-links="paginationLinks" />
|
|
|
|
<VerificationDetailModal v-model:open="verificationModalOpen" :request-id="selectedRequestId" />
|
|
</div>
|
|
</template>
|