Skip to main content

Home appliances online purchase

Home appliances online purchase
Abstract:
An online purchase system that permits a customer to submit online orders for items from a store that serves both walk-in customers and online customers. Online purchase is always better and smarter way to spend our money. The online purchase system presents an online display of an order and an associated delivery window for items selected by the customer. The system accepts the customer's submission of a purchase order for the item in response to a time of submission. This system does not settle with a credit supplier of the customer until the item selected by the customer is picked from inventory but before it is delivered. Therefore, the customer can go online and make changes to the order if that ordered item does not available in a store. Online purchases by type of product are then examined to illustrate how the Internet has become both a complement to, and a substitute for, traditional retail. Online purchase is quick and easy as the wide range of products are categorized in a very convenient and user friendly manner.  The results of this system also indicated a significant mean difference between online shoppers and non-online shoppers in gathering product information and comparing price of products before a purchase decision.

Existing system:

The existing system is done by manually, the customer has to enter the details of the products which they want to order and the shopkeeper has to go through it and calculate the amount of the products which had been ordered by the customers. This process will take long time. So, existing system is the time-consuming process for many peoples. In this situation they need the computerization of ordering products. The main drawback of existing system is taking long time for billing reports.

Proposed System:

          The proposed system will prove to be a boon to the use because once the data has been entered correctly sorting and retrieval of data will be done in any efficient manner of the system. The proposed system overcomes all the shortcomings the systems are fully integrated to achieve a compact & interactive system. The system is fully menu driven and used wish the easy by anyone ever with the slight test knowledge of computers.
 The proposed system has validation of data at every stage of data capture. The very purpose of computerization is general is to replace paper work, improve productivity and accuracy, economic expenditure and to provide quick services. Maintaining a hierarchy in the data and avoiding redundancy of data.
MODULES:

Ā© Appending products details
Ā© Customer registration
Ā© Order processing information
Ā© Credit card system

Module description:
Appending products details:
          Administrator can take an important role in this module. They can able to add new products to online system. All the products are categorized by administrator. They have to append price details, stock details and item details of all products to online. Administrator has rights to add and delete product details in online. They have to maintain all order details of each customer.

Customer registration:

          One should get registered to purchase their desired products. One can get registered by giving there personal details such as personal details, login details and credit card details. Their username and password can be used to access their account. Through login they can make online purchase.
Order processing information:
          After login, customer can make order by viewing product details through item menus. Once the order completed, immediately all the unit price details, discounts if any and grand total are generated by the system. All these details are viewed to customers. Then customers have to confirm those ordered products for purchase. If any product is missing, it will be detected by system and customers have to exchange that product.

Credit card system:
          Customers have to purchase their ordered items through credit cards. After the order has been confirmed, the voucher for will be automatically created by system. It also asks credit card details of customers to purchase their orders. We have to check the credit card details of particular customer and give a response to customer.




Hardware Required:

v System                       :           Pentium IV 2.4 GHz
v Hard Disk                 :           40 GB
v Floppy Drive            :           1.44 MB
v Monitor                    :           15 VGA colour
v Mouse                        :           Logitech.
v Keyboard                  :           110 keys enhanced.
v RAM                          :           256 MB


 

S/W System Configuration

v   Operating System               :   Windows 95/98/2000/NT4.0.
v   Application  Server  :   Wamp2.2e

v   Front End                               :   HTML, PHP.
v   Scripts                                    :   JavaScript.
v   Server side Script                :   PHP.
v   Database                               :   Mysql.
v   Database Connectivity       :   PhpMyAdmin.


         


Comments

Popular posts from this blog

PUNCHING MACHINE

ACCIDENT AVOIDING SYSTEM FOR PUNCHING MACHINE SYNOPSIS The aim of our project is to take a system-wide approach to preventing the machine accident. The system includes not just the machine and the operator; but rather, it includes everything from the initial design of the machine to the training of everyone that is responsible for any aspect of it, to the documentation of all changes, to regular safety audits and a finally a corporate culture of safety-first. Design is the part of a machine's life where the greatest impact can be made in relation to avoiding accidents. The designer should ensure that the machine is safe to set up and operate, safe to install, safe to maintain, safe to repair, and safe to decommission. Although safe operation is usually at the forefront of a designer's mind, safe maintenance and repair should also be a high priority. Around 50% of fatal accidents involving industrial equipment are associated with maintenance activities, and design...

garbage monitoring using arduino code with gsm

#include <SoftwareSerial.h> #include <LiquidCrystal.h> //LiquidCrystal lcd(7, 6, 5, 4, 3, 2); LiquidCrystal lcd(13, 12, 11, 10, 9, 8); SoftwareSerial mySerial(0,1); #define trigPin 2 #define echoPin 3 #define PIR_sensor 4 #define m11 5 #define m12 6 void setup() {    lcd.begin(16, 2);    lcd.print("    Garbage    ");    Serial.println("garbage ");   lcd.setCursor(0,1);   lcd.print("   Open Close    ");   Serial.println(" open close");   delay(3000);   lcd.clear();   //lcd.print(" ");   delay(2000); mySerial.begin(9600); // Setting the baud rate of GSM Module Serial.begin (9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT);  pinMode(m11, OUTPUT);   pinMode(m12, OUTPUT);   } void loop() {  readPIR();  pingDist();  SendMessage(); } void pingDist ()   {     long duration, distance;...