how much would it be for u to come out with source code?
et residential
Posts
-
Who can help on this C# Proj??? Urgent -
Who can help on this C# Proj??? Urgent1. Introduction The objective of this project is to develop an Inventory Control System ABC Pte Ltd has requested your assistance to create a simple inventory system. The system will keep track of the goods available in the warehouse so that items do not run out of stock. When your program starts, a system menu will be displayed: <Your own name> INVENTORY SYSTEM (1) Enter Goods Information (2) Issue Goods (3) Receive Goods (4) Re-order Goods (5) Generate Transactions Report (6) Display Goods Details (7) <Student’s unique function> (8) <Student’s unique report> (9) Quit >> Enter Choice: __ Fig A – Main Menu If user enters 1 to 9, do one of the following. If invalid choice, display error message and display Main Menu again. Enter Stock Information adds a stock item to the system (see 2.1). Issue Goods will reduce stock in the system (see 2.2). Receive Goods will increase the stock in the system by the quantity received (see 2.3) Re-order Goods checks for stock items that are low in quantity and allows user to top up the quantity of the item (see 2.4). Generate Transaction Report shows all transaction captured by the system (see 2.5). Display Goods Details shows all items recorded in the system (see 2.6). PROJECT Course: Diploma in Engineering Informatics Module: IT7133 – Principles of Computing Page 2 of 3 2. Functional Requirements 2.1 Enter Stock Information The system should allow the user to enter the stock details as follows: Field Description Format Item Code A code to identify unique item Eg. 121 Item Description What is this item Eg. Nescafe Available Quantity No. of units in stock Eg. 50 Re-order Quantity Minimum quantity below which the system will alert the user to re order the item Eg. 10 <descriptor 1> <descriptor 2> A maximum of 20 different items can be stored. 2.2 Issue Goods The system should allow the user to issue goods from the warehouse: Field Description Format Transaction No. A number to keep track of issue Up to student Item Code Item code of what was issued see 2.1 Quantity Issued Quantity issued 999 Transaction Date When was the item issued DD/MM/YYYY a) A maximum of 100 transactions can be tracked by the system. b) Enter the Item Code and display all the item information to assist in the transaction. c) For the specified item, the program should verify that Quantity Issued is not greater than Available Quantity (see 2.1) as one cannot issue more than what is available. If this is so, display error