Supermarket Billing System
Supermarket Billing System
#include<iostream>
#include<conio.h>
#include<stdio.h>
#include<process.h>
#include<fstream>
#include<stdlib.h>
class product
int pno;
char name[50];
float price,qty,tax,dis;
public:
void create_product()
{ system("cls");
cin>>pno;
cout<<"\n\nPlease Enter The Name of The Product ";
cin>>name;
cin>>price;
cin>>dis;
void show_product()
{ system("cls");
puts(name);
cout<<"\nDiscount : "<<dis;
int retpno()
{return pno;}
float retprice()
{return price;}
char* retname()
{return name;}
int retdis()
{return dis;}
};
fstream fp;
product pr;
void write_product()
{ system("cls");
fp.open("Shop.dat",ios::out|ios::app);
pr.create_product();
fp.write((char*)&pr,sizeof(product));
fp.close();
getch();
void display_all()
{ system("cls");
fp.open("Shop.dat",ios::in);
while(fp.read((char*)&pr,sizeof(product)))
pr.show_product();
cout<<"\n\n====================================\n";
getch();
}
fp.close();
getch();
void display_sp(int n)
{ system("cls");
int flag=0;
fp.open("Shop.dat",ios::in);
while(fp.read((char*)&pr,sizeof(product)))
if(pr.retpno()==n)
{ system("cls");
pr.show_product();
flag=1;
fp.close();
if(flag==0)
getch();
void modify_product()
int no,found=0;
system("cls");
cin>>no;
fp.open("Shop.dat",ios::in|ios::out);
if(pr.retpno()==no)
pr.show_product();
cout<<"\nPlease Enter The New Details of
Product"<<endl;
pr.create_product();
int pos=-1*sizeof(pr);
fp.seekp(pos,ios::cur);
fp.write((char*)&pr,sizeof(product));
found=1;
fp.close();
if(found==0)
getch();
void delete_product()
int no;
system("cls");
cout<<"\n\n\n\tDelete Record";
cin>>no;
fp.open("Shop.dat",ios::in|ios::out);
fstream fp2;
fp2.open("Temp.dat",ios::out);
fp.seekg(0,ios::beg);
while(fp.read((char*)&pr,sizeof(product)))
if(pr.retpno()!=no)
fp2.write((char*)&pr,sizeof(product));
fp2.close();
fp.close();
remove("Shop.dat");
rename("Temp.dat","Shop.dat");
getch();
}
void menu()
{ system("cls");
fp.open("Shop.dat",ios::in);
if(!fp)
getch();
exit(0);
cout<<"\n\n\t\tProduct MENU\n\n";
cout<<"==================================================
==\n";
cout<<"P.NO.\t\tNAME\t\tPRICE\n";
cout<<"==================================================
==\n";
while(fp.read((char*)&pr,sizeof(product)))
cout<<pr.retpno()<<"\t\t"<<pr.retname()<<"\t\t"<<pr.retprice()<<en
dl;
fp.close();
void place_order()
{ system("cls");
int order_arr[50],quan[50],c=0;
float amt,damt,total=0;
char ch='Y';
menu();
cout<<"\n============================";
cout<<"\n PLACE YOUR ORDER";
cout<<"\n============================\n";
do{
cin>>order_arr[c];
cin>>quan[c];
c++;
cin>>ch;
}while(ch=='y' ||ch=='Y');
cout<<"\n\n********************************INVOICE*******
*****************\n";
for(int x=0;x<=c;x++)
fp.open("Shop.dat",ios::in);
fp.read((char*)&pr,sizeof(product));
while(!fp.eof())
{
if(pr.retpno()==order_arr[x])
amt=pr.retprice()*quan[x];
damt=amt-(amt*pr.retdis()/100);
cout<<"\n"<<order_arr[x]<<"\t"<<pr.retname()<<"\t"<<quan[x]<<"\t
\t"<<pr.retprice()<<"\t"<<amt<<"\t\t"<<damt;
total+=damt;
fp.read((char*)&pr,sizeof(product));
fp.close();
cout<<"\n\n\t\t\t\t\tTOTAL = "<<total;
getch();
cout<<"\n\n\t\t";
void intro()
system("cls");
gotoxy(31,11);
gotoxy(35,14);
cout<<"\nBILLING";
gotoxy(35,17);
cout<<"\nPROJECT";
getch();
}
void admin_menu()
system("cls");
char ch2;
cout<<"\n\n\n\tADMIN MENU";
cout<<"\n\n\t1.CREATE PRODUCT";
cout<<"\n\n\t3.QUERY ";
cout<<"\n\n\t4.MODIFY PRODUCT";
cout<<"\n\n\t5.DELETE PRODUCT";
ch2=getche();
switch(ch2)
case '1':system("cls");
write_product();
break;
int num;
cin>>num;
display_sp(num);
break;
getch();
default:cout<<"\a";admin_menu();
int main()
{
char ch;
intro();
do
cout<<"\n\n\n\tMAIN MENU";
cout<<"\n\n\t01. CUSTOMER";
cout<<"\n\n\t02. ADMINISTRATOR";
cout<<"\n\n\t03. EXIT";
ch=getche();
switch(ch)
case '1':system("cls");
place_order();
getch();
break;
break;
case '3':break;
default :cout<<"\a";
}
}while(ch!='3');
return 0;