Download presentation
Presentation is loading. Please wait.
Published byRobyn Daniels Modified over 8 years ago
1
IFET COLLEGE OF ENGINEERING DEPARTMENT OF ECE Web Based Tool Management System Presented by Pravina.R Final year/ECE 421112106132 Guided by Mr.M.Arul Pugazhendhi M.E,M.B.A., Senior Assistant professor ECE Department
2
ABSTRACT Tool management system is an automated and standardized manner for the tools. The system used in the service sectors and admin in an organization. The system developed to make use of rich tools available in the organization. The longer in the lifetime of software, more bugs will be exposed.
3
EXISTING SYSTEM To manage the tool in an organization by ordering the tools manually to suppliers. Need of requirement are noted in the MS Office software. There may exist some inconsistencies when they use spreadsheet document. Companies are slow realizing that they can't get accurate results, when they manage the tools.
4
BLOCK DIAGRAM Master tool, add tool list & search Available tool& tool specification Tool request, Purchaser Tracking, Tool Supplier Document/Sprea dsheet Person who have document can able to update & work on it Manual process
5
PROPOSED SYSTEM Tool management system is able to deliver access to anyone authorized by an organization. Motivation to develop the project, there is no need of manual process to search tools in database and stock maintenance for the tools which are used in an organization. This software can be used to plan, review, order the required tools, update and check the available tools in an organization. 5
6
BLOCK DIAGRAM Master tool, add tool list & search Available tool& tool specification Tool request, Purchaser Tracking, Tool Supplier Web services Web Application Visual studio 2010 with SQL server
7
CONT.… After completing the entire tool management system, all customer details and ordered list are collected in master tool list. Analysis report can clearly explain the current status of the company by pictorial representations such as pie chart, bar graph etc., Finally this software can generate a PDF file which consists of entire analysis report of the particular company. 7
8
PHASES OF PROJECT Front End Development. Master Tool List. Supplier Tool List. Tracking and Search Tool List.
9
NEED FOR PROGRAMMING… HTML CSS JavaScript My SQL Asp. Net
10
NEED FOR PROGRAMMING… HTML is markup for formatting apage. It is not real programming languages. CSS is the rules set for telling the browser how to display the HTML formatted content. It also not a Programming languages. Mostly HTML and JavaScript are used for front end to design the website.
11
JavaScript is a programming languages you use it to make the website interactive. JavaScript is used for front end development like dynamically assigning IDS and classes. It is scripting language that’s run locally on user’s browser allowing webpages to responds to user interaction such client element and timing events. NEED FOR PROGRAMMING…
12
My SQL is a free, open source database server. It is not a programming language but it is a new language to learn is you want to talk to database, so it is a key component of modern website. My SQL is actually command line language, there are common GUL tools available. ASP.NET is Microsoft’s contribution to web language area predictably popular in corporation environment and nowhere else. NEED FOR PROGRAMMING…
13
PROCEDURE…. procedure_read_sup: CREATE PROCEDURE dbo.procedure_read_sup AS BEGIN select * from table_supplier; END procedure_store: CREATE PROCEDURE dbo.procedure_store AS BEGIN Select * from table_tools; END
14
PROCEDURE…. procedure_supplier: CREATE PROCEDURE dbo.procedure_supplier @SupplierName nchar(10)=null, @Address nchar(10)=null, @PhNo nchar(10)=null, @ContactEmailId nchar(10)=null, @Fax nchar(10)=null, @SupplierCode nchar(10)=null AS BEGIN insert into table_supplier values(@SupplierName, @Address, @PhNo, @ContactEmailId, @Fax, @SupplierCode); END
15
PROCEDURE…. procedure_tool: CREATE PROCEDURE dbo.procedure_tool @Action varchar(10), @ToolType nchar(10)=null, @Category nchar(10)=null, @Calibration nchar(10)=null, @Manufacturer nchar(10)=null, @MakeModel nchar(10)=null, @Standard nchar(10)=null, @Account nchar(10)=null, @WhereUsed nchar(10)=null,
16
CONT.… @Feature nchar(10)=null, @HarmonizeCode nchar(10)=null, @Weight nchar(10)=null @Dimension nchar(10)=null, @LeadTime nchar(10)=null, @Life nchar(10)=null, @Supplier nchar(10)=null AS Begin SET NOCOUNT ON IF @Action = 'SELECT' BEGIN
17
CONT.…. SELECT * from table_tools; END IF @Action = 'INSERT' BEGIN INSERT INTO table_tools values (@ToolType,@Category,@Calibration,@Manufacturer,@MakeModel,@St andard,@Account,@WhereUsed,@Feature,@HarmonizeCode,@weight,@ Dimension,@leadTime,@life,@supplier);END IF @Action = 'UPDATE' BEGIN UPDATE Customers
18
CONT.…. SET Category=@Category,Calibration=@Calibration,Manufacturer=@Man ufacturer,MakeModel=@MakeModel,Standard=@Standard,Account=@ Account,WhereUSed=@WhereUsed,Feature=@Feature,Harmonize=@ HarmonizeCode,Weight=@weight,Dimension=@Dimension,LeadTime= @LeadTime,Life=@Life,Supplier=@Supplier WHERE ToolType = @; END
19
TECHNICAL REQUIREMENTS Front end: ASP.NET Back end: SQL database 2008 Tool: Microsoft Visual Studio 2010 Language used: C# (C sharp) 19
20
THANK YOU
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.