Merge branch 'feature/IO-2278-parts-dispatching' into feature/america

This commit is contained in:
Patrick Fic
2023-08-04 13:57:25 -07:00
25 changed files with 677 additions and 40 deletions

View File

@@ -44,7 +44,10 @@ const TimeTicketModalTask = lazy(() =>
);
const TechAssignedProdJobs = lazy(() =>
import("../tech-assigned-prod-jobs/tech-assigned-prod-jobs.component")
);const TechDispatchedParts = lazy(() =>
import("../tech-dispatched-parts/tech-dispatched-parts.page")
);
const { Content } = Layout;
const mapStateToProps = createStructuredSelector({
@@ -116,6 +119,11 @@ export function TechPage({ technician, match }) {
path={`${match.path}/assigned`}
component={TechAssignedProdJobs}
/>
<Route
exact
path={`${match.path}/dispatchedparts`}
component={TechDispatchedParts}
/>
</Switch>
</FeatureWrapper>
</Suspense>