SlideShare a Scribd company logo
1 of 86
Guided By: 
Purvi Prajapati 
Provided By: 
Moin Khan(D11IT137)
๏ฝ Project Summary 
๏ฝ Objective 
๏ฝ Tools and technology 
๏ฝ System Environment 
๏ฝ System Analysis & Design 
๏ฝ Testing
๏ฝ An online warranty management portal is a virtual 
shop on the Internet where customers can upgrade 
warranty, register new warranty, and check details of 
warranty 
๏ฝ When a customer upgrade an existing warranty. 
She/he enters the serial no of existing product and 
after select the upgraded plan and click the upgrade 
button and at that time complete the transaction. 
๏ฝ When a customer wants to register for new warranty, 
she/he has to enter serial no and bill no of the 
product that has already been purchased. This 
information is then verified with selling department. 
Upon correct verification a customer will be 
successfully registered for warranty.
๏ฝ User Extend the warranty 
๏ฝ User check Warranty details 
๏ฝ User feedback 
๏ฝ Admin manage product, customer, supplier, 
product category.
๏ฝ Front end 
๏‚– cake PHP 2.5 framework. 
๏ฝ Back end 
๏‚– Mysql-server 5.5.20
๏ฝ Registration 
๏ฝ Login 
๏ฝ Upgrade Warranty 
๏ฝ Register Product 
๏ฝ Check warranty details
๏ฝ Security 
๏ฝ Reliability 
๏ฝ Portability 
๏ฝ Availabilitys
User Characteristics (types of User) 
๏ฝ Admin 
โ—ฆ Manage warranty of product related to customer 
โ—ฆ Manage customers, Supplier, product, product 
category. 
๏ฝ Customer 
โ—ฆ End user check product's warranty details 
โ—ฆ Check service center details 
โ—ฆ feedback of product 
โ—ฆ Read polices and contracts
๏ฝ Server Side 
Scripting Language PHP : Hypertext Preprocessor, JavaScript 
Other Languages HTML, CSS (Developer side) 
Operating System Windows 2000, Windows Vista orWindows 7/8 
Software Tools Dreamweaver (Developer side) 
Database MySQL (Developer side) 
Browser Google Chrome, Firefox, IE 6 or up, Opera, Safari 
Wamp server Version 2.4 (Developer side) 
CakePHP Version 2.5.x (Developer side)
๏ฝ Client Side 
Processor Intel core or up (min.) 
Hardware RAM 256MB or Higher. (min.)
๏ฝ Data dictionary 
1. User- : user_mstr 
Purpose: User Master will store the basic information of any User and Login 
Sr.No Field Name Data type Constraints Description 
1 USER_ID Integer Primary Key 
2 USER_NAME Varchar(100) Not Null 
3 PASSWORD Varchar(50) Not Null 
4 ADDRESS Varchar(150) Not Null 
5 ROLE Varchar(50) Not Null 
6 USER_PHONE Varchar(13) 
7 USER_EMAIL Varchar(50) Not Null 
8 STATUS BOOLEAN Not Null 1=confirmed and 0=pending
๏ฝ Product Category,Product company 
2. Product_Category-: product_category 
Purpose: Product Category will store the list of Category. 
Sr.No Field Name Data Type Constraints Description 
1 CATEGORY_ID Integer Primary key 
2 CATEGORY_NAME Varchar(50) Not Null 
3. Product_Company-: product_company 
Purpose: Product Company will store the list of Company. 
Sr.No Field Name Data Type Constraints Description 
1 COMPANY_ID Integer Primary key 
2 COMPANY_NAM 
E 
Varchar(50) Not Null
๏ฝ Product master 
4. Product-: product_mstr 
Purpose: Product Master will store the basic information of any Product 
Sr.No Field Name Data Type Constraints Description 
1 PRODUCT_ID Integer Primary key 
2 PRODUCT_NAME Varchar(50) Not Null 
3 CATEGORY_ID Integer Foreign key Reference 
product_category 
4 COMPANY_ID Integer Foreign Key Reference 
product_company 
5 DESCRIPTION Varchar(100) 
6 PRICE Float (10,2) Not Null 
7 WARRANTY_PERIOD Integer(2) Not Null
๏ฝ Supplier master 
5.Supplier-: supplier_mstr 
Purpose: Supplier Master will store the basic information of any Supplier 
Sr.No Field Name Data Type Constraints Description 
1 SUPPLIER_ID Integer Primary key 
2 SUPPLIER_NAME Varchar(50) Not Null 
3 SUPPLIER_ADDRESS Varchar(150) Not Null 
4 SUPPLIER_PHONE Varchar(13) Null 
5 SUPPLIER_EMAIL Varchar(50) Null
๏ฝ Customer and product (master table) 
6.CUSTOMER PRODUCT-: customer_product 
Purpose: Customer Product will store the information of customer product bill 
Sr.No Field Name Data Type Constraints Description 
1 CUSTOMER_PRO 
DUCT_ID 
Integer Primary key 
2 USER_ID Integer Foreign key Reference user_mstr table 
3 PRODUCT_ID Integer Foreign key Reference product table 
4 SUPPLIER_ID Integer Foreign key Reference supplier table 
5 PRODUCT_PURC 
HASE_DATE 
Date Not-Null 
6 PRODUCT_PURC 
HASE_PRICE 
Float(10,2) 
7 PRODUCT_SERIA 
L_NO 
Varchar(15) Not-Null 
8 WP_ID Integer Not-Null
๏ฝ Product register 
7.PRODUCT REGISTER-: product_register 
Purpose: Product_Register will store the basic information of Product Register by customer 
Sr.No Field Name Data Type Constraints Description 
1 PRODUCT_REG_I 
D 
Integer Primary key 
2 USER_ID Integer Foreign key Reference user_mstr table 
3 PRODUCT_ID Integer Foreign key Reference product table 
4 SUPP_ID Integer Foreign key Reference supplier table 
5 PRODUCT_SERIA 
L_NO 
Varchar(15) Not-Null 
6 INVOICE_NO Integer Not-Null
๏ฝ Extend warranty, feedback detailed 
8.Extend_Warranty-: warranty_period 
Purpose: Product_Register will store the basic information of Product_Register by customer 
Sr.No Field Name Data Type Constraints Description 
1 WP_ID Integer Primary key 
2 WARRANTY_ERI 
OD 
Integer 
9.Feedback-: feedback_detailed 
Purpose: feedback_detailed will store the basic information of any Supplier 
Sr.No Field Name Data Type Constraints Description 
1 FEEDBACK_ID Integer Primary key 
2 PRODUCT_ID Integer Foreign Key Reference product_mstr 
3 USER_ID Integer Foreign Key Reference user_mstr 
4 COMMENT Varchar(255) Not-Null
๏ฝ Country,state,city 
10.Country -: country_mstr 
Purpose: State will store the basic information of any Country 
Sr.No Field Name Data Type Constraints Description 
1 COUNTRY_ID Integer Primary key 
2 COUNTRY_NAME Varchar(100) Not_Null 
11.State-: state_mstr 
Purpose: State will store the basic information of any Country 
Sr.No Field Name Data Type Constraints Description 
1 STATE_ID Integer Primary key 
2 STATE_NAME Varchar(100) Not_Null 
3 COUNTRY_ID Integer Foreign Key Reference country_mstr 
12.City-: city_mstr 
Purpose: City will store the basic information of any City 
Sr.No Field Name Data Type Constraints Description 
1 CITY_ID Integer Primary key 
2 CITY_NAME Varchar(100) Not_Null 
3 STATE_ID Integer Foreign Key Reference state_mstr
๏ฝ Service center 
13.Service Center-: service_center 
Purpose:service_center will store the basic information of any Service center 
Sr.No Field Name Data Type Constraints Description 
1 SERVICE_CENTE 
R_ID 
Integer Primary key 
2 ADDRESS1 Varchar(150) Not-Null 
3 ADDRESS2 Varchar(150) Null 
4 CITY_ID Integer Foreign key Reference city_mstr
๏ฝ Login Page 
๏ฝ Dashboard 
๏ฝ Transaction 
๏ฝ Warranties 
๏ฝ Product Master 
๏ฝ Customer Master 
๏ฝ Supplier Master 
๏ฝ Reports
๏ฝ Model View Controller standard are use.
๏ฝ Unit testing
๏ฝ Unit testing, a testing technique using which 
individual modules are tested to determine if 
there are any issues by the developer himself. 
It is concerned with functional correctness of 
the standalone modules.
Test Case ID Field Name Input value Expected Output Actual value 
TESTCASE01 Username Blank This field is 
required 
This field is 
required 
TESTCASE02 Password Blank This field is 
required 
This field is 
required 
TESTCASE03 Username Abc Invalid User name Failure: 
Incorrect 
username 
and/or password 
! 
TESTCASE04 Password Abc Invalid password Failure: 
Incorrect 
username 
and/or password 
!
Test Case ID Field Name Input 
value 
Expected 
Output 
Actual value 
TESTCASE0 
1 
Add product 
fields, user 
detailed, 
supplier 
detailed 
Blank This Field is 
required 
This Field is 
required 
TESTCASE0 
2 
Add product 
fields 
Some input Success : Product 
Save 
Successfully !!!! 
Success : 
Product Save 
Successfully 
!!!! 
TESTCASE0 
3 
Add user 
details 
Some input Success :user 
save 
Successfully !!!! 
Success :user 
save 
Successfully 
!!!! 
TESTCASE0 
4 
Add 
supplier 
details 
Some input Success :supplier 
save 
Successfully !!!! 
Success 
:supplier save 
Successfully 
!!!! 
TESTCASE0 
5 
Update 
product 
fields, user 
detailed, 
supplier 
detailed 
Blank This field is 
required 
This field is 
required 
TESTCASE0 
6 
Update 
product 
fields 
Some value 
change 
SUCCESS: 
Product Updated 
Successfully !!!! 
SUCCESS: 
Product 
Updated 
Successfully 
!!!! 
TESTCASE0 
7 
Update 
supplier 
detailed 
Some valu 
change 
SUCCESS: 
supplier Updated 
Successfully !!!! 
SUCCESS: 
supplier 
Updated 
Successfully 
!!!!
๏ฝ Surfing Speed 
Cake php is reading hundreds if not 
thousands of different files in hundreds of 
folders for every single visitor thatโ€™s on your 
site. 
๏ฝ Continues internet requirement 
๏ฝ A user must continuous requirement of 
internet connection 
๏ฝ Does not good layout in less ie7.
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system

More Related Content

What's hot

Restaurant Management System Database Project (Oracle)
Restaurant Management System Database Project (Oracle)Restaurant Management System Database Project (Oracle)
Restaurant Management System Database Project (Oracle)Md. Shafaat Jamil Rokon
ย 
Library management system
Library management systemLibrary management system
Library management systemashu6
ย 
Data dictionary
Data dictionaryData dictionary
Data dictionaryShaikh Uves
ย 
Event managementsystem
Event managementsystemEvent managementsystem
Event managementsystemPraveen Jha
ย 
Hotel reservation system
Hotel reservation systemHotel reservation system
Hotel reservation systemManoj Malshan
ย 
on line feedback system
on line feedback systemon line feedback system
on line feedback systemsathish sak
ย 
Manufacturing and sales management system
Manufacturing and sales management systemManufacturing and sales management system
Manufacturing and sales management systemSmit Patel
ย 
Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Abhilasha Lahigude
ย 
SPCE Alumni Association Web Portal
SPCE Alumni Association Web PortalSPCE Alumni Association Web Portal
SPCE Alumni Association Web PortalSalmaniac Nilesh
ย 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance SystemAkash Kr Sinha
ย 
Hotel management system presentation
Hotel management system presentationHotel management system presentation
Hotel management system presentationjoilrahat
ย 
Airline Management System [for presentation]
Airline Management System [for presentation]Airline Management System [for presentation]
Airline Management System [for presentation]SH Rajรธn
ย 
College Department Management System
College Department Management SystemCollege Department Management System
College Department Management SystemJIGAR MAKHIJA
ย 
Project report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlProject report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlRaj Sharma
ย 
Restaurant management presentation
Restaurant management presentationRestaurant management presentation
Restaurant management presentationjoilrahat
ย 
Library Management System Project Report
Library Management System Project Report Library Management System Project Report
Library Management System Project Report Abu Kaisar
ย 
Super Market Management System
Super Market Management SystemSuper Market Management System
Super Market Management SystemShubham Singh
ย 
E farming management system project ppt
E farming management system project pptE farming management system project ppt
E farming management system project pptnandinim26
ย 
Online Student Feedback System
Online Student Feedback SystemOnline Student Feedback System
Online Student Feedback SystemEditorIJAERD
ย 

What's hot (20)

Restaurant Management System Database Project (Oracle)
Restaurant Management System Database Project (Oracle)Restaurant Management System Database Project (Oracle)
Restaurant Management System Database Project (Oracle)
ย 
Library management system
Library management systemLibrary management system
Library management system
ย 
Data dictionary
Data dictionaryData dictionary
Data dictionary
ย 
Event managementsystem
Event managementsystemEvent managementsystem
Event managementsystem
ย 
Hotel reservation system
Hotel reservation systemHotel reservation system
Hotel reservation system
ย 
on line feedback system
on line feedback systemon line feedback system
on line feedback system
ย 
Manufacturing and sales management system
Manufacturing and sales management systemManufacturing and sales management system
Manufacturing and sales management system
ย 
Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS) Leave Management System: Software Requirements Specification Document(SRS)
Leave Management System: Software Requirements Specification Document(SRS)
ย 
SPCE Alumni Association Web Portal
SPCE Alumni Association Web PortalSPCE Alumni Association Web Portal
SPCE Alumni Association Web Portal
ย 
Hotel Management System
Hotel Management System Hotel Management System
Hotel Management System
ย 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance System
ย 
Hotel management system presentation
Hotel management system presentationHotel management system presentation
Hotel management system presentation
ย 
Airline Management System [for presentation]
Airline Management System [for presentation]Airline Management System [for presentation]
Airline Management System [for presentation]
ย 
College Department Management System
College Department Management SystemCollege Department Management System
College Department Management System
ย 
Project report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysqlProject report-on-student-information-management-system-php-mysql
Project report-on-student-information-management-system-php-mysql
ย 
Restaurant management presentation
Restaurant management presentationRestaurant management presentation
Restaurant management presentation
ย 
Library Management System Project Report
Library Management System Project Report Library Management System Project Report
Library Management System Project Report
ย 
Super Market Management System
Super Market Management SystemSuper Market Management System
Super Market Management System
ย 
E farming management system project ppt
E farming management system project pptE farming management system project ppt
E farming management system project ppt
ย 
Online Student Feedback System
Online Student Feedback SystemOnline Student Feedback System
Online Student Feedback System
ย 

Similar to Warranty management system

ppt_project_group_2.ppt amnd project report
ppt_project_group_2.ppt amnd project reportppt_project_group_2.ppt amnd project report
ppt_project_group_2.ppt amnd project reportsobanmoriwala1
ย 
A2Z gift shop
A2Z gift shopA2Z gift shop
A2Z gift shopPavan Meerwal
ย 
Book a-snapper
Book a-snapperBook a-snapper
Book a-snapperMehul jadav
ย 
Online-Electronic-Store-PPT-Freedownload
Online-Electronic-Store-PPT-FreedownloadOnline-Electronic-Store-PPT-Freedownload
Online-Electronic-Store-PPT-Freedownloadmanish0jadav
ย 
Product inventory system
Product inventory systemProduct inventory system
Product inventory systemHuzaifa Al Noor
ย 
Presentation jignesh
Presentation jigneshPresentation jignesh
Presentation jigneshjignesh gamit
ย 
Online reastaurant ordering managemant system
Online reastaurant ordering managemant systemOnline reastaurant ordering managemant system
Online reastaurant ordering managemant systemPreksha Thada
ย 
Online rto management system
Online rto management system Online rto management system
Online rto management system DigneshPrajapati1
ย 
Project nilland
Project   nillandProject   nilland
Project nillandNguyen Duy Anh
ย 
Online furniture
Online furnitureOnline furniture
Online furnituregitika -
ย 
Final Year Project BCA Presentation on Pic-O-Stica
Final Year Project BCA Presentation on Pic-O-SticaFinal Year Project BCA Presentation on Pic-O-Stica
Final Year Project BCA Presentation on Pic-O-SticaSharath Raj
ย 
Online Vegetable Selling project Presentation
Online Vegetable Selling project PresentationOnline Vegetable Selling project Presentation
Online Vegetable Selling project Presentationmayur patel
ย 
Group Project 650 Report2
Group Project 650 Report2Group Project 650 Report2
Group Project 650 Report2Yazeed Alkarzai
ย 
OSMS Slide-Abdul Hakeem.pptx
OSMS Slide-Abdul Hakeem.pptxOSMS Slide-Abdul Hakeem.pptx
OSMS Slide-Abdul Hakeem.pptxShaistaRiaz4
ย 
Practical guide to SQL basics
Practical guide to SQL basicsPractical guide to SQL basics
Practical guide to SQL basicsPavani Ganti
ย 
Final year project on Inventory management
Final year project on Inventory managementFinal year project on Inventory management
Final year project on Inventory managementSaadi Rahman
ย 
Computer shop billing system
Computer shop billing systemComputer shop billing system
Computer shop billing systemMayur Solanki
ย 
Database Management Systems Lab manual (KR20) CSE.pdf
Database Management Systems Lab manual (KR20) CSE.pdfDatabase Management Systems Lab manual (KR20) CSE.pdf
Database Management Systems Lab manual (KR20) CSE.pdfAnvesh71
ย 
E-Bazaar
E-BazaarE-Bazaar
E-Bazaarayanthi1
ย 

Similar to Warranty management system (20)

ppt_project_group_2.ppt amnd project report
ppt_project_group_2.ppt amnd project reportppt_project_group_2.ppt amnd project report
ppt_project_group_2.ppt amnd project report
ย 
A2Z gift shop
A2Z gift shopA2Z gift shop
A2Z gift shop
ย 
Book a-snapper
Book a-snapperBook a-snapper
Book a-snapper
ย 
Online-Electronic-Store-PPT-Freedownload
Online-Electronic-Store-PPT-FreedownloadOnline-Electronic-Store-PPT-Freedownload
Online-Electronic-Store-PPT-Freedownload
ย 
Product inventory system
Product inventory systemProduct inventory system
Product inventory system
ย 
Presentation jignesh
Presentation jigneshPresentation jignesh
Presentation jignesh
ย 
Online reastaurant ordering managemant system
Online reastaurant ordering managemant systemOnline reastaurant ordering managemant system
Online reastaurant ordering managemant system
ย 
tbca65
tbca65tbca65
tbca65
ย 
Online rto management system
Online rto management system Online rto management system
Online rto management system
ย 
Project nilland
Project   nillandProject   nilland
Project nilland
ย 
Online furniture
Online furnitureOnline furniture
Online furniture
ย 
Final Year Project BCA Presentation on Pic-O-Stica
Final Year Project BCA Presentation on Pic-O-SticaFinal Year Project BCA Presentation on Pic-O-Stica
Final Year Project BCA Presentation on Pic-O-Stica
ย 
Online Vegetable Selling project Presentation
Online Vegetable Selling project PresentationOnline Vegetable Selling project Presentation
Online Vegetable Selling project Presentation
ย 
Group Project 650 Report2
Group Project 650 Report2Group Project 650 Report2
Group Project 650 Report2
ย 
OSMS Slide-Abdul Hakeem.pptx
OSMS Slide-Abdul Hakeem.pptxOSMS Slide-Abdul Hakeem.pptx
OSMS Slide-Abdul Hakeem.pptx
ย 
Practical guide to SQL basics
Practical guide to SQL basicsPractical guide to SQL basics
Practical guide to SQL basics
ย 
Final year project on Inventory management
Final year project on Inventory managementFinal year project on Inventory management
Final year project on Inventory management
ย 
Computer shop billing system
Computer shop billing systemComputer shop billing system
Computer shop billing system
ย 
Database Management Systems Lab manual (KR20) CSE.pdf
Database Management Systems Lab manual (KR20) CSE.pdfDatabase Management Systems Lab manual (KR20) CSE.pdf
Database Management Systems Lab manual (KR20) CSE.pdf
ย 
E-Bazaar
E-BazaarE-Bazaar
E-Bazaar
ย 

Recently uploaded

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
ย 
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
ย 
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online โ˜‚๏ธ
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online  โ˜‚๏ธCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online  โ˜‚๏ธ
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online โ˜‚๏ธanilsa9823
ย 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
ย 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
ย 
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
ย 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
ย 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
ย 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
ย 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
ย 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
ย 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
ย 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
ย 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
ย 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfWilly Marroquin (WillyDevNET)
ย 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
ย 
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...Steffen Staab
ย 
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธcall girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธDelhi Call girls
ย 

Recently uploaded (20)

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
ย 
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female serviceCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Badshah Nagar Lucknow best Female service
ย 
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online โ˜‚๏ธ
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online  โ˜‚๏ธCALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online  โ˜‚๏ธ
CALL ON โžฅ8923113531 ๐Ÿ”Call Girls Kakori Lucknow best sexual service Online โ˜‚๏ธ
ย 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
ย 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
ย 
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
ย 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
ย 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
ย 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
ย 
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS LiveVip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida โžก๏ธ Delhi โžก๏ธ 9999965857 No Advance 24HRS Live
ย 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
ย 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
ย 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
ย 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
ย 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
ย 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
ย 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
ย 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
ย 
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spacesย - and Epistemic Querying of RDF-...
ย 
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธcall girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
call girls in Vaishali (Ghaziabad) ๐Ÿ” >เผ’8448380779 ๐Ÿ” genuine Escort Service ๐Ÿ”โœ”๏ธโœ”๏ธ
ย 

Warranty management system

  • 1. Guided By: Purvi Prajapati Provided By: Moin Khan(D11IT137)
  • 2. ๏ฝ Project Summary ๏ฝ Objective ๏ฝ Tools and technology ๏ฝ System Environment ๏ฝ System Analysis & Design ๏ฝ Testing
  • 3. ๏ฝ An online warranty management portal is a virtual shop on the Internet where customers can upgrade warranty, register new warranty, and check details of warranty ๏ฝ When a customer upgrade an existing warranty. She/he enters the serial no of existing product and after select the upgraded plan and click the upgrade button and at that time complete the transaction. ๏ฝ When a customer wants to register for new warranty, she/he has to enter serial no and bill no of the product that has already been purchased. This information is then verified with selling department. Upon correct verification a customer will be successfully registered for warranty.
  • 4. ๏ฝ User Extend the warranty ๏ฝ User check Warranty details ๏ฝ User feedback ๏ฝ Admin manage product, customer, supplier, product category.
  • 5. ๏ฝ Front end ๏‚– cake PHP 2.5 framework. ๏ฝ Back end ๏‚– Mysql-server 5.5.20
  • 6. ๏ฝ Registration ๏ฝ Login ๏ฝ Upgrade Warranty ๏ฝ Register Product ๏ฝ Check warranty details
  • 7. ๏ฝ Security ๏ฝ Reliability ๏ฝ Portability ๏ฝ Availabilitys
  • 8. User Characteristics (types of User) ๏ฝ Admin โ—ฆ Manage warranty of product related to customer โ—ฆ Manage customers, Supplier, product, product category. ๏ฝ Customer โ—ฆ End user check product's warranty details โ—ฆ Check service center details โ—ฆ feedback of product โ—ฆ Read polices and contracts
  • 9. ๏ฝ Server Side Scripting Language PHP : Hypertext Preprocessor, JavaScript Other Languages HTML, CSS (Developer side) Operating System Windows 2000, Windows Vista orWindows 7/8 Software Tools Dreamweaver (Developer side) Database MySQL (Developer side) Browser Google Chrome, Firefox, IE 6 or up, Opera, Safari Wamp server Version 2.4 (Developer side) CakePHP Version 2.5.x (Developer side)
  • 10. ๏ฝ Client Side Processor Intel core or up (min.) Hardware RAM 256MB or Higher. (min.)
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16. ๏ฝ Data dictionary 1. User- : user_mstr Purpose: User Master will store the basic information of any User and Login Sr.No Field Name Data type Constraints Description 1 USER_ID Integer Primary Key 2 USER_NAME Varchar(100) Not Null 3 PASSWORD Varchar(50) Not Null 4 ADDRESS Varchar(150) Not Null 5 ROLE Varchar(50) Not Null 6 USER_PHONE Varchar(13) 7 USER_EMAIL Varchar(50) Not Null 8 STATUS BOOLEAN Not Null 1=confirmed and 0=pending
  • 17. ๏ฝ Product Category,Product company 2. Product_Category-: product_category Purpose: Product Category will store the list of Category. Sr.No Field Name Data Type Constraints Description 1 CATEGORY_ID Integer Primary key 2 CATEGORY_NAME Varchar(50) Not Null 3. Product_Company-: product_company Purpose: Product Company will store the list of Company. Sr.No Field Name Data Type Constraints Description 1 COMPANY_ID Integer Primary key 2 COMPANY_NAM E Varchar(50) Not Null
  • 18. ๏ฝ Product master 4. Product-: product_mstr Purpose: Product Master will store the basic information of any Product Sr.No Field Name Data Type Constraints Description 1 PRODUCT_ID Integer Primary key 2 PRODUCT_NAME Varchar(50) Not Null 3 CATEGORY_ID Integer Foreign key Reference product_category 4 COMPANY_ID Integer Foreign Key Reference product_company 5 DESCRIPTION Varchar(100) 6 PRICE Float (10,2) Not Null 7 WARRANTY_PERIOD Integer(2) Not Null
  • 19. ๏ฝ Supplier master 5.Supplier-: supplier_mstr Purpose: Supplier Master will store the basic information of any Supplier Sr.No Field Name Data Type Constraints Description 1 SUPPLIER_ID Integer Primary key 2 SUPPLIER_NAME Varchar(50) Not Null 3 SUPPLIER_ADDRESS Varchar(150) Not Null 4 SUPPLIER_PHONE Varchar(13) Null 5 SUPPLIER_EMAIL Varchar(50) Null
  • 20. ๏ฝ Customer and product (master table) 6.CUSTOMER PRODUCT-: customer_product Purpose: Customer Product will store the information of customer product bill Sr.No Field Name Data Type Constraints Description 1 CUSTOMER_PRO DUCT_ID Integer Primary key 2 USER_ID Integer Foreign key Reference user_mstr table 3 PRODUCT_ID Integer Foreign key Reference product table 4 SUPPLIER_ID Integer Foreign key Reference supplier table 5 PRODUCT_PURC HASE_DATE Date Not-Null 6 PRODUCT_PURC HASE_PRICE Float(10,2) 7 PRODUCT_SERIA L_NO Varchar(15) Not-Null 8 WP_ID Integer Not-Null
  • 21. ๏ฝ Product register 7.PRODUCT REGISTER-: product_register Purpose: Product_Register will store the basic information of Product Register by customer Sr.No Field Name Data Type Constraints Description 1 PRODUCT_REG_I D Integer Primary key 2 USER_ID Integer Foreign key Reference user_mstr table 3 PRODUCT_ID Integer Foreign key Reference product table 4 SUPP_ID Integer Foreign key Reference supplier table 5 PRODUCT_SERIA L_NO Varchar(15) Not-Null 6 INVOICE_NO Integer Not-Null
  • 22. ๏ฝ Extend warranty, feedback detailed 8.Extend_Warranty-: warranty_period Purpose: Product_Register will store the basic information of Product_Register by customer Sr.No Field Name Data Type Constraints Description 1 WP_ID Integer Primary key 2 WARRANTY_ERI OD Integer 9.Feedback-: feedback_detailed Purpose: feedback_detailed will store the basic information of any Supplier Sr.No Field Name Data Type Constraints Description 1 FEEDBACK_ID Integer Primary key 2 PRODUCT_ID Integer Foreign Key Reference product_mstr 3 USER_ID Integer Foreign Key Reference user_mstr 4 COMMENT Varchar(255) Not-Null
  • 23. ๏ฝ Country,state,city 10.Country -: country_mstr Purpose: State will store the basic information of any Country Sr.No Field Name Data Type Constraints Description 1 COUNTRY_ID Integer Primary key 2 COUNTRY_NAME Varchar(100) Not_Null 11.State-: state_mstr Purpose: State will store the basic information of any Country Sr.No Field Name Data Type Constraints Description 1 STATE_ID Integer Primary key 2 STATE_NAME Varchar(100) Not_Null 3 COUNTRY_ID Integer Foreign Key Reference country_mstr 12.City-: city_mstr Purpose: City will store the basic information of any City Sr.No Field Name Data Type Constraints Description 1 CITY_ID Integer Primary key 2 CITY_NAME Varchar(100) Not_Null 3 STATE_ID Integer Foreign Key Reference state_mstr
  • 24. ๏ฝ Service center 13.Service Center-: service_center Purpose:service_center will store the basic information of any Service center Sr.No Field Name Data Type Constraints Description 1 SERVICE_CENTE R_ID Integer Primary key 2 ADDRESS1 Varchar(150) Not-Null 3 ADDRESS2 Varchar(150) Null 4 CITY_ID Integer Foreign key Reference city_mstr
  • 25. ๏ฝ Login Page ๏ฝ Dashboard ๏ฝ Transaction ๏ฝ Warranties ๏ฝ Product Master ๏ฝ Customer Master ๏ฝ Supplier Master ๏ฝ Reports
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70. ๏ฝ Model View Controller standard are use.
  • 72. ๏ฝ Unit testing, a testing technique using which individual modules are tested to determine if there are any issues by the developer himself. It is concerned with functional correctness of the standalone modules.
  • 73. Test Case ID Field Name Input value Expected Output Actual value TESTCASE01 Username Blank This field is required This field is required TESTCASE02 Password Blank This field is required This field is required TESTCASE03 Username Abc Invalid User name Failure: Incorrect username and/or password ! TESTCASE04 Password Abc Invalid password Failure: Incorrect username and/or password !
  • 74. Test Case ID Field Name Input value Expected Output Actual value TESTCASE0 1 Add product fields, user detailed, supplier detailed Blank This Field is required This Field is required TESTCASE0 2 Add product fields Some input Success : Product Save Successfully !!!! Success : Product Save Successfully !!!! TESTCASE0 3 Add user details Some input Success :user save Successfully !!!! Success :user save Successfully !!!! TESTCASE0 4 Add supplier details Some input Success :supplier save Successfully !!!! Success :supplier save Successfully !!!! TESTCASE0 5 Update product fields, user detailed, supplier detailed Blank This field is required This field is required TESTCASE0 6 Update product fields Some value change SUCCESS: Product Updated Successfully !!!! SUCCESS: Product Updated Successfully !!!! TESTCASE0 7 Update supplier detailed Some valu change SUCCESS: supplier Updated Successfully !!!! SUCCESS: supplier Updated Successfully !!!!
  • 75. ๏ฝ Surfing Speed Cake php is reading hundreds if not thousands of different files in hundreds of folders for every single visitor thatโ€™s on your site. ๏ฝ Continues internet requirement ๏ฝ A user must continuous requirement of internet connection ๏ฝ Does not good layout in less ie7.