-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCABLE MANAGEMENT.CPP
537 lines (524 loc) · 10.7 KB
/
CABLE MANAGEMENT.CPP
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
#include<fstream.h>
#include<conio.h>
#include<process.h>
#include<stdlib.h>
#include<string.h>
#include<iomanip.h>
#include<stdio.h>
#include<graphics.h>
#include<dos.h>
void intro();
int count=0;
void owner();
void product();
void order_menu();
void all_rec();
void place_order();
void check_order();
void modify_order();
void intro();
void delete_order();
class wcompany
{
public:
int ccode,wcore,wsize,wlen,ono;
char wtype[20],wcolour[20],cname[20];
void get_order()
{
clrscr();
cout<<"\n Enter customer's code";
cin>>ccode;
cout<<"\n Enter customer's name";
gets(cname);
cout<<"\n Enter customer's order";
cout<<"\n Enter the type of wire";
gets(wtype);
cout<<"\n Enter the number of core of wire";
cin>>wcore;
cout<<"\n Enter the size of wire";
cin>>wsize;
cout<<"\n Enter the colour of the wire";
gets(wcolour);
cout<<"\n Enter the length of wire you want";
cin>>wlen;
}
void put_order()
{
cout<<ccode<<setw(16)<<cname<<setw(11)<<wtype<<setw(7)<<wcore<<setw(12)<<wsize<<
setw(11)<<wcolour<<setw(6)<<wlen<<setw(10)<<ono<<endl;
}
void modify()
{
clrscr();
int ccode1,wcore1,wsize1,wlen1,ono1;
char wtype1[20],wcolour1[20];
/*cout<<"\n Enter customer's new code";
cin>>ccode;
cout<<"\n Enter customer's name";
gets(cname); */
cout<<"\n Enter customer's new order";
cout<<"\n Enter the type of wire:(Enter'.'to retain old one)";
gets(wtype1);
cout<<"\n Enter the number of core of wire:(Enter'.'to retain old one)";
cin>>wcore1;
cout<<"\n Enter the size of wire:(Enter'.'to retain old one)";
cin>>wsize1;
cout<<"\n Enter the colour of the wire:(Enter'.'to retain old one)";
gets(wcolour1);
cout<<"\n Enter the length of wire you want:(Enter'.'to retain old one)";
cin>>wlen1;
//if(strcmp(wtype1,'.')!=0)
strcpy(wtype,wtype1);
//if(strcmp(wcolour1,'.')!=0)
strcpy(wcolour,wcolour1);
wcore=wcore1;
wsize=wsize1;
wlen=wlen1;
}
/*wcompany()
{
ccode=0;
ono=0 ;
}*/
};
void show_column()
{
cout<<"====================================================\n";
cout<<"Cust. No."<<setw(7)<<"Name"<<setw(12)<<"wire type"<<setw(8)<<"core"<<setw(14)<<"wiresize"<<
setw(8)<<"colour"<<setw(8)<<"length"<<setw(14)<<"order no.\n";
cout<<"====================================================\n";
}
void welcome_screen()
{
clrscr();
char ch;
gotoxy(15,10);
cout<<"******************* W E L C O M E ********************* ";
gotoxy(25,12);
cout<<"*** *** " ;
gotoxy(15,14);
textcolor(WHITE);
cout<<" W I R E D E A L E R M A N A G E M E N T S O F T W A R E ";
gotoxy(33,16);
textcolor(WHITE);
cout<<" D O N E B Y : ";
gotoxy(45,18);
cout<<" Gaurav Narula";
gotoxy(25,20);
cout<<"";
textcolor(WHITE);
gotoxy(35,30);
cout<<" *** PRESS ANY KEY TO CONTINUE ***";
getch();
}
void search_code()
{
clrscr();
int ono1,found=0;
wcompany c;
cout<<"\n";
cout<<"\t\t\t*-----------*"<<"\n";
cout<<"\t\t\t| SEARCHING |"<<"\n";
cout<<"\t\t\t*-----------*"<<"\n"<<"\n";
ifstream fin;
fin.open("wire.dat",ios::in|ios::binary);
if(!fin)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
cout<<"\n\tENTER THE CUSTOMER NUMBER TO BE SEARCHED :";
cin>>ono1;
while(fin)
{
fin.read((char*)&c,sizeof(c));
if(c.ono==ono1)
{
found=1;
break;
}
}
}
fin.close();
if(found==0)
{
cout<<"\n\t Order not found";
getch();
}
else
{
cout<<"\n Order found";
cout<<"\n the order is:\n";
show_column();
c.put_order();
getch();
}
owner();
}
void owner()
{
clrscr();
char ch2;
cout<<"\n\n\n\tOWNER MENU";
cout<<"\n\n\t1.ADD RECORD";
cout<<"\n\n\t2.MODIFY RECORD";
cout<<"\n\n\t3.DELETE RECORD";
cout<<"\n\n\t4.SEARCH CUSTOMER RECORD";
cout<<"\n\n\t5.ALL RECORD";
cout<<"\n\n\t6.BACK TO MAIN MENU";
cout<<"\n\n\tPlease Enter Your Choice : ";
cin>>ch2;
switch(ch2)
{
case '1': place_order();
break;
case '2': modify_order();
break;
case '3': delete_order();
break;
case '4': search_code();
break;
case '5': all_rec();
break;
case '6': intro();
break;
}
}
void all_rec()
{
clrscr();
wcompany c;
ifstream fin;
fin.open("wire.dat",ios::in|ios::binary);
if(!fin)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
show_column();
while(!fin.eof())
{
fin.read((char*)&c,sizeof(c));
c.put_order();
}
fin.close();
}
getch();
owner();
}
void place_order()
{
wcompany c;
char ch='y';
ifstream fin;
fin.open("wire.dat",ios::binary|ios::in);
if(!fin)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
while(!fin.eof())
{
fin.read((char*)&c,sizeof(c));
count++;
}
}
fin.close();
fstream fout;
fout.open("wire.dat",ios::binary|ios::app);
while(ch=='y'||ch=='Y')
{
clrscr();
fout.seekp(-1*sizeof(c),ios::cur);
fout.read((char*)&c,sizeof(c));
count=c.ono;
c.get_order();
c.ono=count+1;
fout.seekp(0,ios::end);
fout.write((char*)&c,sizeof(c));
cout<<"\n Order added";
cout<<"\n order number:"<<c.ono;
cout<<"\n want to enter more orders????";
cin>>ch;
getch();
}
fout.close();
owner();
}
void check_order()
{
clrscr();
wcompany c;
int ono,found=0;
ifstream fin;
fin.open("wire.dat",ios::in|ios::binary);
if(!fin)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
while(fin)
{
fin.read((char*)&c,sizeof(c));
if(c.ono==ono)
{
found=1;
break;
}
}
}
fin.close();
if(found==0)
cout<<"\n\t Order not placed";
else
{
cout<<"\n Order placed";
cout<<"\n The order is:";
show_column();
c.put_order();
getch();
}
order_menu();
}
void modify_order()
{
clrscr();
wcompany c;
fstream fio("wire.dat",ios::in|ios::out|ios::binary);
int ono,location,flag=0;
long pos;
char found='f';
if(!fio)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
cout<<"\n Enter the Order number of customer you want to modify";
cin>>ono;
while(!fio.eof())
{
pos=fio.tellg();
fio.read((char*)&c,sizeof(c));
if(c.ono==ono)
{
c.modify();
fio.seekg(pos);
fio.write((char*)&c,sizeof(c));
found='t';
break;
}
}
if(found=='f')
cout<<"\n\t Order not exist";
fio.seekg(0);
cout<<"\n now the file contains\n";
show_column();
while(!fio.eof())
{
fio.read((char*)&c,sizeof(c));
c.put_order();
getch();
}
fio.close();
fstream f;
f.open("wire.dat",ios::binary|ios::in|ios::out);
if(!f)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
cout<<"\n Enter the Order number of customer you want to modify";
cin>>ono;
while(f)
{
f.read((char*)&c,sizeof(c));
if(c.ono==ono)
{
flag=1;
break;
}
}
if(flag==0)
cout<<"\n\t Order not exist";
else
{
f.seekg(0,ios::beg);
while(f)
{
f.read((char*)&c,sizeof(c));
if(c.ono==ono)
{
cout<<"\n Enter the new details";
c.modify();
c.get_order();
location=f.tellg()-sizeof(c);
cout<<location;
f.seekg(location,ios::cur);
f.write((char*)&c,sizeof(c));
cout<<"\n order modified";
getch();
}
}
}
}
f.close();
owner();
}
void delete_order()
{
clrscr();
wcompany c;
int ono,flag=0;
ifstream fin;
ofstream fout;
fin.open("wire.dat",ios::in|ios::binary);
fout.open("temp.dat",ios::binary|ios::app);
if(!fin)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN\n\n\n Go To Entry Menu to create File";
cout<<"\n\n\n Program is closing ....";
getch();
exit(1);
}
else
{
cout<<"\n Enter the Order number of customer you want to delete";
cin>>ono;
while(fin)
{
fin.read((char*)&c,sizeof(c));
if(c.ono==ono)
{
flag=1;
break;
}
}
if(flag==0)
cout<<"\n\t Order not exist";
else
{
fin.seekg(0,ios::beg);
while(fin)
{
fin.read((char*)&c,sizeof(c));
if(c.ono!=ono)
fout.write((char*)&c,sizeof(c));
}
cout<<"\n Order deleted!!!";
}
getch();
}
fin.close();
fout.close();
remove("wire.dat");
rename("temp.dat","wire.dat") ;
owner();
}
void order_menu()
{
clrscr();
char ch2;
cout<<"\n\n\n\t CUSTOMER ORDER MENU";
cout<<"\n\n\t1.PLACE ORDER";
cout<<"\n\n\t2.CHECK ORDER";
cout<<"\n\n\t3.MODIFY ORDER";
cout<<"\n\n\t4.CANCELLED ORDER";
cout<<"\n\n\t5.BACK TO MAIN MENU";
cout<<"\n\n\tPlease Enter Your Choice : ";
cin>>ch2;
switch(ch2)
{
case '1': clrscr();
place_order();
break;
case '2': check_order();
break;
case '3': modify_order();
break;
case '4': delete_order();
break;
case '5': intro();
break;
}
}
void product()
{ char ch;
clrscr();
cout<<"\n \n P R I C E L I S T\n\n";
cout<<"========================================================================\n";
cout<<"S.No. SIZE AREA CURRENT SINGLE CORE LENGHT \n";
cout<<"========================================================================\n";
cout<<"1. 16/22mm 0.50 4 300 90mtrs \n";
cout<<"2. 24/20mm 0.75 7 450 90mtrs \n";
cout<<"3. 12/30mm 1.00 11 510 90mtrs \n";
cout<<"4. 22/30mm 1.50 14 770 90mtrs \n";
cout<<"5. 36/30mm 2.50 19 1200 90mtrs \n";
cout<<"6. 56/30mm 4.00 26 1900 90mtrs \n";
cout<<"\n\n\n\n BACK TO MAIN MENU (PRESS B))";
cin>>ch;
if(ch=='b'||ch=='B')
intro();
getch();
}
void intro()
{
clrscr();
char ch,cho;
textcolor(WHITE);
cout<<"\n\n\n\tMAIN MENU";
cout<<"\n\n\t01. OWNER'S MENU";
cout<<"\n\n\t02. PRODUCTS LIST";
cout<<"\n\n\t03. ORDERS";
cout<<"\n\n\t04. REPORTS";
cout<<"\n\n\t05. EXIT";
cout<<"\n\n\tPlease Select Your Option (1-5) ";
cin>>ch;
switch(ch)
{
case '1': clrscr();
owner();
break;
case '2': product();
break;
case '3': order_menu();
break;
case '4': all_rec();
break;
case '5': exit(1);
default :cout<<"\wrong choice entered";
};
}
void main()
{
clrscr();
wcompany c;
textcolor(WHITE);
welcome_screen();
intro();
getch();
};
}