Added temporary document handling IO-69

This commit is contained in:
Patrick Fic
2021-02-12 11:25:34 -08:00
parent 675c38b19a
commit 77a06014cf
44 changed files with 1018 additions and 30 deletions

View File

@@ -119,6 +119,9 @@ const AccountingPayments = lazy(() =>
const AllJobs = lazy(() => import("../jobs-all/jobs-all.container"));
const JobsClose = lazy(() => import("../jobs-close/jobs-close.container"));
const JobsAdmin = lazy(() => import("../jobs-admin/jobs-admin.page"));
const TempDocs = lazy(() =>
import("../temporary-docs/temporary-docs.container")
);
const ShopCsiPageContainer = lazy(() =>
import("../shop-csi/shop-csi.container.page")
@@ -234,6 +237,11 @@ export function Manage({ match, conflict }) {
component={JobsDetailPage}
/>
</Switch>
<Route
exact
path={`${match.path}/temporarydocs/`}
component={TempDocs}
/>
<Route
exact
path={`${match.path}/courtesycars/`}