修正庫存報表分頁參數衝突導致明細顯示為空的問題
This commit is contained in:
472
resources/js/Pages/Inventory/Report/Index.tsx
Normal file
472
resources/js/Pages/Inventory/Report/Index.tsx
Normal file
@@ -0,0 +1,472 @@
|
||||
import { useState, useCallback } from "react";
|
||||
import { Button } from "@/Components/ui/button";
|
||||
import { Input } from "@/Components/ui/input";
|
||||
import { Label } from "@/Components/ui/label";
|
||||
import {
|
||||
Download,
|
||||
Calendar,
|
||||
Filter,
|
||||
Package,
|
||||
RotateCcw,
|
||||
FileSpreadsheet,
|
||||
ArrowUpFromLine,
|
||||
ArrowDownToLine,
|
||||
ArrowRightLeft,
|
||||
TrendingUp
|
||||
} from 'lucide-react';
|
||||
import AuthenticatedLayout from "@/Layouts/AuthenticatedLayout";
|
||||
import { Head, Link, router } from "@inertiajs/react";
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
TableCell,
|
||||
TableHead,
|
||||
TableHeader,
|
||||
TableRow,
|
||||
} from "@/Components/ui/table";
|
||||
import { getDateRange } from "@/utils/format";
|
||||
import Pagination from "@/Components/shared/Pagination";
|
||||
import { SearchableSelect } from "@/Components/ui/searchable-select";
|
||||
import { Can } from "@/Components/Permission/Can";
|
||||
import { PageProps } from "@/types/global";
|
||||
|
||||
interface ReportData {
|
||||
product_code: string;
|
||||
product_name: string;
|
||||
category_name: string;
|
||||
product_id: number;
|
||||
inbound_qty: number;
|
||||
outbound_qty: number;
|
||||
adjust_qty: number;
|
||||
net_change: number;
|
||||
}
|
||||
|
||||
interface SummaryData {
|
||||
total_inbound: number;
|
||||
total_outbound: number;
|
||||
total_adjust: number;
|
||||
total_net_change: number;
|
||||
}
|
||||
|
||||
interface InventoryReportProps extends PageProps {
|
||||
reportData: {
|
||||
data: ReportData[];
|
||||
links: any[];
|
||||
total: number;
|
||||
from: number;
|
||||
to: number;
|
||||
current_page: number;
|
||||
};
|
||||
summary: SummaryData;
|
||||
warehouses: { id: number; name: string }[];
|
||||
categories: { id: number; name: string }[];
|
||||
filters: {
|
||||
date_from: string;
|
||||
date_to: string;
|
||||
warehouse_id: string;
|
||||
category_id: string;
|
||||
search: string;
|
||||
per_page?: number;
|
||||
};
|
||||
}
|
||||
|
||||
export default function InventoryReportIndex({ reportData, summary, warehouses, categories, filters }: InventoryReportProps) {
|
||||
const [dateStart, setDateStart] = useState(filters.date_from || "");
|
||||
const [dateEnd, setDateEnd] = useState(filters.date_to || "");
|
||||
const [warehouseId, setWarehouseId] = useState(filters.warehouse_id || "all");
|
||||
const [categoryId, setCategoryId] = useState(filters.category_id || "all");
|
||||
const [search, setSearch] = useState(filters.search || "");
|
||||
const [perPage, setPerPage] = useState(filters.per_page?.toString() || "10");
|
||||
|
||||
// Determine initial range type based on date pairs
|
||||
const getInitialRangeType = () => {
|
||||
const { start: todayS, end: todayE } = getDateRange('today');
|
||||
const { start: yestS, end: yestE } = getDateRange('yesterday');
|
||||
const { start: weekS, end: weekE } = getDateRange('this_week');
|
||||
const { start: monthS, end: monthE } = getDateRange('this_month');
|
||||
const { start: lastMS, end: lastME } = getDateRange('last_month');
|
||||
|
||||
const fS = filters.date_from || "";
|
||||
const fE = filters.date_to || "";
|
||||
|
||||
if (fS === todayS && fE === todayE) return "today";
|
||||
if (fS === yestS && fE === yestE) return "yesterday";
|
||||
if (fS === weekS && fE === weekE) return "this_week";
|
||||
if (fS === monthS && fE === monthE) return "this_month";
|
||||
if (fS === lastMS && fE === lastME) return "last_month";
|
||||
|
||||
return "custom";
|
||||
};
|
||||
|
||||
const [dateRangeType, setDateRangeType] = useState(getInitialRangeType());
|
||||
|
||||
const handleDateRangeChange = (type: string) => {
|
||||
setDateRangeType(type);
|
||||
if (type === "custom") return;
|
||||
|
||||
const { start, end } = getDateRange(type);
|
||||
setDateStart(start);
|
||||
setDateEnd(end);
|
||||
};
|
||||
|
||||
const handleFilter = useCallback(() => {
|
||||
router.get(
|
||||
route("inventory.report.index"),
|
||||
{
|
||||
date_from: dateStart,
|
||||
date_to: dateEnd,
|
||||
warehouse_id: warehouseId === "all" ? "" : warehouseId,
|
||||
category_id: categoryId === "all" ? "" : categoryId,
|
||||
search: search,
|
||||
per_page: perPage,
|
||||
},
|
||||
{ preserveState: true }
|
||||
);
|
||||
}, [dateStart, dateEnd, warehouseId, categoryId, search, perPage]);
|
||||
|
||||
const handlePerPageChange = (value: string) => {
|
||||
setPerPage(value);
|
||||
router.get(
|
||||
route("inventory.report.index"),
|
||||
{
|
||||
date_from: dateStart,
|
||||
date_to: dateEnd,
|
||||
warehouse_id: warehouseId === "all" ? "" : warehouseId,
|
||||
category_id: categoryId === "all" ? "" : categoryId,
|
||||
search: search,
|
||||
per_page: value,
|
||||
},
|
||||
{ preserveState: true }
|
||||
);
|
||||
};
|
||||
|
||||
const handleClearFilters = () => {
|
||||
// Service defaults: -7 days to today.
|
||||
// Let's just clear params and let backend decide or set explicitly.
|
||||
// Or simply reset to "daily" and "all"
|
||||
setWarehouseId("all");
|
||||
setCategoryId("all");
|
||||
setSearch("");
|
||||
setDateStart(""); // Will trigger service default
|
||||
setDateEnd("");
|
||||
setDateRangeType("custom");
|
||||
setPerPage("10");
|
||||
router.get(route("inventory.report.index"));
|
||||
};
|
||||
|
||||
const handleExport = () => {
|
||||
const query: any = {
|
||||
date_from: dateStart,
|
||||
date_to: dateEnd,
|
||||
warehouse_id: warehouseId === "all" ? "" : warehouseId,
|
||||
category_id: categoryId === "all" ? "" : categoryId,
|
||||
search: search,
|
||||
};
|
||||
window.location.href = route("inventory.report.export", query);
|
||||
};
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout breadcrumbs={[{ label: "報表管理", href: "#" }, { label: "庫存報表", href: route("inventory.report.index"), isPage: true }]}>
|
||||
<Head title="庫存報表" />
|
||||
|
||||
<div className="container mx-auto p-6 max-w-7xl">
|
||||
{/* Header */}
|
||||
<div className="flex flex-col md:flex-row md:items-center justify-between gap-4 mb-6">
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold text-grey-0 flex items-center gap-2">
|
||||
<FileSpreadsheet className="h-6 w-6 text-primary-main" />
|
||||
庫存報表
|
||||
</h1>
|
||||
<p className="text-gray-500 mt-1">
|
||||
統計區間:
|
||||
{filters.date_from && filters.date_to ? (
|
||||
<><span className="font-medium text-gray-700">{filters.date_from}</span> 至 <span className="font-medium text-gray-700">{filters.date_to}</span></>
|
||||
) : (
|
||||
<span className="font-medium text-gray-700">全部期間</span>
|
||||
)}
|
||||
內的進貨、出貨與庫存變動匯總
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<Can permission="inventory_report.export">
|
||||
<Button
|
||||
onClick={handleExport}
|
||||
variant="outline"
|
||||
className="button-outlined-primary gap-2"
|
||||
>
|
||||
<Download className="h-4 w-4" />
|
||||
匯出 Excel 報表
|
||||
</Button>
|
||||
</Can>
|
||||
</div>
|
||||
|
||||
{/* Filters */}
|
||||
<div className="bg-white rounded-xl shadow-sm border border-grey-4 p-5 mb-6">
|
||||
<div className="space-y-4">
|
||||
{/* Top Config: Date Range & Quick Buttons */}
|
||||
<div className="flex flex-col lg:flex-row gap-4 lg:items-end">
|
||||
<div className="flex-none space-y-2">
|
||||
<Label className="text-xs font-medium text-grey-2">快速時間區間</Label>
|
||||
<div className="flex flex-wrap gap-2">
|
||||
{[
|
||||
{ label: "今日", value: "today" },
|
||||
{ label: "昨日", value: "yesterday" },
|
||||
{ label: "本週", value: "this_week" },
|
||||
{ label: "本月", value: "this_month" },
|
||||
{ label: "上月", value: "last_month" },
|
||||
].map((opt) => (
|
||||
<Button
|
||||
key={opt.value}
|
||||
size="sm"
|
||||
onClick={() => handleDateRangeChange(opt.value)}
|
||||
className={
|
||||
dateRangeType === opt.value
|
||||
? 'button-filled-primary h-9 px-4 shadow-sm'
|
||||
: 'button-outlined-primary h-9 px-4 bg-white'
|
||||
}
|
||||
>
|
||||
{opt.label}
|
||||
</Button>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Date Inputs */}
|
||||
<div className="w-full lg:flex-1">
|
||||
<div className="grid grid-cols-2 gap-2">
|
||||
<div className="space-y-1">
|
||||
<Label className="text-xs text-grey-2 font-medium">開始日期</Label>
|
||||
<div className="relative">
|
||||
<Calendar className="absolute left-2.5 top-1/2 transform -translate-y-1/2 h-4 w-4 text-gray-400 pointer-events-none" />
|
||||
<Input
|
||||
type="date"
|
||||
value={dateStart}
|
||||
onChange={(e) => {
|
||||
setDateStart(e.target.value);
|
||||
setDateRangeType('custom');
|
||||
}}
|
||||
className="pl-9 block w-full h-9 bg-white"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<Label className="text-xs text-grey-2 font-medium">結束日期</Label>
|
||||
<div className="relative">
|
||||
<Calendar className="absolute left-2.5 top-1/2 transform -translate-y-1/2 h-4 w-4 text-gray-400 pointer-events-none" />
|
||||
<Input
|
||||
type="date"
|
||||
value={dateEnd}
|
||||
onChange={(e) => {
|
||||
setDateEnd(e.target.value);
|
||||
setDateRangeType('custom');
|
||||
}}
|
||||
className="pl-9 block w-full h-9 bg-white"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Detailed Filters row */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-12 gap-4 items-end">
|
||||
{/* Warehouse & Category */}
|
||||
<div className="md:col-span-4 space-y-1">
|
||||
<Label className="text-xs text-grey-2 font-medium">倉庫</Label>
|
||||
<SearchableSelect
|
||||
value={warehouseId}
|
||||
onValueChange={setWarehouseId}
|
||||
options={[{ label: "全部倉庫", value: "all" }, ...warehouses.map(w => ({ label: w.name, value: w.id.toString() }))]}
|
||||
className="w-full h-9"
|
||||
placeholder="選擇倉庫..."
|
||||
/>
|
||||
</div>
|
||||
<div className="md:col-span-4 space-y-1">
|
||||
<Label className="text-xs text-grey-2 font-medium">分類</Label>
|
||||
<SearchableSelect
|
||||
value={categoryId}
|
||||
onValueChange={setCategoryId}
|
||||
options={[{ label: "全部分類", value: "all" }, ...categories.map(c => ({ label: c.name, value: c.id.toString() }))]}
|
||||
className="w-full h-9"
|
||||
placeholder="選擇分類..."
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Search */}
|
||||
<div className="md:col-span-4 space-y-1">
|
||||
<Label className="text-xs text-grey-2 font-medium">關鍵字</Label>
|
||||
<Input
|
||||
placeholder="搜尋商品..."
|
||||
value={search}
|
||||
onChange={(e) => setSearch(e.target.value)}
|
||||
className="h-9 bg-white"
|
||||
onKeyDown={(e) => e.key === 'Enter' && handleFilter()}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Action Buttons */}
|
||||
<div className="flex items-center justify-end border-t border-grey-4 pt-5 gap-3">
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={handleClearFilters}
|
||||
className="flex items-center gap-2 button-outlined-primary h-9 ml-auto"
|
||||
>
|
||||
<RotateCcw className="h-4 w-4" />
|
||||
重置
|
||||
</Button>
|
||||
<Button
|
||||
onClick={handleFilter}
|
||||
className="button-filled-primary h-9 px-6 gap-2"
|
||||
>
|
||||
<Filter className="h-4 w-4" /> 查詢
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Summary Cards */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6">
|
||||
<div className="flex items-center gap-3 px-4 py-4 bg-white rounded-xl border-l-4 border-l-emerald-500 shadow-sm border border-gray-100 transition-all hover:bg-gray-50">
|
||||
<ArrowDownToLine className="h-6 w-6 text-emerald-500 shrink-0" />
|
||||
<div className="flex flex-1 items-baseline justify-between gap-2 min-w-0">
|
||||
<span className="text-sm text-gray-500 font-medium shrink-0">總進貨量</span>
|
||||
<span className="text-xl font-bold text-gray-900 truncate">{Number(summary?.total_inbound || 0).toLocaleString()}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-3 px-4 py-4 bg-white rounded-xl border-l-4 border-l-red-500 shadow-sm border border-gray-100 transition-all hover:bg-gray-50">
|
||||
<ArrowUpFromLine className="h-6 w-6 text-red-500 shrink-0" />
|
||||
<div className="flex flex-1 items-baseline justify-between gap-2 min-w-0">
|
||||
<span className="text-sm text-gray-500 font-medium shrink-0">總出貨量</span>
|
||||
<span className="text-xl font-bold text-gray-900 truncate">{Number(summary?.total_outbound || 0).toLocaleString()}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-3 px-4 py-4 bg-white rounded-xl border-l-4 border-l-blue-500 shadow-sm border border-gray-100 transition-all hover:bg-gray-50">
|
||||
<ArrowRightLeft className="h-6 w-6 text-blue-500 shrink-0" />
|
||||
<div className="flex flex-1 items-baseline justify-between gap-2 min-w-0">
|
||||
<span className="text-sm text-gray-500 font-medium shrink-0">調整量</span>
|
||||
<span className="text-xl font-bold text-gray-900 truncate">{Number(summary?.total_adjust || 0).toLocaleString()}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-3 px-4 py-4 bg-white rounded-xl border-l-4 border-l-gray-700 shadow-sm border border-gray-100 transition-all hover:bg-gray-50">
|
||||
<TrendingUp className="h-6 w-6 text-gray-700 shrink-0" />
|
||||
<div className="flex flex-1 items-baseline justify-between gap-2 min-w-0">
|
||||
<span className="text-sm text-gray-500 font-medium shrink-0">淨變動</span>
|
||||
<span className={`text-xl font-bold truncate ${summary?.total_net_change >= 0 ? "text-emerald-600" : "text-red-600"}`}>
|
||||
{summary?.total_net_change > 0 ? "+" : ""}{Number(summary?.total_net_change || 0).toLocaleString()}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Results Table */}
|
||||
<div className="bg-white rounded-xl border border-gray-200 shadow-sm overflow-hidden">
|
||||
<Table>
|
||||
<TableHeader className="bg-gray-50">
|
||||
<TableRow>
|
||||
<TableHead className="w-[100px]">商品代碼</TableHead>
|
||||
<TableHead className="">商品名稱</TableHead>
|
||||
<TableHead className="w-[120px]">分類</TableHead>
|
||||
<TableHead className="text-right w-[100px] text-emerald-600">進貨量</TableHead>
|
||||
<TableHead className="text-right w-[100px] text-red-600">出貨量</TableHead>
|
||||
<TableHead className="text-right w-[100px] text-blue-600">調整量</TableHead>
|
||||
<TableHead className="text-right w-[100px]">淨變動</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{reportData.data.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={7}>
|
||||
<div className="flex flex-col items-center justify-center space-y-2 py-8 text-gray-400">
|
||||
<Package className="h-10 w-10 opacity-20" />
|
||||
<p>無符合條件的報表資料</p>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
reportData.data.map((row) => (
|
||||
<TableRow key={row.product_id} className="hover:bg-gray-50/50 transition-colors">
|
||||
<TableCell className="font-medium">
|
||||
<Link
|
||||
href={route('inventory.report.show', {
|
||||
product: row.product_id,
|
||||
date_from: filters.date_from,
|
||||
date_to: filters.date_to,
|
||||
warehouse_id: filters.warehouse_id,
|
||||
// 以下為返回時恢復報表狀態用
|
||||
category_id: filters.category_id,
|
||||
search: filters.search,
|
||||
per_page: filters.per_page,
|
||||
report_page: reportData.current_page,
|
||||
})}
|
||||
className="text-primary hover:underline hover:text-primary/80 transition-colors"
|
||||
>
|
||||
{row.product_code}
|
||||
</Link>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<Link
|
||||
href={route('inventory.report.show', {
|
||||
product: row.product_id,
|
||||
date_from: filters.date_from,
|
||||
date_to: filters.date_to,
|
||||
warehouse_id: filters.warehouse_id,
|
||||
category_id: filters.category_id,
|
||||
search: filters.search,
|
||||
per_page: filters.per_page,
|
||||
report_page: reportData.current_page,
|
||||
})}
|
||||
className="text-gray-900 hover:text-primary transition-colors font-medium"
|
||||
>
|
||||
{row.product_name}
|
||||
</Link>
|
||||
</TableCell>
|
||||
<TableCell className="text-gray-500">{row.category_name || '-'}</TableCell>
|
||||
<TableCell className="text-right text-emerald-600 font-medium">
|
||||
{row.inbound_qty > 0 ? `+${row.inbound_qty}` : "-"}
|
||||
</TableCell>
|
||||
<TableCell className="text-right text-red-600 font-medium">
|
||||
{row.outbound_qty > 0 ? `-${row.outbound_qty}` : "-"}
|
||||
</TableCell>
|
||||
<TableCell className="text-right text-blue-600 font-medium">
|
||||
{row.adjust_qty !== 0 ? (row.adjust_qty > 0 ? `+${row.adjust_qty}` : row.adjust_qty) : "-"}
|
||||
</TableCell>
|
||||
<TableCell className={`text-right font-bold ${Number(row.net_change) >= 0 ? 'text-gray-900' : 'text-red-500'}`}>
|
||||
{Number(row.net_change) > 0 ? `+${row.net_change}` : row.net_change}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{/* Pagination Footer */}
|
||||
<div className="mt-6 flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4">
|
||||
<div className="flex items-center gap-2 text-sm text-gray-500">
|
||||
<span>每頁顯示</span>
|
||||
<SearchableSelect
|
||||
value={perPage}
|
||||
onValueChange={handlePerPageChange}
|
||||
options={[
|
||||
{ label: "10", value: "10" },
|
||||
{ label: "20", value: "20" },
|
||||
{ label: "50", value: "50" },
|
||||
{ label: "100", value: "100" }
|
||||
]}
|
||||
className="w-[100px] h-8"
|
||||
showSearch={false}
|
||||
/>
|
||||
<span>筆</span>
|
||||
</div>
|
||||
<div className="w-full sm:w-auto flex justify-center sm:justify-end">
|
||||
<Pagination links={reportData.links} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
);
|
||||
}
|
||||
248
resources/js/Pages/Inventory/Report/Show.tsx
Normal file
248
resources/js/Pages/Inventory/Report/Show.tsx
Normal file
@@ -0,0 +1,248 @@
|
||||
import AuthenticatedLayout from "@/Layouts/AuthenticatedLayout";
|
||||
import { Head, Link } from "@inertiajs/react";
|
||||
import { PageProps } from "@/types/global";
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
TableCell,
|
||||
TableHead,
|
||||
TableHeader,
|
||||
TableRow,
|
||||
} from "@/Components/ui/table";
|
||||
import { Button } from "@/Components/ui/button";
|
||||
import { Badge } from "@/Components/ui/badge";
|
||||
import { ArrowLeft, FileText, Package } from "lucide-react";
|
||||
import Pagination from "@/Components/shared/Pagination";
|
||||
import { formatDate } from "@/utils/format";
|
||||
|
||||
interface Transaction {
|
||||
id: number;
|
||||
inventory_id: number;
|
||||
type: string;
|
||||
quantity: number;
|
||||
unit_cost: number;
|
||||
total_cost: number;
|
||||
actual_time: string;
|
||||
note: string | null;
|
||||
batch_no: string | null;
|
||||
user_id: number;
|
||||
created_at: string;
|
||||
warehouse_name: string;
|
||||
user_name: string;
|
||||
}
|
||||
|
||||
interface ShowProps extends PageProps {
|
||||
product: {
|
||||
id: number;
|
||||
code: string;
|
||||
name: string;
|
||||
unit_name: string;
|
||||
};
|
||||
transactions: {
|
||||
data: Transaction[];
|
||||
links: any[];
|
||||
total: number;
|
||||
from: number;
|
||||
to: number;
|
||||
current_page: number;
|
||||
last_page: number;
|
||||
per_page: number;
|
||||
};
|
||||
filters: {
|
||||
date_from: string;
|
||||
date_to: string;
|
||||
warehouse_id: string;
|
||||
};
|
||||
/** 報表頁面的完整篩選狀態(用於返回時恢復) */
|
||||
reportFilters: {
|
||||
date_from: string;
|
||||
date_to: string;
|
||||
warehouse_id: string;
|
||||
category_id: string;
|
||||
search: string;
|
||||
per_page: string;
|
||||
report_page: string;
|
||||
};
|
||||
warehouses: { id: number; name: string }[];
|
||||
}
|
||||
|
||||
export default function InventoryReportShow({ product, transactions, filters, reportFilters, warehouses }: ShowProps) {
|
||||
|
||||
// 類型 Badge 顏色映射
|
||||
const getTypeBadgeVariant = (type: string) => {
|
||||
switch (type) {
|
||||
case '入庫':
|
||||
case '手動入庫':
|
||||
case '調撥入庫':
|
||||
return "default";
|
||||
case '出庫':
|
||||
case '調撥出庫':
|
||||
return "destructive";
|
||||
default:
|
||||
return "secondary";
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
breadcrumbs={[
|
||||
{ label: "報表管理", href: "#" },
|
||||
{ label: "庫存報表", href: route("inventory.report.index", reportFilters) },
|
||||
{ label: `${product.name} - 庫存異動明細`, href: "#", isPage: true }
|
||||
]}
|
||||
>
|
||||
<Head title={`${product.name} - 庫存異動明細`} />
|
||||
|
||||
<div className="container mx-auto p-6 max-w-7xl">
|
||||
{/* 返回按鈕 */}
|
||||
<div className="mb-6">
|
||||
<Link href={route('inventory.report.index', reportFilters)}>
|
||||
<Button
|
||||
variant="outline"
|
||||
className="gap-2 button-outlined-primary"
|
||||
>
|
||||
<ArrowLeft className="h-4 w-4" />
|
||||
返回庫存報表
|
||||
</Button>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
{/* 頁面標題 */}
|
||||
<div className="mb-6">
|
||||
<div className="mb-4">
|
||||
<h1 className="text-2xl font-bold text-grey-0 flex items-center gap-2">
|
||||
<FileText className="h-6 w-6 text-primary-main" />
|
||||
庫存異動明細
|
||||
</h1>
|
||||
<p className="text-gray-500 mt-1">
|
||||
查看商品「{product.name}」的所有庫存異動紀錄
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 商品資訊 & 篩選條件卡片 */}
|
||||
<div className="bg-white rounded-xl border border-gray-200 shadow-sm p-6 mb-6">
|
||||
<div className="flex flex-col md:flex-row justify-between gap-6">
|
||||
|
||||
{/* 商品資訊 */}
|
||||
<div className="space-y-3">
|
||||
<div className="flex items-center gap-3">
|
||||
<h3 className="text-xl font-bold text-grey-0">{product.name}</h3>
|
||||
<Badge variant="outline" className="text-sm px-2 py-0.5 bg-gray-50">
|
||||
{product.code}
|
||||
</Badge>
|
||||
</div>
|
||||
<div className="flex items-center gap-6 text-sm text-gray-500">
|
||||
<span className="flex items-center gap-1.5">
|
||||
<Package className="h-4 w-4" />
|
||||
單位: {product.unit_name}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 目前篩選條件 (唯讀) */}
|
||||
<div className="bg-gray-50 rounded-lg p-4 space-y-2 min-w-[280px]">
|
||||
<h4 className="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-2">
|
||||
目前篩選條件
|
||||
</h4>
|
||||
<div className="space-y-1.5 text-sm">
|
||||
<div className="flex justify-between">
|
||||
<span className="text-gray-500">日期範圍:</span>
|
||||
<span className="font-medium text-grey-0">
|
||||
{filters.date_from && filters.date_to
|
||||
? `${filters.date_from} ~ ${filters.date_to}`
|
||||
: filters.date_from ? `${filters.date_from} 起`
|
||||
: filters.date_to ? `${filters.date_to} 止`
|
||||
: '全部期間'}
|
||||
</span>
|
||||
</div>
|
||||
<div className="flex justify-between">
|
||||
<span className="text-gray-500">倉庫:</span>
|
||||
<span className="font-medium text-grey-0">
|
||||
{filters.warehouse_id
|
||||
? warehouses.find(w => w.id.toString() === filters.warehouse_id)?.name || '未指定'
|
||||
: '全部倉庫'}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 異動紀錄表格 */}
|
||||
<div className="bg-white rounded-xl border border-gray-200 shadow-sm overflow-hidden">
|
||||
<div className="p-6">
|
||||
<div className="flex items-center justify-between mb-4">
|
||||
<h3 className="text-lg font-medium text-grey-0 flex items-center gap-2">
|
||||
<FileText className="h-5 w-5 text-gray-400" />
|
||||
異動紀錄
|
||||
</h3>
|
||||
<span className="text-sm text-gray-500">
|
||||
共 {transactions.total} 筆紀錄
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<Table>
|
||||
<TableHeader className="bg-gray-50">
|
||||
<TableRow>
|
||||
<TableHead className="w-[50px] text-center">#</TableHead>
|
||||
<TableHead className="w-[160px]">異動時間</TableHead>
|
||||
<TableHead>類型</TableHead>
|
||||
<TableHead>倉庫</TableHead>
|
||||
<TableHead className="text-right">異動數量</TableHead>
|
||||
<TableHead>批號</TableHead>
|
||||
<TableHead>經手人</TableHead>
|
||||
<TableHead className="w-[200px]">備註</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{transactions.data.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center py-8 text-gray-500">
|
||||
無符合條件的資料
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
transactions.data.map((tx, index) => (
|
||||
<TableRow key={tx.id}>
|
||||
<TableCell className="text-gray-500 font-medium text-center">
|
||||
{(transactions.from || 0) + index}
|
||||
</TableCell>
|
||||
<TableCell className="font-medium text-gray-700">
|
||||
{formatDate(tx.actual_time)}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<Badge variant={getTypeBadgeVariant(tx.type)}>
|
||||
{tx.type}
|
||||
</Badge>
|
||||
</TableCell>
|
||||
<TableCell>{tx.warehouse_name}</TableCell>
|
||||
<TableCell className={`text-right font-medium ${tx.quantity > 0 ? 'text-emerald-600' :
|
||||
tx.quantity < 0 ? 'text-red-600' : 'text-gray-500'
|
||||
}`}>
|
||||
{tx.quantity > 0 ? '+' : ''}{tx.quantity}
|
||||
</TableCell>
|
||||
<TableCell className="text-gray-500">{tx.batch_no || '-'}</TableCell>
|
||||
<TableCell>{tx.user_name || '-'}</TableCell>
|
||||
<TableCell className="text-gray-500 truncate max-w-[200px]" title={tx.note || ''}>
|
||||
{tx.note || '-'}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</div>
|
||||
|
||||
{/* 底部分頁列 */}
|
||||
<div className="px-6 pb-6">
|
||||
<div className="mt-4 flex flex-col sm:flex-row items-center justify-between gap-4">
|
||||
<span className="text-sm text-gray-500">共 {transactions.total} 筆紀錄</span>
|
||||
<Pagination links={transactions.links} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user