| Tekijä | SHA1 | Viesti | Päivämäärä |
|---|---|---|---|
|
|
6bea17fdd0 | Merge branch 'MergeProblem1' of https://git.2fi-solutions.com/derek/FPSMS-frontend into MergeProblem1 | 5 päivää sitten |
|
|
691bce388f | new PO testing | 5 päivää sitten |
| @@ -0,0 +1,22 @@ | |||||
| "use client"; | |||||
| import Box from "@mui/material/Box"; | |||||
| import Typography from "@mui/material/Typography"; | |||||
| /** | |||||
| * Dev / R&D sandbox for Purchase Order. Not listed in NavigationContent — open via /po/workbench only. | |||||
| * Later: call APIs with clientAuthFetch + NEXT_PUBLIC_API_URL like src/app/(main)/testing/page.tsx. | |||||
| */ | |||||
| export default function PoWorkbenchPage() { | |||||
| return ( | |||||
| <Box sx={{ p: 4 }}> | |||||
| <Typography variant="h5" gutterBottom fontWeight="bold"> | |||||
| PO Workbench | |||||
| </Typography> | |||||
| <Typography color="text.secondary"> | |||||
| Empty page. This route is intentionally omitted from the navigation bar. | |||||
| </Typography> | |||||
| </Box> | |||||
| ); | |||||
| } | |||||
| @@ -38,6 +38,7 @@ const pathToLabelMap: { [path: string]: string } = { | |||||
| "/do": "Delivery Order", | "/do": "Delivery Order", | ||||
| "/pickOrder": "Pick Order", | "/pickOrder": "Pick Order", | ||||
| "/po": "Purchase Order", | "/po": "Purchase Order", | ||||
| "/po/workbench": "PO Workbench", | |||||
| "/dashboard": "dashboard", | "/dashboard": "dashboard", | ||||
| "/jo": "Job Order", | "/jo": "Job Order", | ||||
| "/jo/edit": "Edit Job Order", | "/jo/edit": "Edit Job Order", | ||||
| @@ -3,6 +3,7 @@ export const PRIVATE_ROUTES = [ | |||||
| "/dashboard", | "/dashboard", | ||||
| "/testing", | "/testing", | ||||
| "/jo/testing", | "/jo/testing", | ||||
| "/po/workbench", | |||||
| "/ps", | "/ps", | ||||
| "/bagPrint", | "/bagPrint", | ||||
| "/laserPrint", | "/laserPrint", | ||||