0% found this document useful (0 votes)
31 views9 pages

Css Report

Uploaded by

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

Css Report

Uploaded by

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

“Report On Household Supply List”

Chapter 1 – INTRODUCTION TO PROJECT

1.1 ABSTRACT
Wheat, rice, pulses, oil, cosmetics, etc. are part of life such that they cannot be
seen as different from life. These products are available quickly and frequently at
any store, every store has their set of glossary products which need to be
managed properly in such a way that as one customer come to take the product
the items can be easily removed and collected at a place, then it needs to be set
according to the price.
Here what this system does is in this system we can see the items like wheat,
rice, pulses, soap, and any other product according to the attributes like type,
brand, category, price, etc. So that using system it can be located quickly and
give instructions to staff to take out the products and the total of the goods are
presented in the order table to total the price.
1.2 RATIONALE
JavaScript is limited featured client side programming language.
JavaScript runs at the client end through the user's browser without sending
messages back and forth to the server. It is widely used by the web developers
to do things such as build dynamic web pages, respond to events, create
interactive forms, validate data that the visitor enters into a form, control the
browser etc. This course helps student to create highly interactive web pages
using these features.

1.3 COURSE OUTCOMES ADDRESSED


i. Create interactive web page using program flow control structure.
ii. Implement array and function in java script.
iii. Create event-based web forms using java script.
iv. Create interactive webpage using regular expression for validation.

Computer Science & Engineering -1- RCPCOEP


“Report On Household Supply List”
Chapter 2 – LITERATURE REVIEW

Grocery List

Add Remove

Add element in the


grocery list Remove
element in
the grocery
list

Computer Science & Engineering -2- RCPCOEP


“Report On Household Supply List”
Chapter 3 – PROJECT DETAILS

3.1 ACTUAL METHODOLOGY FOLLOWED

Household supply List:-


<html>
<head>
<title>Grocery List</title>
</head>
<body bgcolor="lightgray">
<marquee><h2><center>Grocery List</center></h2></marquee>
<br>
<center>
<label>Bill Date:</label>
<input type="date" name="04"><br><br>
<form name="form">
<table id="myTable" border="2" cellpadding="8" cellspacing="8">
<th>Product Name</th>
<th>Price</th>
<th>Quantity</th>
<th>Action</th>
<tr>
<td>wheat</td>
<td>40</td>
<td>12kg</td>
<td><input type="button" value="Delete Item"
onclick="deleteItem(this)"></td>
</tr>
<!-- Add more rows here if needed -->
</table>
</form>
</center>

<center>
Computer Science & Engineering -3- RCPCOEP
“Report On Household Supply List”
<input type="button" value="Add the Item" onclick="additem()" />
<input type="button" value="Print" onclick="printList()" />
</center>

<script>
function additem()
{
let table = document.getElementById("myTable");
let row = table.insertRow(1);
let c1 = row.insertCell(0);
let c2 = row.insertCell(1);
let c3 = row.insertCell(2);
let c4 = row.insertCell(3);
c1.innerText = prompt("Enter the item");
c2.innerText = prompt("Enter the price");
c3.innerText = prompt("Enter the quantity");
let deleteButton = document.createElement("input");
deleteButton.type = "button";
deleteButton.value = "Delete Item";
deleteButton.onclick = function () {
deleteItem(this);
};
c4.appendChild(deleteButton);
}
function deleteItem(button)
{
let row = button.parentNode.parentNode;
row.parentNode.removeChild(row);
}
function printList()
{
window.print();
}
</script>
</body></html>

Computer Science & Engineering -4- RCPCOEP


“Report On Household Supply List”

3.2 ACTUAL RESOURCES REQUIRED

Sr. Quan
Name of Resource/Material Specifications Remarks
No. tity

1. Computer-System HP Pro One 400 1

2. Processor Intel i5 Processor 1

3. Operating-System Windows 11 1

4. Software Sublime Text 1

5. Browser Google Chorme 1

Computer Science & Engineering -5- RCPCOEP


“Report On Household Supply List”
Chapter 4 – MICRO-PROJECT OUTPUTS

4.1 OUTPUTS OF THE MICRO-PROJECT

Grocery supply List:

4.2 SKILL DEVELOPED/LEARNING OUT OF THIS MICRO-PROJECT

 In the java script language we can learn how to create grocery list.
 In grocery list we add item, delete the item, and update the

Chapter 5

Computer Science & Engineering -6- RCPCOEP


“Report On Household Supply List”
ADVANTAGES, DISADVANTAGES & APPLICATIONS

5.1 ADVANTAGES
1. Prices of all the goods at these stores are always fixed. No bargaining is
allowed in prices.
2. managing all the information about products, product brand, product
category, vendors, customers and product stock.
3. Multiple user can access this software. Admin can create new user. Modify,
Delete and disable user account.
4. A grocery list helps you achieve your weight loss and fitness goals by giving you
the time to identify healthy food products and ingredients to buy.

5.2 DISADVANTAGES
1. Indians are good at bargaining. You can bargain only in case of offline
shopping, not in the case of online shopping.

2. Trust me if one is good at bargaining, he can save a lot of money during


offline shopping.

3. When you first see the product on a portal, it generally looks cheaper.
But when you proceed for the payment, the extra charges like shipping
charges, tax and packing charges are added.

4. These charges will make the product expensive vis-a-vis the local store.

5.3 APPLICATIONS
1. Grouping foods by category on your grocery list helps you remember food
items and avoid a return trip to the store.
2. It helps you remember the items to shop for, even if you've left or lost your list
on the way to the store.

Chapter 6

Computer Science & Engineering -7- RCPCOEP


“Report On Household Supply List”
CONCLUSIONS, FUTURE SCOPE & REFERENCES

6.1 CONCLUSION
We have successfully performed and executed Grocery List. In grocery list include
add item, remove item, current bill-date, and much more.

6.2 AREA OF FUTURE IMPROVEMENT


The Grocery Management System is developed to facilitate the work of the grocery
storekeeper and the customer who buys the products.

6.3 REFERENCES
[1] https://www.lovelycoding.org/grossary-management-system/
[2] https://www.positivelendingsolutions.com.au/resources/information-centre/8-reasons-
to-make-a-shopping-list/
[3] https://iamcheated.indianmoney.com/blogs/disadvantages-of-online-shopping

WEEKLY WORK / PROGRESS REPORT

Computer Science & Engineering -8- RCPCOEP


“Report On Household Supply List”
Details of 16 Engagement Hours of the Student
Regarding Completion of the Project
Timing Sign
Week
Date Duration Work/Activity Performed of
No. From To
in Hours Guide
20-08-24 10:00 11:00 1
1. Project-Selection
11:00 12:00 1 Problem Identification & Concept
2. 20-08-24
Discussion
3:00 4:00 1
3. 23-08-24 Project Planning & Scheduling
4:00 5:00 1
4. 23-08-24 Literature Survey- I
10:00 11:00 1
5. 27-08-24 Requirement Analysis
11:00 12:00 1
6. 27-08-24 Design-I:-UML Diagram
3:00 4:00 1
7. 30-08-24 Design-II:- UML Diagram
30-08-24 4:00 5:00 1
8. Preparation of Activity-Diagram
02-09-24 10:00 11:00 1
9. Extracting & Understanding Features I
02-09-24 11:00 12:00 1 Extracting & Understanding
10.
Characteristics II
06-09-24 3:00 4:00 1
11. Testing
06-09-24 4:00 5:00 1
12. Results
09-09-24 10:00 11:00 1
13. Documentation
09-09-24 11:00 12:00 1
14. Presentation Preparation
13-09-24 3:00 4:00 1
15. Report Creation and Seminar

Name & Signature of Project Guide

Prof. A. V. Dixit

Computer Science & Engineering -9- RCPCOEP

You might also like