-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenuProd.cpp
More file actions
executable file
·253 lines (196 loc) · 5.9 KB
/
menuProd.cpp
File metadata and controls
executable file
·253 lines (196 loc) · 5.9 KB
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
//
// Created by hugo on 28/08/19.
//
#include "menuProd.h"
using namespace std;
void MenuProd::addProd() {
string name, price, code, amo;
Producto nuevoP;
cout << "Agregar Producto" << endl;
//fflush(stdin);
cout << "Escribe el nombre del Producto:\t";
//cin >> x;
fflush(stdin);
fflush(stdin);
getline(cin,name);
getline(cin,name);
cout << endl << "Escribe el Codigo del Producto:\t";
fflush(stdin);
getline(cin,code);
cout << endl << "Escribe el Precio del Producto:\t"; //todo /// validar que el codigo no esté repetido.
fflush(stdin);
getline(cin,price);
cout << endl << "Escribe la cantidad del Producto:\t";
fflush(stdin);
getline(cin,amo);
nuevoP.setName(name);
nuevoP.setPrice(price);
nuevoP.setCode(code);
nuevoP.setAmount(amo);
cout << nuevoP.toString() << endl;
listaRAM.insertData(listaRAM.getLastPos(),nuevoP);
}
void MenuProd::modifyProd() { ///se necesitan nombre y codigo para buscar con find Data.
string code, name, price, amo;
char opc('X');
Producto auxProd;
cout << "Modificacion de Productos\n\nLista de Productos" << endl;
cout << listaRAM.toString() << endl;
cout << "\n\n\nEscribe el codigo del Producto que deseas modificar:\t";
fflush(stdin);
getline(cin, code);
getline(cin, code);
cout << "\n\n\nEscribe el nombre del Producto que deseas modificar:\t";
fflush(stdin);
getline(cin, name);
auxProd.setCode(code);
auxProd.setName(name);
NodeProd* auxNode;
auxNode = listaRAM.findData(auxProd);
if(!listaRAM.isValidPos(auxNode))
{
cout << "El producto no existe" << endl;
return;
}
cout << "Modificar Producto?\n\t" << auxNode->getData().toString() << endl << " ? [S/N]" << endl;
fflush(stdin);
cin >> opc;
if (opc == 's' || opc == 'S')
{
cout << "Escribe el nuevo nombre del producto\t Actual: " << auxNode->getData().getName() << endl;
fflush(stdin);
getline(cin, name);
getline(cin, name);
cout << "Escribe el nuevo precio del producto\t Actual: " << auxNode->getData().getPrice() << endl;
fflush(stdin);
getline(cin, price);
cout << "Escribe la nueva cantidad del producto\t Actual: " << auxNode->getData().getAmount() << endl;
fflush(stdin);
getline(cin, amo);
auxNode->getData().setName(name);
auxNode->getData().setPrice(price);
auxNode->getData().setAmount(amo);
cout << "Producto modificado:\n" << auxNode->getData().toString() << endl;
} else
{
return;
}
}
void MenuProd::deleteProd() {
string code, name;
char opc('X');
Producto auxProd;
cout << "Eliminacion de Productos\n\nLista de Productos" << endl;
cout << listaRAM.toString() << endl;
cout << "\n\n\nEscribe el codigo del Producto que deseas eliminar:\t";
fflush(stdin);
getline(cin, code);
getline(cin, code);
cout << "\n\n\nEscribe el nombre del Producto que deseas eliminar:\t";
fflush(stdin);
getline(cin, name);
auxProd.setCode(code);
auxProd.setName(name);
NodeProd* auxNode;
auxNode = listaRAM.findData(auxProd);
if(!listaRAM.isValidPos(auxNode))
{
cout << "El producto no existe" << endl;
return;
}
cout << "Eliminar Producto?\n\t" << auxNode->getData().toString() << endl << " ? [S/N]" << endl;
fflush(stdin);
cin >> opc;
if (opc == 's' || opc == 'S') // eliminar
{
listaRAM.deleteData(auxNode);
cout << "producto eliminado" << endl;
cout << listaRAM.toString() << endl;
} else
{
return;
}
}
void MenuProd::searchProd()
{
string code, name;
Producto auxProd;
cout << "Eliminacion de Productos\n\nLista de Productos" << endl;
cout << listaRAM.toString() << endl;
cout << "\n\n\nEscribe el codigo del Producto que buscas:\t";
fflush(stdin);
getline(cin, code);
cout << "\n\n\nEscribe el nombre del Producto que buscas:\t";
fflush(stdin);
getline(cin, name);
auxProd.setCode(code);
auxProd.setName(name);
NodeProd *auxNode;
auxNode = listaRAM.findData(auxProd);
if (!listaRAM.isValidPos(auxNode))
{
cout << "El producto no existe" << endl;
return;
}
cout << "Producto encontrado:\n" << auxNode->getData().toString() << endl;
}
void MenuProd::showAllProd() {
cout << "Lista de Productos: " << endl << endl << endl << endl;
cout << listaRAM.toString() << endl;
}
MenuProd::MenuProd() {
//mainMenu();
}
void MenuProd::mainMenu() {
char opc('X');
while (opc != 's') {
cout
<< "Menu de Productos:\n\n1)Agregar Productos\n2)Modificar Productos\n3)Eliminar Productos\n4)Buscar Productos\n5)Mostrar todos los Productos\n6)Guardar en el disco\n7)Cargar desde el disco\n\n\ns)SALIR"
<< endl << endl;
fflush(stdin);
cin >> opc;
switch (opc) {
case '1': {
addProd();
break;
}
case '2': {
modifyProd();
break;
}
case '3': {
deleteProd();
break;
}
case '4': {
searchProd();
break;
}
case '5': {
showAllProd();
break;
}
case '6': {
write();
break;
}
case '7': {
read();
break;
}
default: {
cout << opc << " No es una de las opciones del menu, s para salir" << endl;
break;
}
}
}
}
void MenuProd::write() {
listaRAM.write("Productos.txt");
}
void MenuProd::read() {
listaRAM.read("Productos.txt");
}
void MenuProd::setList(ListProd &lista) {
listaRAM = lista;
}