import { TypeEnum } from "@/app/utils/typeEnum"; import RoughSchedule from "@/components/RoughSchedule"; import { getServerI18n, I18nProvider } from "@/i18n"; import Add from "@mui/icons-material/Add"; import Button from "@mui/material/Button"; import Stack from "@mui/material/Stack"; import Typography from "@mui/material/Typography"; import { Metadata } from "next"; import Link from "next/link"; import { Suspense } from "react"; import RoughScheduleDetailView from "@/components/RoughScheduleDetail"; import { SearchParams, ServerFetchError } from "@/app/utils/fetchUtil"; import { isArray, parseInt } from "lodash"; import { notFound } from "next/navigation"; import { fetchProdScheduleDetail } from "@/app/api/scheduling"; export const metadata: Metadata = { title: "Demand Forecast Detail", }; type Props = SearchParams const roughSchedulingDetail: React.FC = async ({ searchParams }) => { const { t } = await getServerI18n("schedule"); const id = searchParams["id"] const type = "rough" if (!id || isArray(id) || !isFinite(parseInt(id))) { notFound() } try { await fetchProdScheduleDetail(parseInt(id)) } catch(e) { if (e instanceof ServerFetchError && (e.response?.status === 404 || e.response?.status === 400)) { console.log(e) notFound(); } } // preloadClaims(); return ( <> {t("FG & Material Demand Forecast Detail")} {/* */} }> ); }; export default roughSchedulingDetail;