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
|
#include <fstream>
#include <iomanip>
#include <iostream>
#include <string>
void getData(ifstream &input)
{
if (input.is_open())
{
input.close();
input.open("order.txt");
input.seekg(inputPos, input.beg);
input >> firstName >> middleName;
input.get();
getline(input, lastName);
input >> numBooks >> numMovies >> poundsPeanuts;
inputPos = input.tellg();
input.close();
}
else
{
input.open("order.txt");
input.seekg(inputPos, input.beg);
input >> firstName >> middleName;
input.get();
getline(input, lastName);
input >> numBooks >> numMovies >> poundsPeanuts;
inputPos = input.tellg();
input.close();
}
}
void printHeader(ofstream &output)
{
if (output.is_open())
{
output.close();
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << "Customer: " << lastName << ", " << firstName << " " << middleName << endl;
output << setw(50) << setfill('-') << "" << endl;
output << setw(9) << left << setfill(' ') << "PRODUCT";
output << setw(7) << right << "COST";
output << setw(7) << "UNITS";
output << setw(10) << "SUBTOTAL";
output << setw(10) << "SHIPPING";
output << setw(7) << "TOTAL" << endl;
output.close();
}
else
{
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << "Customer: " << lastName << ", " << firstName << " " << middleName << endl;
output << setw(50) << setfill('-') << "" << endl;
output << setw(9) << left << setfill(' ') << "PRODUCT";
output << setw(7) << right << "COST";
output << setw(7) << "UNITS";
output << setw(10) << "SUBTOTAL";
output << setw(10) << "SHIPPING";
output << setw(7) << "TOTAL" << endl;
output.close();
}
}
void printBooks(ofstream &output)
{
if (output.is_open())
{
output.close();
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Books";
output << setw(7) << right << PER_BOOK_COST;
output << setw(7) << numBooks;
subtotalBooks = calcSubtotalBooks(numBooks);
output << setw(10) << subtotalBooks;
shippingBooks = calcShippingBooks(numBooks);
output << setw(10) << shippingBooks;
totalBooks = subtotalBooks + shippingBooks;
output << setw(7) << totalBooks << endl;
output.close();
}
else
{
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Books";
output << setw(7) << right << PER_BOOK_COST;
output << setw(7) << numBooks;
subtotalBooks = calcSubtotalBooks(numBooks);
output << setw(10) << subtotalBooks;
shippingBooks = calcShippingBooks(numBooks);
output << setw(10) << shippingBooks;
totalBooks = subtotalBooks + shippingBooks;
output << setw(7) << totalBooks << endl;
output.close();
}
}
void printMovies(ofstream &output)
{
if (output.is_open())
{
output.close();
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Movies";
output << setw(7) << right << PER_MOVIE_COST;
output << setw(7) << numMovies;
subtotalMovies = calcSubtotalMovies(numMovies);
output << setw(10) << subtotalMovies;
shippingMovies = calcShippingMovies(subtotalMovies);
output << setw(10) << shippingMovies;
totalMovies = subtotalMovies + shippingMovies;
output << setw(7) << totalMovies << endl;
output.close();
}
else
{
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Movies";
output << setw(7) << right << PER_MOVIE_COST;
output << setw(7) << numMovies;
subtotalMovies = calcSubtotalMovies(numMovies);
output << setw(10) << subtotalMovies;
shippingMovies = calcShippingMovies(subtotalMovies);
output << setw(10) << shippingMovies;
totalMovies = subtotalMovies + shippingMovies;
output << setw(7) << totalMovies << endl;
output.close();
}
}
void printPeanuts(ofstream &output)
{
if (output.is_open())
{
output.close();
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Peanuts";
output << setw(7) << right << PER_POUND_COST;
output << setw(7) << poundsPeanuts;
subtotalPeanuts = calcSubtotalPeanuts(poundsPeanuts);
output << setw(10) << subtotalPeanuts;
shippingPeanuts = calcShippingPeanuts(poundsPeanuts);
output << setw(10) << shippingPeanuts;
totalPeanuts = subtotalPeanuts + shippingPeanuts;
output << setw(7) << totalPeanuts << endl;
output.close();
}
else
{
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
output << setw(9) << left << "Peanuts";
output << setw(7) << right << PER_POUND_COST;
output << setw(7) << poundsPeanuts;
subtotalPeanuts = calcSubtotalPeanuts(poundsPeanuts);
output << setw(10) << subtotalPeanuts;
shippingPeanuts = calcShippingPeanuts(poundsPeanuts);
output << setw(10) << shippingPeanuts;
totalPeanuts = subtotalPeanuts + shippingPeanuts;
output << setw(7) << totalPeanuts << endl;
output.close();
}
}
void printFooter(ofstream &output)
{
if (output.is_open())
{
output.close();
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
totalSale = totalMovies + totalPeanuts + totalBooks;
output << setw(50) << right << totalSale << endl;
output << setw(50) << setfill('-') << "" << endl << endl;
output << setfill(' ');
output.close();
}
else
{
output.open("Sales.txt", ios::app);
output << setprecision(2) << fixed << showpoint;
totalSale = totalMovies + totalPeanuts + totalBooks;
output << setw(50) << right << totalSale << endl;
output << setw(50) << setfill('-') << "" << endl << endl;
output << setfill(' ');
output.close();
}
}
void printData(ofstream &output)
{
printHeader(output);
printBooks(output);
printMovies(output);
printPeanuts(output);
printFooter(output);
}
|