Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
29 views48 pages

Inventory Project X

Consumer rights

Uploaded by

meherbablu69
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views48 pages

Inventory Project X

Consumer rights

Uploaded by

meherbablu69
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 48

lOMoARcPSD|50108254

Inventory project

computer logo creation (Delhi Public School, Ranchi)

Scan to open on Studocu

Studocu is not sponsored or endorsed by any college or university


Downloaded by Raj Singh ([email protected])
lOMoARcPSD|50108254

IT (402) Class X
Project Work File
On
Inventory Control System
(Session 2021-22)

Prepared by: XYZ


Class: X
Section: A
Class Roll no: 45
Board Roll no: 21321
School Name: aadd
Project Guide: rtrytuyuyu

Project For Class X 2021-22

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

ACKNOWLEDGEMENT
It gives me immense pleasure to present this report

file on the importance of RDBMS. This project work

is consisted of Open Office Base, which is a

useful DBMS and a part of Open Office Suite. In this

report file, a database file has been made upon the

“Inventory Control System”.

I would like to thank our computer faculty, who

always guided me in our proceeding. I am also

thankful to my friend who helped me.

Project For Class X 2021-22

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

ACHIVEMENT CERTIFICATE

This is to certify that (Your Name) of class (Your


Class) , Roll No.(Your Roll No) of (Name of School)
has satisfactorily completed his/her project in
Information Technology (402) for the session 2021-
22 .

Date:

{Subject Teacher}

Project For Class X 2021-22

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

INDEX
TOPIC PAGE NO

 Open Office Base Project Database

 Table Structure

 Item
 Suppliers
 Transactions

 Screen Shot of Table Structure

 Relationship Design & Structure


 Screen Shot of Query

 Screen Shot of Forms

 Report

 Bibliography

Project For Class X 2021-22

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Introduction:
Synopsis (For Reference
Purpose only) Inventory
Control System
Inventory control or stock control can be broadly defined as "the
activity of checking a shop's stock." It is the process of ensuring that the
right amount of supply is available within a business. However, a more
focused definition takes into account the more science-based, methodical
practice of not only verifying a business' inventory but also maximizing
the amount of profit from the least amount of inventory investment
without affecting customer satisfaction. Other facets of inventory control
include forecasting future demand, financial flexibility, purchasing data,
loss prevention and turnover, and customer satisfaction.
An extension of inventory control is the inventory control system. This
may come in the form of a technological system and its programmed
software used for managing various aspects of inventory problems, or it
may refer to a methodology (which may include the use of technological
barriers) for handling loss prevention in a business. The inventory control
system allows for companies to assess their current state concerning
assets, account balances, and financial reports.

The Inventory Control Processing refers to the management of


inventories. In other words, it refers to managing transactions in such a
way so that decisions regarding the inventory management can easily be
taken.

Project For Class X 2021-22

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

For instance, in a departmental store, many items are kept and sold.When
these items are sold out, the store orders for more quantity so as to meet
the customers' demands.
In order to successfully manage the departmental store, the authorities
have to decide about various things like
(i) What all items are being sold every day and how much stock is left for
them.
(ii) If the stock for a particular item is below reorder level i.e., the
minimum stock maintained for an item, then the same item is reordered.
(iii) When an item is sold, the quantity sold out is subtracted from the
Stock in Hands i.e., the current stock so as to keep it updated.
(iv) Similarly, if some quantity for an item is purchased, then this quantity
is added to Stock in Hands to keep the stock updated.
In order to make such decisions, the information related to inventories
i.e., the products and their transactions is stored in files. Following sample
project is based on these guidelines.
In this project, we have created three tables namely Items, Supplier, and
Transactions table design of these tables are as follows:

** Source : Google

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Table Structure

Table Name: Item


Field Specifications

Field Name Field Type

Itemcode BigInt [BIGINT]; Primary key

ItemName Text [VARCHAR] ;

ItemDescription Text [VARCHAR] ;

Price Decimal [DECIMAL];

StockAvailable Number [NUMERIC] ;

ItemSold Number [NUMERIC];

SupplierID Number [NUMERIC];

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Table Name: Supplier


Field Specifications

Field Name Field Type

SupplierID BigInt [BIGINT]; Primary key

SName Text [VARCHAR] ;

Address Text [VARCHAR] ;

City Text [VARCHAR] ;

Phone Text [VARCHAR] ;

Table Name : Transactions


Field Specifications

TranID BigInt [BIGINT]; Primary key

TrDate Date[DATE]

PrID Number [NUMERIC];

TranType Text [VARCHAR] ;

Quantity Number [NUMERIC];

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Creating Database:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Creating table1 (Item) using Design View:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Table 1 Item:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Setting Primary Key:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Saving the table:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

ac k

Create Table2 (Supplier) using Wizard:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Creating Table3 (Transactions) using Design View:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Database View of Table (Item)

Database View of Table (Supplier)

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Database View of Table (Transactions)

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Relationship among Tables:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Query using Wizard:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Query with selected Field name

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Create Form For Data Entry:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Form for Table Item:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Form for Table Supplier:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Form for Table Transactions:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Generate Report:

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])


lOMoARcPSD|50108254

Downloaded by Raj Singh ([email protected])

You might also like