1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
class orderSystem
{
protected:
int order,ch,choice,total=0;
string y, ye;
public:
void menu();
void Time();
void show();
};
void orderSystem::Time()
{
time_t t = time(NULL);
tm* timePtr = localtime(&t);
const char * weekday[] = { "Sunday", "Monday",
"Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday"};
const char * month[] = { "Jan", "Feb","Mar", "Apr", "May", "June", "July", "Aug", "Sep", "Oct", "Nov", "Dec"};
mktime(timePtr);
cout << timePtr->tm_hour<<":";
cout << timePtr->tm_min;
cout << weekday[timePtr->tm_wday]<<" ";
cout << month[timePtr->tm_mon]<<" ";
cout << timePtr->tm_mday<<" "; //day of the month
cout << timePtr->tm_year+1900 << endl;
}
void orderSystem::menu()
{
string fname, lname;
char hnum[MAX_HNUM], street[MAX_STREET], city[MAX_CITY];
int postal;
fstream file;
file.open("Daily.txt", ios::in | ios::out | ios::app);
if(!file)
{
cout<<"Error in creating file.."<<endl;
exit (-1);
}
ofstream write;
write.open("RecentOrderReceipt.txt");
if(!write)
{
cout<<"file can not open"<<endl;
exit (-1);
}
menu:
cout<<"\n\n\tOne order at a time, Maximum of 10 order per person." <<endl;
cout<<"\tENTER YOUR ORDER: ";
cin>>ch;
switch(ch)
{
case 1:
cout<<"\n\n\tHOW MANY Lemon Pepper Wings YOU WANT :";
cin>>order;
total=total+144*order;
cout<<"\n\n\tLemon Pepper Wings : Php 144.00"<<endl;
cout<<"\t QUANTITY: "<<order<<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Lemon Pepper Wings : Php 144.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Lemon Pepper Wings - 144 x " <<order<<endl;
cout<<"\n\tYOU ORDERED Lemon Pepper Wings"<<endl
<<"\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 2:
cout<<"\n\n\tHOW MANY Bufallo Wings do you want? :";
cin>>order;
total=total+144*order;
cout<<"\n\n\tBuffalo Wings : Php 144.00"<<endl;
cout<<"\tQuantity: "<<order<<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Buffalo Wings : Php 144.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Buffalo Wings - 144 x " <<order<<endl;
cout<<"\n\n\n\tYOU ORDER Buffalo Wings "<<endl
<<"\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 3:
cout<<"\n\n\tHOW MANY Teriyaki Wings YOU WANT :";
cin>>order;
total=total+144*order;
cout<<"\n\n\tTeriyaki Wings : Php 144.00"<<endl;
cout<<"\tQuantity: "<<order<<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Teriyaki Wings: Php 144.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Teriyaki Wings - 144 x " <<order<<endl;
cout<<"\n\n\n\t\t\tYOU ORDER Teriyaki Wings "<<endl
<<"\t\t\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 4:
cout<<"\n\n\tHOW MANY Spaghetti YOU WANT :";
cin>>order;
total=total+75*order;
cout<<"\n\n\tSpaghetti : Php 75.00"<<endl;
cout<<"\tQuantity: "<<order<<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Spaghetti: Php 75.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Spaghetti - 75 x " <<order<<endl;
cout<<"\n\n\n\t\t\tYOU ORDER Spaghetti "<<endl
<<"\t\t\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 5:
cout<<"\n\n\tHOW MANY Fries YOU WANT:";
cin>>order;
total=total+44*order;
cout<<"\n\n\tFries: Php 44.00"<<endl;
cout<<"\tQuantity: "<<order<<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Fries : Php 44.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Fries - 44 x " <<order<<endl;
cout<<"\n\n\n\t\t\tYOU ORDER Fries "<<endl<<"\t\t\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 6:
cout<<"\n\n\tHOW MANY Iced Tea YOU WANT :";
cin>>order;
total=total+45*order;
cout<<"\n\n\tIced Tea: Php 45.00";
cout<<" \n";
cout<<"\tQuantity: "<<order;
cout<<"\n";
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Iced Teaa: Php 45.00";
write<<" \n";
write<<"\tQuantity: "<<order;
write<<"\n";
file<<"Iced Tea - 45 x " <<order;
file<<"\n";
cout<<"\n\n\n\t\t\tYOU ORDER Iced Tea "<<endl<<"\t\t\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 7:
cout<<"\n\n\tHOW MANY Soda YOU WANT :";
cin>>order;
total=total+40*order;
cout<<"\n\n\tSoda: Php 40.00" <<endl;
cout<<"\tQuantity: "<<order <<endl;
cout<<"\n\t\tSubtotal: " <<total <<endl;
write<<"Soda: Php 40.00"<<endl;
write<<"\tQuantity: "<<order<<endl;
file<<"Soda - 40 x " <<order<<endl;
cout<<"\n\n\n\t\t\tYOU ORDER Soda "<<endl<<"\t\t\tYOUR ORDER SUCCESSFULLY SAVED "<<endl;
break;
case 8:
cout<<"\n\t\t\t\t\t THANK YOU FOR USING OUR ORDERING SYSTEM!!";
exit(0);
break;
default:
cout<<"\n\n\t\t\t\t\t\t\tYOU ENTER WRONG ORDER KEY !!!!! "<<endl;
break;
}
cout<<"\n\tDO YOU WANT ANOTHER ORDER (yes/no): ";
cin>>y;
if(y=="yes"|| y=="YES")
{
goto menu;
}
else
{
billout:
system("cls");
cout<<"\n\tTHANK YOU FOR YOUR ORDER :) "<<"GENERATING BILL "<<endl;
cout<<endl;
cout<<"\n\tENTER YOUR NAME (First name, Last name): ";
cin>>fname >>lname;
cout<<"\n\tENTER THE HOUSE NUMBER: ";
cin.ignore();
cin.getline(hnum,MAX_HNUM);
cout<<"\n\tENTER THE STREET: ";
cin.getline(street, MAX_STREET);
cout<<"\n\tENTER THE CITY: ";
cin.getline(city,MAX_CITY);
cout<<"\n\tENTER POSTAL ID: ";
cin>>postal;
cout<<endl;
cout<<"\n";
write<<"\nNAME: "<<fname <<" "<<lname<<endl;
write<<"ADDRESS: "<<hnum <<" "<< street <<" St. "<< city <<" "<<postal<<" " <<endl<<endl;
write<<"TOTAL BILL IS : "<<total<<endl;
write.close();
file<<"\nNAME:"<<fname <<" "<<lname<<endl;
file<<"ADDRESS: "<<hnum <<" "<< street <<" St. "<< city <<" " <<postal<<" " <<endl<<endl;
file<<"TOTAL BILL IS : "<<total<<endl;
file<<"--------------------------------------------------------------------------------"<<endl;
file.close();
for(int a=1;a<10;a++) // Change 'a<?' to how many * you want
{
Sleep(500);
cout << "...";
}
cout<<"\n\t\t\t\t\t\t\t";
system("cls");
cout<< "================================================================================================="<<endl;
cout<< " Food Ordering System "<<endl;
cout<< "================================================================================================="<<endl;
cout<< endl;
cout<< endl;
Time();
cout<< "NAME:"<<fname <<" " <<lname <<endl;
cout<< "ADDRESS: "<<hnum[MAX_HNUM] <<" "<< street[MAX_STREET] <<" Street "<< city[MAX_CITY] <<" " <<postal<<" " <<endl;
cout<< endl;
cout<< "The orders is already in the file."<<endl;
cout<< "TOTAL BILL: "<<total<<endl;
cout<< "================================================================================================="<<endl;
getch();
}
system("cls");
order-=10;
total-=total;
show();
}
|