/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT-0 */ import { FunctionComponent } from 'react' import { Box, Container, Link } from 'aws-northstar' import { useAuthContext } from '../../contexts/AuthenticatedUserContext' const HomePage: FunctionComponent = () => { const authContext = useAuthContext() return ( <>

Optimize order dispatching and delivery route for medical supplies

  • Customers are hospitals in Seoul, Korea. And they order medical supplies daily.
  • Orders are dispatched once a day.
  • All deliveries start from a warehouse.
  • The customer has delivery priority.
  • There can be multiple orders by single customer.
  • By default, the orders are delivered by company-owned vehicle,
    but if there are a lot of orders, it can use temporary contracted vehicles.
  • Orders are dispatched to vehicles with considering vehicle capacity.
  • Find shorter distance for delivering trips.
  • Orders must be delivered by vehicles with a time group earlier than the ordering customer's time group.
  • Multiple orders from a single customer should preferably be delivered by a single vehicle.
  • Orders must be assigned priority to company-owned vehicles.
    Temporary contract vehicles are used when all company-owned vehicles are used.
) } export default HomePage