Project Work Class X, Assignments of Computer science

Inventory Control Project Documentation – A school project based on managing and tracking stock efficiently using simple methods to reduce errors and improve organization.

Typology: Assignments

2025/2026

Available from 03/17/2026

shivam-54
shivam-54 🇮🇳

1 document

1 / 52

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Digital Literacy
Project For Class X 2021-22
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
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34

Partial preview of the text

Download Project Work Class X and more Assignments Computer science in PDF only on Docsity!

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

ACKNOWLEDGEMENT

It gives me immense pleasure to present this report

file on the importance of RDBMS. This project work

is consist 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.

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-

Date:

{Subject Teacher} {HOD Comp. Dept.}

INDEX

TOPIC PAGE NO

 OpenOffice 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

taken. 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

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] ;

Table Name : Transactions Field Specifications TranID BigInt [BIGINT]; Primary key TrDate Date[DATE] PrID Number [NUMERIC]; TranType Text [VARCHAR] ; Quantity Number [NUMERIC];

Creating Database :

Table 1 Item:

Saving the Table