MarketTrack is a COBOL-based inventory management system designed for small to medium-sized businesses. It manages product data, tracks sales, generates inventory reports, and helps maintain stock efficiently.
- Add Products: Easily add new products with relevant information (code, name, category, quantity, price).
- Update Products: Modify existing product details such as quantity, price, and category.
- Delete Products: Remove outdated or obsolete product entries.
- Record Sales: Log product sales, automatically updating stock quantities.
- Inventory Report: Generate reports highlighting products below a configurable restocking threshold.
- Search Products: Find products by name or code.
inventaire_market.dat
: Data file where product information is stored in line sequential format.
To run this project, you need a COBOL compiler such as:
- GnuCOBOL
- Any other COBOL compiler compatible with your operating system.
- Clone the repository:
git clone https://github.com/Kamionn/MarketTrack.git
- Navigate to the project directory:
cd markettrack
- Compile the COBOL program:
cobc -x -o MarketTrack GestionInventaire.cob
- Run the program:
/MarketTrack