2026-01-28 18:04:45 +08:00
|
|
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout';
|
2026-02-03 17:24:34 +08:00
|
|
|
|
import { Head, useForm, Link, router } from '@inertiajs/react';
|
|
|
|
|
|
import { usePermission } from '@/hooks/usePermission'; // Added Link
|
2026-01-28 18:04:45 +08:00
|
|
|
|
import {
|
|
|
|
|
|
Table,
|
|
|
|
|
|
TableBody,
|
|
|
|
|
|
TableCell,
|
|
|
|
|
|
TableHead,
|
|
|
|
|
|
TableHeader,
|
|
|
|
|
|
TableRow,
|
|
|
|
|
|
} from '@/Components/ui/table';
|
|
|
|
|
|
import { Button } from '@/Components/ui/button';
|
|
|
|
|
|
import { Input } from '@/Components/ui/input';
|
2026-02-13 13:16:05 +08:00
|
|
|
|
import { StatusBadge } from "@/Components/shared/StatusBadge";
|
2026-02-04 15:12:10 +08:00
|
|
|
|
import { Save, Printer, Trash2, ClipboardCheck, ArrowLeft, RotateCcw } from 'lucide-react'; // Added ArrowLeft
|
2026-01-28 18:04:45 +08:00
|
|
|
|
import {
|
|
|
|
|
|
AlertDialog,
|
|
|
|
|
|
AlertDialogAction,
|
|
|
|
|
|
AlertDialogCancel,
|
|
|
|
|
|
AlertDialogContent,
|
|
|
|
|
|
AlertDialogDescription,
|
|
|
|
|
|
AlertDialogFooter,
|
|
|
|
|
|
AlertDialogHeader,
|
|
|
|
|
|
AlertDialogTitle,
|
|
|
|
|
|
AlertDialogTrigger,
|
|
|
|
|
|
} from "@/Components/ui/alert-dialog"
|
|
|
|
|
|
import { Can } from '@/Components/Permission/Can';
|
|
|
|
|
|
|
2026-02-04 15:12:10 +08:00
|
|
|
|
|
2026-01-28 18:04:45 +08:00
|
|
|
|
export default function Show({ doc }: any) {
|
2026-02-05 09:33:36 +08:00
|
|
|
|
// Get query parameters for dynamic back button
|
|
|
|
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
|
|
|
|
const fromSource = urlParams.get('from');
|
|
|
|
|
|
const adjustId = urlParams.get('adjust_id');
|
|
|
|
|
|
|
|
|
|
|
|
const backUrl = fromSource === 'adjust' && adjustId
|
|
|
|
|
|
? route('inventory.adjust.show', [adjustId])
|
|
|
|
|
|
: route('inventory.count.index');
|
|
|
|
|
|
|
|
|
|
|
|
const backLabel = fromSource === 'adjust' ? '返回盤調單' : '返回盤點單列表';
|
|
|
|
|
|
|
2026-01-28 18:04:45 +08:00
|
|
|
|
// Transform items to form data structure
|
2026-01-29 09:36:07 +08:00
|
|
|
|
const { data, setData, put, delete: destroy, processing, transform } = useForm({
|
2026-01-28 18:04:45 +08:00
|
|
|
|
items: doc.items.map((item: any) => ({
|
|
|
|
|
|
id: item.id,
|
|
|
|
|
|
counted_qty: item.counted_qty,
|
|
|
|
|
|
notes: item.notes || '',
|
|
|
|
|
|
})),
|
|
|
|
|
|
action: 'save', // 'save' or 'complete'
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// Helper to update local form data
|
|
|
|
|
|
const updateItem = (index: number, field: string, value: any) => {
|
|
|
|
|
|
const newItems = [...data.items];
|
|
|
|
|
|
newItems[index][field] = value;
|
|
|
|
|
|
setData('items', newItems);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleSubmit = (action: string) => {
|
2026-01-29 09:36:07 +08:00
|
|
|
|
transform((data) => ({
|
|
|
|
|
|
...data,
|
|
|
|
|
|
action: action,
|
|
|
|
|
|
}));
|
|
|
|
|
|
put(route('inventory.count.update', [doc.id]));
|
2026-01-28 18:04:45 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleDelete = () => {
|
|
|
|
|
|
destroy(route('inventory.count.destroy', [doc.id]));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-01-29 13:04:54 +08:00
|
|
|
|
const handleReopen = () => {
|
2026-01-29 13:12:02 +08:00
|
|
|
|
router.visit(route('inventory.count.reopen', [doc.id]), {
|
|
|
|
|
|
method: 'put',
|
|
|
|
|
|
});
|
2026-01-29 13:04:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-03 17:24:34 +08:00
|
|
|
|
const { can } = usePermission();
|
2026-02-04 16:56:08 +08:00
|
|
|
|
const isCompleted = ['completed', 'no_adjust', 'adjusted'].includes(doc.status);
|
2026-02-03 17:24:34 +08:00
|
|
|
|
const canEdit = can('inventory_count.edit');
|
|
|
|
|
|
const isReadOnly = isCompleted || !canEdit;
|
2026-01-28 18:04:45 +08:00
|
|
|
|
|
|
|
|
|
|
// Calculate progress
|
|
|
|
|
|
const totalItems = doc.items.length;
|
|
|
|
|
|
const countedItems = data.items.filter((i: any) => i.counted_qty !== '' && i.counted_qty !== null).length;
|
|
|
|
|
|
const progress = Math.round((countedItems / totalItems) * 100) || 0;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<AuthenticatedLayout
|
|
|
|
|
|
breadcrumbs={[
|
|
|
|
|
|
{ label: '商品與庫存管理', href: '#' },
|
2026-02-05 09:33:36 +08:00
|
|
|
|
{
|
|
|
|
|
|
label: fromSource === 'adjust' ? '庫存盤調' : '庫存盤點',
|
|
|
|
|
|
href: fromSource === 'adjust' ? route('inventory.adjust.index') : route('inventory.count.index')
|
|
|
|
|
|
},
|
|
|
|
|
|
fromSource === 'adjust' && adjustId ? {
|
|
|
|
|
|
label: `盤調單詳情`,
|
|
|
|
|
|
href: route('inventory.adjust.show', [adjustId])
|
|
|
|
|
|
} : null,
|
2026-01-28 18:04:45 +08:00
|
|
|
|
{ label: `盤點單: ${doc.doc_no}`, href: route('inventory.count.show', [doc.id]), isPage: true },
|
2026-02-05 09:33:36 +08:00
|
|
|
|
].filter(Boolean) as any}
|
2026-01-28 18:04:45 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Head title={`盤點單 ${doc.doc_no}`} />
|
|
|
|
|
|
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<div className="container mx-auto p-6 max-w-7xl animate-in fade-in duration-500 space-y-6">
|
|
|
|
|
|
<div>
|
2026-02-05 09:33:36 +08:00
|
|
|
|
<Link href={backUrl}>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
className="gap-2 button-outlined-primary mb-6"
|
|
|
|
|
|
>
|
|
|
|
|
|
<ArrowLeft className="h-4 w-4" />
|
2026-02-05 09:33:36 +08:00
|
|
|
|
{backLabel}
|
2026-01-29 13:04:54 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
2026-01-29 09:36:07 +08:00
|
|
|
|
<div className="flex flex-col md:flex-row md:items-center justify-between gap-4">
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<div>
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
|
<h1 className="text-2xl font-bold text-grey-0 flex items-center gap-2">
|
|
|
|
|
|
<ClipboardCheck className="h-6 w-6 text-primary-main" />
|
|
|
|
|
|
盤點單: {doc.doc_no}
|
|
|
|
|
|
</h1>
|
2026-01-29 13:41:31 +08:00
|
|
|
|
{doc.status === 'completed' && (
|
2026-02-13 13:16:05 +08:00
|
|
|
|
<StatusBadge variant="success">盤點完成</StatusBadge>
|
2026-01-29 13:41:31 +08:00
|
|
|
|
)}
|
2026-02-04 16:56:08 +08:00
|
|
|
|
{doc.status === 'no_adjust' && (
|
2026-02-13 13:16:05 +08:00
|
|
|
|
<StatusBadge variant="success">盤點完成 (無需盤調)</StatusBadge>
|
2026-02-04 16:56:08 +08:00
|
|
|
|
)}
|
2026-01-29 13:41:31 +08:00
|
|
|
|
{doc.status === 'adjusted' && (
|
2026-02-13 13:16:05 +08:00
|
|
|
|
<StatusBadge variant="warning">已盤調庫存</StatusBadge>
|
2026-01-29 13:41:31 +08:00
|
|
|
|
)}
|
|
|
|
|
|
{doc.status === 'draft' && (
|
2026-02-13 13:16:05 +08:00
|
|
|
|
<StatusBadge variant="info">盤點中</StatusBadge>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
)}
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<p className="text-sm text-gray-500 mt-1 font-medium">
|
|
|
|
|
|
倉庫: {doc.warehouse_name} <span className="mx-2">|</span> 建立人: {doc.created_by} <span className="mx-2">|</span> 快照時間: {doc.snapshot_date}
|
|
|
|
|
|
</p>
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
|
2026-01-29 09:36:07 +08:00
|
|
|
|
<div className="flex items-center gap-2">
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
className="button-outlined-primary"
|
|
|
|
|
|
onClick={() => window.open(route('inventory.count.print', [doc.id]), '_blank')}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Printer className="w-4 h-4 mr-2" />
|
|
|
|
|
|
列印
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
|
2026-02-04 16:56:08 +08:00
|
|
|
|
{['completed', 'no_adjust'].includes(doc.status) && (
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<Can permission="inventory.adjust">
|
2026-01-29 13:12:02 +08:00
|
|
|
|
<AlertDialog>
|
|
|
|
|
|
<AlertDialogTrigger asChild>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
variant="outline"
|
|
|
|
|
|
size="sm"
|
|
|
|
|
|
className="button-outlined-error"
|
|
|
|
|
|
disabled={processing}
|
|
|
|
|
|
>
|
|
|
|
|
|
<RotateCcw className="w-4 h-4 mr-2" />
|
2026-02-04 15:12:10 +08:00
|
|
|
|
重新開啟盤點
|
2026-01-29 13:12:02 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</AlertDialogTrigger>
|
|
|
|
|
|
<AlertDialogContent>
|
|
|
|
|
|
<AlertDialogHeader>
|
2026-02-04 15:12:10 +08:00
|
|
|
|
<AlertDialogTitle>確定要重新開啟盤點嗎?</AlertDialogTitle>
|
2026-01-29 13:12:02 +08:00
|
|
|
|
<AlertDialogDescription>
|
2026-02-04 15:12:10 +08:00
|
|
|
|
單據將回復為「盤點中」狀態。此動作可讓您重新編輯盤點數量。
|
2026-01-29 13:12:02 +08:00
|
|
|
|
</AlertDialogDescription>
|
|
|
|
|
|
</AlertDialogHeader>
|
|
|
|
|
|
<AlertDialogFooter>
|
|
|
|
|
|
<AlertDialogCancel>取消</AlertDialogCancel>
|
2026-02-04 15:12:10 +08:00
|
|
|
|
<AlertDialogAction onClick={handleReopen} className="bg-red-600 hover:bg-red-700">確認重新開啟</AlertDialogAction>
|
2026-01-29 13:12:02 +08:00
|
|
|
|
</AlertDialogFooter>
|
|
|
|
|
|
</AlertDialogContent>
|
|
|
|
|
|
</AlertDialog>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
</Can>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2026-01-29 09:36:07 +08:00
|
|
|
|
{!isCompleted && (
|
|
|
|
|
|
<div className="flex items-center gap-2">
|
2026-02-03 17:24:34 +08:00
|
|
|
|
<Can permission="inventory_count.delete">
|
2026-01-29 09:36:07 +08:00
|
|
|
|
<AlertDialog>
|
|
|
|
|
|
<AlertDialogTrigger asChild>
|
|
|
|
|
|
<Button variant="outline" size="sm" disabled={processing} className="button-outlined-error">
|
|
|
|
|
|
<Trash2 className="w-4 h-4 mr-2" />
|
2026-01-29 13:04:54 +08:00
|
|
|
|
作廢
|
2026-01-29 09:36:07 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</AlertDialogTrigger>
|
|
|
|
|
|
<AlertDialogContent>
|
|
|
|
|
|
<AlertDialogHeader>
|
|
|
|
|
|
<AlertDialogTitle>確定要作廢此盤點單嗎?</AlertDialogTitle>
|
|
|
|
|
|
<AlertDialogDescription>
|
|
|
|
|
|
此動作無法復原。作廢後請重新建立盤點單。
|
|
|
|
|
|
</AlertDialogDescription>
|
|
|
|
|
|
</AlertDialogHeader>
|
|
|
|
|
|
<AlertDialogFooter>
|
|
|
|
|
|
<AlertDialogCancel>取消</AlertDialogCancel>
|
|
|
|
|
|
<AlertDialogAction onClick={handleDelete} className="bg-red-600 hover:bg-red-700">確認作廢</AlertDialogAction>
|
|
|
|
|
|
</AlertDialogFooter>
|
|
|
|
|
|
</AlertDialogContent>
|
|
|
|
|
|
</AlertDialog>
|
2026-02-03 17:24:34 +08:00
|
|
|
|
</Can>
|
2026-01-28 18:04:45 +08:00
|
|
|
|
|
2026-02-03 17:24:34 +08:00
|
|
|
|
<Can permission="inventory_count.edit">
|
2026-01-29 09:36:07 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
size="sm"
|
2026-02-04 15:12:10 +08:00
|
|
|
|
className="button-filled-primary"
|
2026-01-29 09:36:07 +08:00
|
|
|
|
onClick={() => handleSubmit('save')}
|
|
|
|
|
|
disabled={processing}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Save className="w-4 h-4 mr-2" />
|
2026-02-04 15:12:10 +08:00
|
|
|
|
儲存盤點結果
|
2026-01-29 09:36:07 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Can>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
</div>
|
2026-01-28 18:04:45 +08:00
|
|
|
|
|
2026-01-29 13:04:54 +08:00
|
|
|
|
{!isCompleted && (
|
2026-01-29 09:36:07 +08:00
|
|
|
|
<div className="bg-white rounded-lg shadow-sm border p-6 space-y-4">
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<div className="flex items-center justify-between text-sm">
|
|
|
|
|
|
<span className="text-gray-500 font-medium">盤點進度: {countedItems} / {totalItems} 項目</span>
|
|
|
|
|
|
<span className="font-bold text-primary-main">{progress}%</span>
|
2026-01-29 09:36:07 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<div className="w-full bg-gray-200 rounded-full h-2">
|
|
|
|
|
|
<div className="bg-primary-main h-2 rounded-full transition-all duration-300" style={{ width: `${progress}%` }}></div>
|
2026-01-29 09:36:07 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
)}
|
2026-01-28 18:04:45 +08:00
|
|
|
|
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<div className="bg-white rounded-lg shadow-sm border p-6 space-y-4">
|
|
|
|
|
|
<div className="flex items-center justify-between">
|
2026-01-28 18:04:45 +08:00
|
|
|
|
<div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<h3 className="font-semibold text-lg text-grey-900">盤點明細</h3>
|
|
|
|
|
|
<p className="text-sm text-grey-500">
|
|
|
|
|
|
請輸入每個項目的「實盤數量」。若有差異系統將自動計算。
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
|
|
|
|
|
|
<div className="border rounded-lg overflow-hidden">
|
|
|
|
|
|
<Table>
|
|
|
|
|
|
<TableHeader className="bg-gray-50">
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
<TableHead className="w-[50px] text-center font-medium text-grey-600">#</TableHead>
|
|
|
|
|
|
<TableHead className="font-medium text-grey-600">商品名稱 / 代號</TableHead>
|
|
|
|
|
|
<TableHead className="font-medium text-grey-600">批號</TableHead>
|
|
|
|
|
|
<TableHead className="text-right font-medium text-grey-600">系統庫存</TableHead>
|
|
|
|
|
|
<TableHead className="text-right w-32 font-medium text-grey-600">實盤數量</TableHead>
|
|
|
|
|
|
<TableHead className="text-right font-medium text-grey-600">差異</TableHead>
|
|
|
|
|
|
<TableHead className="font-medium text-grey-600">單位</TableHead>
|
|
|
|
|
|
<TableHead className="font-medium text-grey-600">備註</TableHead>
|
|
|
|
|
|
</TableRow>
|
|
|
|
|
|
</TableHeader>
|
|
|
|
|
|
<TableBody>
|
|
|
|
|
|
{doc.items.map((item: any, index: number) => {
|
|
|
|
|
|
const formItem = data.items[index];
|
|
|
|
|
|
const diff = formItem.counted_qty !== '' && formItem.counted_qty !== null
|
|
|
|
|
|
? (parseFloat(formItem.counted_qty) - item.system_qty)
|
|
|
|
|
|
: 0;
|
|
|
|
|
|
const hasDiff = Math.abs(diff) > 0.0001;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<TableRow key={item.id} className={hasDiff && formItem.counted_qty !== '' ? "bg-red-50/30" : ""}>
|
|
|
|
|
|
<TableCell className="text-gray-500 font-medium text-center">
|
|
|
|
|
|
{index + 1}
|
|
|
|
|
|
</TableCell>
|
|
|
|
|
|
<TableCell className="py-3">
|
|
|
|
|
|
<div className="flex flex-col">
|
|
|
|
|
|
<span className="font-semibold text-gray-900">{item.product_name}</span>
|
|
|
|
|
|
<span className="text-xs text-gray-500 font-mono">{item.product_code}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</TableCell>
|
2026-02-05 11:45:08 +08:00
|
|
|
|
<TableCell className="text-sm font-mono">
|
|
|
|
|
|
<div>{item.batch_number || '-'}</div>
|
|
|
|
|
|
{item.expiry_date && (
|
|
|
|
|
|
<div className="text-xs text-gray-400 mt-1">
|
|
|
|
|
|
效期: {item.expiry_date}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</TableCell>
|
2026-02-04 13:08:05 +08:00
|
|
|
|
<TableCell className="text-right font-medium">{Number(item.system_qty)}</TableCell>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<TableCell className="text-right px-1 py-3">
|
2026-02-03 17:24:34 +08:00
|
|
|
|
{isReadOnly ? (
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<span className="font-semibold mr-2">{item.counted_qty}</span>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
type="number"
|
2026-02-05 11:45:08 +08:00
|
|
|
|
step="any"
|
2026-01-29 13:04:54 +08:00
|
|
|
|
value={formItem.counted_qty ?? ''}
|
|
|
|
|
|
onChange={(e) => updateItem(index, 'counted_qty', e.target.value)}
|
|
|
|
|
|
onWheel={(e: any) => e.target.blur()}
|
|
|
|
|
|
disabled={processing}
|
2026-02-05 11:45:08 +08:00
|
|
|
|
className="h-9 font-medium focus:ring-primary-main text-right"
|
2026-01-29 13:04:54 +08:00
|
|
|
|
placeholder="盤點..."
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</TableCell>
|
|
|
|
|
|
<TableCell className="text-right">
|
|
|
|
|
|
<span className={`font-bold ${!hasDiff
|
|
|
|
|
|
? 'text-gray-400'
|
|
|
|
|
|
: diff > 0
|
|
|
|
|
|
? 'text-green-600'
|
|
|
|
|
|
: 'text-red-600'
|
|
|
|
|
|
}`}>
|
|
|
|
|
|
{formItem.counted_qty !== '' && formItem.counted_qty !== null
|
2026-02-04 13:08:05 +08:00
|
|
|
|
? Number(diff.toFixed(2))
|
2026-01-29 13:04:54 +08:00
|
|
|
|
: '-'}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</TableCell>
|
|
|
|
|
|
<TableCell className="text-sm text-gray-500">{item.unit || item.unit_name}</TableCell>
|
|
|
|
|
|
<TableCell className="px-1">
|
2026-02-03 17:24:34 +08:00
|
|
|
|
{isReadOnly ? (
|
2026-01-29 13:04:54 +08:00
|
|
|
|
<span className="text-sm text-gray-600">{item.notes}</span>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<Input
|
|
|
|
|
|
value={formItem.notes}
|
|
|
|
|
|
onChange={(e) => updateItem(index, 'notes', e.target.value)}
|
|
|
|
|
|
disabled={processing}
|
|
|
|
|
|
className="h-9 text-sm"
|
|
|
|
|
|
placeholder="備註..."
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</TableCell>
|
|
|
|
|
|
</TableRow>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
|
|
|
|
|
</TableBody>
|
|
|
|
|
|
</Table>
|
|
|
|
|
|
</div>
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-04 15:12:10 +08:00
|
|
|
|
|
2026-01-28 18:04:45 +08:00
|
|
|
|
</div>
|
2026-01-29 13:04:54 +08:00
|
|
|
|
|
|
|
|
|
|
</AuthenticatedLayout >
|
2026-01-28 18:04:45 +08:00
|
|
|
|
);
|
|
|
|
|
|
}
|