What's new

Help Sale and Inventory system

Sakurara

Eternal Poster
Established
Joined
Nov 24, 2016
Posts
575
Reaction
104
Points
390
Create a flowchart about this tables Customer, Category, Product Supplier, Recieveing , Inventory,Sales
1701696799567.jpg
 

Attachments

Sure! Below is a possible flowchart showing the relationship between the tables Customer, Category, Product Supplier, Receiving, Inventory, and Sales.

Code:
Start

    ┌─────────────┐
    │     Menu    │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │  Customer   │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │   Category  │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │   Product   │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │  Supplier   │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │  Receiving  │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │  Inventory  │
    └─────────────┘
          │
          │
          ▼
    ┌─────────────┐
    │    Sales    │
    └─────────────┘
          │
          │
          ▼
       End

In this flowchart, the flow starts at the Menu, and then moves to each table (Customer, Category, Product, Supplier, Receiving, Inventory, and Sales) in a sequential manner. Each table represents a step in the flow, and the flow continues until it reaches the end. This flowchart represents the process of managing a sale and inventory system, starting with managing customers, categories, products, suppliers, receiving inventory, and finally recording sales.
 
Back
Top