Css Report
Css Report
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.
Grocery List
Add Remove
<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>
Sr. Quan
Name of Resource/Material Specifications Remarks
No. tity
3. Operating-System Windows 11 1
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
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.
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
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.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
Prof. A. V. Dixit