Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 533 Bytes

bpd_001.md

File metadata and controls

22 lines (18 loc) · 533 Bytes
title date
Business Process Diagram - Package Delivery
2024-08-06

Package Delivery Business Process

This document outlines the business process for delivering a package to a customer, visualized using a Mermaid flowchart.

Mermaid Flowchart

graph TD
    A[Start] --> B[Order Placed]
    B --> C[Process Order]
    C --> D{Inventory Available?}
    D -->|Yes| E[Package Order]
    D -->|No| H[Notify Customer - Out of Stock]
    E --> F[Ship Order]
    F --> G[Deliver Order]
    G --> I[End]
    H --> I
Loading