You are on page 1of 8

SHRI SHAMBHUBHAI V.

PATEL COLLEGE OF COMPUTER


SCIENCE & BUSINESS MANAGEMENT
Affiliated to
VEER NARMAD SOUTH GUJARAT UNIVERSITY
SURAT
A PROJECT REPORT ON
“The Coza Store”

As a partial fulfilment for the degree of


Bachelor of Computer Application (B.C.A.)
Academic Year: 2022-2023
Submitted By: Guided By:
PRIYANSH GANGANI(240) Prof. Hardik Gangadwala
AVADH KUMBHANI (264)
KARTIK DIYORA
INDEX
Introduction

The real power of this project lies not in direct provide clothes, but in
the creation of tighter relationships with customers and delivering of a
high level of clothes, which in turn improves organization sales and its
goodwill. A service organization is a business entity that takes care of
servicing a customer instrument in the after sales domain. As the
number of customers and size of operations increases, the organization
divides the geographical area into service areas and branch locations,
to allow Admin to be more responsive to the customer-needs.
Modules

1.Admin
-Home
-Seller
-Orders
-Category
-Subcategory
-Color
-Size

2.Delivery
-Dashboard
-order

3.Seller
-Dashboard
-product
-order

4.Client
-Login
-Registration
-Home
-Shop
-Contact us
-About
-Cart
-Profile
Similar Website
1.www.asos.com
2. www.newlook.com
3. www.nextdirect.com
4.www.combatgent.com
5. www.therealreal.com

Header: logo , after menu in menu Home,Shop,Contact us,About this all are at left
side. Right side is search option,Profile,Cart.
Footer: At left side we’ll put description of our store and after middle log in and
contact link and in last right side we’ll make payments methods.

ANGULAR JS :-

Advantages :- Open Source Language, Easy to extend , Easy to Test , Google Supported , No
Pre-requisite Knowledge.

Disadvantages :- Less Secure, No Specific Way, Not Supported Everywhere, Memory


Leakage.

MYsql :-

Advantages :- MySQL is at the top of the list of fast transactional database solutions
available today.

Disadvantages :- MySQL is not very efficient in handling very large databases


Tables
Table Field Null Key Datatype
attributes
attr_id not null primary key int(11)
p_id not null int(11)
type not null int(2)
a_id not null int(11)

Table Field Null Key Datatype


categories
c_id not null primary key int(11)
c_name not null varchar(20)

Table Field Null Key Datatype


colors
color_id not null primary key int(11)
color_name not null text

Table Field Null Key Datatype


coupons
coupon_id not null primary key int(11)
coupon_code not null varchar(100)
amount not null varchar(100)
min_order not null varchar(100)
start_date not null date
end_date not null date
Table Field Null Key Datatype
discount
de_id not null primary key int(11)
start_date not null date
end_date not null date
d_type not null text
discount not null float
p_id not null foreign key int(11)

Table Field Null Key Datatype


orders
o_id not null primary key int(11)
u_id not null foreign key int(11)
contact not null decimal(10,0)
amount not null int(11)
cou_code not null text
delivery_date not null timestamp
return_date not null date
order_date not null varchar(100)
deposite not null int(11)
return_amount not null int(11)
payment_id not null foreign_key text
status not null int(4)
delivery_id not null foreign key int(11)

Table Field Null Key Datatype


order_details
od_id not null primary key int(11)
qty not null int(11)
price not null decimal(10,0)
o_id not null foreign key int(11)
p_id not null foreign key int(11)

Table Field Null Key Datatype


products
p_id not null primary key int(11)
p_name not null varchar(200)
qty not null decimal(10,0)
price not null int(11)
deposite not null int(100)
short_description not null text
long_description not null text
status not null varchar(20)
features not null varchar(20)
u_id not null foreign key int(11)
subc_id not null foreign key int(11)

Table Field Null Key Datatype


product_images
pr_img_id not null primary key int(11)
url not null text
p_id not null foreign key int(11)

You might also like