graph TD;
A[Add Product to Catalog] --> B{Update Product Information?};
B -->|Yes| C[Update Product Information];
B -->|No| D[Retrieve Product Details];
C --> D;
D --> E{Choose Order Workflow};
E --> F[Add New Item Using Product Details];
E --> G[Add Existing Item to Order];
F --> H[Create Order];
G --> H;
classDef decision fill:#ffffe0,stroke:#333,stroke-width:2px;
click A "/docs/products/create-product.html" "Go to Add Product to Inventory Guide"
click C "/docs/products/update-product.html" "Go to Update Product Information Guide"
click D "/docs/products/retrieve-product-details.html" "Go to Retrieve Product Details Guide"
click F "/docs/orders/create-order-item.html" "Go to Add New Item Using Product Details Guide"
click H "/docs/orders/create-order.html" "Go to Create Order Guide"