0% found this document useful (0 votes)
36 views18 pages

Amaldev

The project outlines the development of a role-based management system for a fashion store, consisting of Admin, Staff, and User modules to streamline operations and enhance user satisfaction. Key features include product management, order tracking, payment processing, and feedback handling, all designed to improve productivity and data security. The system aims to facilitate effective communication and management among administrators, staff, and customers while ensuring scalability and real-time monitoring.
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)
36 views18 pages

Amaldev

The project outlines the development of a role-based management system for a fashion store, consisting of Admin, Staff, and User modules to streamline operations and enhance user satisfaction. Key features include product management, order tracking, payment processing, and feedback handling, all designed to improve productivity and data security. The system aims to facilitate effective communication and management among administrators, staff, and customers while ensuring scalability and real-time monitoring.
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/ 18

BLACK FASHION STORE

SUBMIT TED BY : AMALDEV S


REG NO : VDA23MCA2005
Abstract of the Project
This project aims to develop a role-based management system that facilitates the seamless interaction
between administrators, staff, and users while automating key business operations. The system consists of
three main modules: Admin, Staff, and User, each with distinct functionalities tailored to meet their specific
needs.
The Admin module serves as the backbone of the system, enabling administrators to manage products, assign
delivery tasks to staff, monitor orders and payments, and address user feedback and complaints. The Staff
module allows delivery personnel to view assigned tasks, update order statuses, and communicate effectively
with both administrators and users. The User module focuses on providing an intuitive experience for
customers to browse products, place orders, track deliveries, and share feedback or raise complaints.
Key features of the system include role-based authentication, product management, order tracking, payment
processing, feedback handling, and complaint resolution. By centralizing these operations, the system aims to
streamline workflows, enhance productivity, and improve user satisfaction.
The project emphasizes real-time monitoring, scalability, and data security, ensuring that the system can
handle increasing demands and maintain the integrity of business processes. Designed for businesses seeking
to optimize their operations, this management system provides a comprehensive solution for handling
products, orders, staff, and customer interactions effectively.
MODULES

• ADMIN

• STAFF

• USER
ADMIN

• Login

• Add and manage products

• Add and manage delivery staff

• View and manage orders

• View payment details

• View feedbacks

• Manage Product delivery


USER

• Login

• Search and view products

• View and manage orders

• Manage payment details

• View feedbacks

• Post feedbacks
• Manage complaints and reply
STAFF

● Login

● View product

● View order/ delivery request


Contents
➢ Data Flow Diagram
➢ Database Tables
BLACK
FASHION
STORE
payment
payment
payment
User
Field Data Type Constraints

user_id int Primary key

name varchar(50) Not null

role varchar(50) Not null

email varchar(50) Not null

address Varchar(150) Not null

phone_no varchar(50) Not null

password varchar(50) Not null

gender varchar(50) Not null

image varchar(150) Not null


Product

Field Data Type Constraints

product_id int primary Key

name varchar(50) Not null

price decimal(10,2) Not null

quantity varchar(50) Not null

details varchar(50) Not null

image varchar(150) Not null

category varchar(20)
Cart

Field Data Type Constraints

cart_id Int primary key

user_id int foreign key

product_id Int foreign key

quantity Int not null

t_amount decimal(10,2) not null


Orders
Field Data Type Constraints

order_id int Primary key

date date Not null

user_id int Foreign Key

product_id int Foreign key

time timestamp Not null

delivery_status varchar(50)

amount decimal(10,2) Not null

quantity int Not null

Payment_id varchar(20) Foreign key


Feedback

Field Data Type Constraints

feedback_id int Primary key

date timestamp

user_id int Foreign key

feedback varchar(150) Not null


Payment

Field Data Type Constraints

Payment_id Varchar(10) Primary key

Payment_date timestamp Not null

amount float Not null

Payment_status varchar(15) Not null

Order_id Varchar(20) Foreign key

user_id Varchar(20) Foreign key

Payment_mode Varchar(10) Not null


THANK YOU

You might also like