Added view intake and deliver checklists. IO-241

This commit is contained in:
Patrick Fic
2021-02-23 16:34:27 -08:00
parent 7e3200a993
commit 707eab563a
12 changed files with 339 additions and 8 deletions

View File

@@ -106,6 +106,9 @@ const ShopTemplates = lazy(() =>
const JobIntake = lazy(() =>
import("../jobs-intake/jobs-intake.page.container")
);
const JobChecklistView = lazy(() =>
import("../jobs-checklist-view/jobs-checklist-view.page")
);
const JobDeliver = lazy(() =>
import("../jobs-deliver/jobs-delivery.page.container")
);
@@ -218,6 +221,11 @@ export function Manage({ match, conflict }) {
path={`${match.path}/jobs/:jobId/deliver`}
component={JobDeliver}
/>
<Route
exact
path={`${match.path}/jobs/:jobId/checklist`}
component={JobChecklistView}
/>
<Route
exact
path={`${match.path}/jobs/:jobId/close`}