修正庫存報表分頁參數衝突導致明細顯示為空的問題

This commit is contained in:
2026-02-10 16:07:31 +08:00
parent 8b950f6529
commit 593ce94734
15 changed files with 1210 additions and 30 deletions

View File

@@ -224,7 +224,7 @@ export default function AuthenticatedLayout({
id: "report-management",
label: "報表管理",
icon: <BarChart3 className="h-5 w-5" />,
permission: "accounting.view",
permission: ["accounting.view", "inventory_report.view"],
children: [
{
id: "accounting-report",
@@ -233,6 +233,13 @@ export default function AuthenticatedLayout({
route: "/accounting-report",
permission: "accounting.view",
},
{
id: "inventory-report",
label: "庫存報表",
icon: <BarChart3 className="h-4 w-4" />,
route: "/inventory/report",
permission: "inventory_report.view",
},
],
},
{