15
VEHICLE STORE AND SALES MANAGEMENT SYSTEM PRESENTED BY:- VIVEK PRATAP

Vehicle store and sales management system

Embed Size (px)

Citation preview

Page 1: Vehicle store and sales management system

VEHICLE STORE AND SALES MANAGEMENT SYSTEM

PRESENTED BY:- VIVEK PRATAP

Page 2: Vehicle store and sales management system

introduction

Vehicle store and sales management system manages a vehicle company website that provide vehicle specification ,stores location on different places , customer interaction and services.

Project’s scope is about how to provide knowledge about company’s vehicles , increase sales and make it easier for customers to contact company for their vehicle related problems.

Page 3: Vehicle store and sales management system

Main Idea

The main idea behind the project is having a database containing all information of a particular vehicle ….vehicle_id, type, insurance, loan, owner etc.

Customers or anyone can search about → vehicle_type → vehicle_cost → vehicle store’s locations → insurance options → loan options etc….

Page 4: Vehicle store and sales management system

Relations

Primarily we’re going to require relations having all the details of the available vehicles and branches. → vehicle → Branch →Management Rest is the data of individual and that includes…………… → customer → insurance → loan → Employee

Page 5: Vehicle store and sales management system

SCHEMA : vehicle

vehicleVehicle_id CHAR 10 PrimaryVehicle_type VARCHAR 15 Not nullVehicle_name VARCHAR 30 ………Customer_id CHAR 15 Reference customerVehicle_cost Numeric (8,2) Not nullInsurance_id CHAR 20 Reference insurance

Page 6: Vehicle store and sales management system

SCHEMA : Branch

Branch Branch_id CHAR 5 PrimaryBranch_name VAR 30Branch_address VAR 30Branch_city VAR 15No_of_employee Numeric 4Vehicle_capacity Numeric 2Branch_manager VAR 30Branch_turnover Numeric (12,2)Branch_contact Numeric 11

Page 7: Vehicle store and sales management system

SCHEMA : Employee

EmployeeEmployee_id CHAR 10 PrimaryEmployee_name VAR 30Employee_branch CHAR 5 Reference BranchEmployee_post VAR 10Employee_salary Numeric (5,2)Employee_sales Numeric (8,2)Employee_address VAR 30Employee_phone Numeric 11

Page 8: Vehicle store and sales management system

SCHEMA : Customer

CustomerCustomer_id CHAR 10 PrimaryCustomer_name VAR 30Customer_addres VAR 30Customer_Branch CHAR 5 Reference BranchCustomer_phone Numeric 11Customer_type VAR 10Vehicle_id CHAR 10 Reference vehicleInsurance_id CHAR 20 Reference

insuranceLoan_id CHAR 20 Reference loan

Page 9: Vehicle store and sales management system

SCHEMA : insurance

Insurance

Insurance_id CHAR 20 primaryInsurance_name VAR 20Insurance_type VAR 20Vehicle_id CHAR 10 Reference vehicleInsurance_amount Numeric 10No_of_years Numeric 3

Page 10: Vehicle store and sales management system

SCHEMA : Loan

LoanLoan_id CHAR 20 PrimaryLoan_type VAR 20Loan_amount Numeric (7,2) Not nullCustomer_id CHAR 10 Reference customerVehicle_id CHAR 20 Reference vehicleBank_name CHAR 30No_of_emi’s numeric 30

Page 11: Vehicle store and sales management system

SCHEMA : Management

managementManager_id CHAR 10 PrimaryManager_branch CHAR 5 Ref. Branch

Page 12: Vehicle store and sales management system

Entity Relationship Model

An entity relationship model of the following database is given in the following page that describes the relationship among different entity sets.

Page 13: Vehicle store and sales management system

management

Branch

Employee

customer

Vehicle InsuranceLoan

Manage

works

has

Page 14: Vehicle store and sales management system

Architecture:

There is a three level architecture involved in the database.

Back EndContains the entire databases of company’s vehicle store and customer.

Application Program

Calculates the cost of a particular vehicle or its part.

Front EndContains the PHP/XHTML page for the inquiries of the customers.

Page 15: Vehicle store and sales management system

Thank you!