-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPayDayBalance
674 lines (544 loc) · 17.9 KB
/
PayDayBalance
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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
#include <iostream>
#include <fstream>
#include <string>
#include <list>
#include <conio.h>
#include <chrono>
#include <ctime>
#include <cstdio>
#include <cstring>
#include <windows.h>
#include <iomanip>
#include <sstream>
#include <iostream>
#include <map>
#include <vector>
using namespace std;
struct Node {
public:
long double value;
string name;
string date;
Node* next;
};
string llave;
long double value;
long double total_v;
long double inv_i;
long double mercad;
long double val_temp;
int trys = 0;
char date[11];
map<int, string> map2 = {{0, "Ventas"},
{1, "Devolucion de ventas"},
{2, "Rebaja sobre ventas"},
{3, "Descuentos sobre ventas"},
{4, "Ventas Netas"},
{5, "Inventario inicial"},
{6, "Compras"},
{7, "Gastos sobre compras"},
{8, "Compras totales"},
{9, "Devolucion sobre compras"},
{10, "Rebaja sobre compras"},
{11, "Descuentos sobre compras"},
{12, "Compras netas"},
{13, "Mercaderia Disponible"},
{14, "Inventario final"},
{15, "Costos de ventas"},
{16, "Utilidad Bruta"},
{17, "Gastos administrativos"},
{18, "Gastos de ventas"},
{19, "Gastos financieros"},
{20, "Utilidad Operacional"},
{21, "Otros gastos"},
{22, "Otros ingresos"},
{23, "Utilidad ante impuestos"},
{24, "IR 30%"},
{25, "Utilidad/Perdida del ejercicio"}};
string datos[] = {
"Ventas",
"Dev_Ventas",
"Reb_Ventas",
"Desc_Ventas",
"Ventas_Netas",
"Inv_Ini",
"Compras",
"Gast_Comp",
"Comp_Totales",
"Dev_Comp",
"Reb_Comp",
"Desc_Comp",
"Comp_Netas",
"Mer_Disponible",
"Inv_Final",
"Costos_Ventas",
"Util_Bruta",
"Gast_Admin",
"Gast_Ventas",
"Gast_Financieros",
"Util_Operacional",
"Otr_Gastos",
"Otr_Ingresos",
"Util_Impuestos",
"IR_30%",
"Util_Per_Ejer"
};
template <typename Key, typename Value>
Value GetValueForKey(const map<Key, Value>& map, const Key& key) {
auto it = map.find(key);
if (it != map.end()) {
return it->second;
}
}
template <typename Key, typename Value>
Value gecho(const map<Key, Value>& map, const Key& key) {
auto it = map.find(key);
if (it != map.end()) {
return it->second;
}
}
class LinkedList {
public:
LinkedList() : head(nullptr) {}
void add(const string& name, double value) {
Node* newNode = new Node();
newNode->name = name;
newNode->value = value;
newNode->next = head;
head = newNode;
}
void printReverseList() {
int i = 0;
int pulso = 0;
printReverse(head, i, pulso);
}
void printReverse(Node* currentNode, int& i, int& pulso) {
if (currentNode == nullptr) {
return;
}
printReverse(currentNode->next, i, pulso);
// Aquí puedes incluir el código para obtener la llave correspondiente a partir de map2
llave = GetValueForKey(map2, i);
Sleep(100);
cout << "\t";
cout << left << setw(30) << llave;
ostringstream stream;
stream << fixed << setprecision(2) << currentNode->value;
string str = stream.str();
int pos = str.find(".");
while (pos > 3) {
pos -= 3;
str.insert(pos, ",");
}
if (pulso == 0 || pulso == 4 || pulso == 15 || pulso == 16 || pulso == 20 || pulso == 23 || pulso == 24 || pulso == 25) {
cout << right << setw(24) << str << setfill(' ') << endl << endl;
}else {
cout << right << setw(13) << str << setfill(' ') << endl;
}
i++;
pulso++;
}
void saveList(const string& fileName) {
ofstream outFile(fileName);
if (!outFile) {
cout << "\n\tError al abrir el archivo." << endl;
return;
}
saveListReverse(head, outFile);
outFile.close();
}
void saveListReverse(Node* currentNode, ofstream& outFile) {
if (currentNode == nullptr) {
return;
}
saveListReverse(currentNode->next, outFile);
outFile << currentNode->name << "," << currentNode->value << endl;
}
private:
Node* head;
};
void leerArchivo(const string& fileName) {
ifstream inFile(fileName);
if (!inFile) {
cout << "\n\tError al abrir el archivo." << endl;
return;
}
int i = 0; // Contador
int pulso = 0;
string line;
while (getline(inFile, line)) {
string dato = line.substr(0, line.find(","));
string valorStr = line.substr(line.find(",") + 1);
long double valor;
istringstream iss(valorStr);
if (!(iss >> valor)) {
cout << "\n\tError al convertir el valor: " << valorStr << endl;
continue;
}
// Realizar la manipulación de las variables
llave = GetValueForKey(map2, i);
Sleep(100);
cout << "\t";
cout << left << setw(30) << llave;
ostringstream stream;
stream << fixed << setprecision(2) << valor;
string str = stream.str();
int pos = str.find(".");
while (pos > 3) {
pos -= 3;
str.insert(pos, ",");
}
if (pulso == 0 || pulso == 4 || pulso == 15 || pulso == 16 || pulso == 20 || pulso == 23 || pulso == 24 || pulso == 25) {
cout << right << setw(24) << str << setfill(' ') << endl << endl;;
}else {
cout << right << setw(13) << str << setfill(' ') << endl;
}
i++;
pulso++;
}
inFile.close();
}
struct User {
string username;
string password;
};
void saveUsers(list<User*> users) {
ofstream file("user.txt");
for (auto user : users) {
file << user->username << "," << user->password << endl;
}
file.close();
}
list<User*> loadUsers() {
list<User*> users;
ifstream file("user.txt");
string line;
while (getline(file, line)) {
string username = line.substr(0, line.find(","));
string password = line.substr(line.find(",") + 1);
User* user = new User{username, password};
users.push_back(user);
}
file.close();
return users;
}
bool validateUser(list<User*> users, string username, string password) {
for (auto user : users) {
if (user->username == username && user->password == password) {
return true;
}
}
return false;
}
void createUser(list<User*> &users) {
string username, password;
cout << "\n\tIngrese el nombre de usuario: ";
cin >> username;
cout << "\n\tIngrese la clave: ";
password = "";
char c;
while ((c = _getch()) != 13) { // 13 es el código ASCII de la tecla Enter
if (c == '\b') { // \b es el código ASCII de la tecla Retroceso
if (!password.empty()) {
password.pop_back();
cout << "\b \b"; // Borra el último caracter en la consola
}
} else {
password += c;
cout << "*";
}
}
User* newUser = new User{username, password};
users.push_back(newUser);
saveUsers(users);
cout << endl << "\n\tUsuario creado exitosamente" << endl;
Sleep(1500);
}
const string FILE_LIST_FILENAME = "file_list.txt"; // Nombre del archivo de lista de archivos
struct FileEntry {
string fileName;
string creationDateTime;
};
vector<FileEntry> fileList; // Lista de archivos
void saveFileList() {
ofstream outFile(FILE_LIST_FILENAME);
if (outFile.is_open()) {
for (const FileEntry& entry : fileList) {
outFile << entry.fileName << "," << entry.creationDateTime << endl;
}
outFile.close();
}
}
void loadFileList() {
ifstream inFile(FILE_LIST_FILENAME);
if (inFile.is_open()) {
fileList.clear(); // Limpiar la lista de archivos existente
string line;
while (getline(inFile, line)) {
string fileName = line.substr(0, line.find(","));
string creationDateTime = line.substr(line.find(",") + 1);
FileEntry entry;
entry.fileName = fileName;
entry.creationDateTime = creationDateTime;
fileList.push_back(entry);
}
inFile.close();
}
}
void createOrUpdateList(string& fileName) {
// Obtener la fecha y hora actual
time_t currentTime = time(nullptr);
tm* localTime = localtime(¤tTime);
char formattedDateTime[50];
strftime(formattedDateTime, sizeof(formattedDateTime), "%d-%B -> %H hours:%M min", localTime);
// Verificar si el nombre de archivo ya existe en la lista
bool fileExists = false;
for (const FileEntry& entry : fileList) {
if (entry.fileName == fileName) {
fileExists = true;
break;
}
}
// Si el archivo ya existe, agregar un sufijo numérico al nombre
if (fileExists) {
int suffix = 1;
string baseFileName = fileName.substr(0, fileName.find_last_of('('));
string fileExtension = fileName.substr(fileName.find_last_of('.'));
string newFileName = baseFileName + "(" + to_string(suffix) + ")" + fileExtension;
// Buscar un sufijo numérico disponible
while (fileExists) {
newFileName = baseFileName + "(" + to_string(suffix) + ")" + fileExtension;
fileExists = false;
for (const FileEntry& entry : fileList) {
if (entry.fileName == newFileName) {
fileExists = true;
break;
}
}
suffix++;
}
// Actualizar el nombre de archivo en la lista
FileEntry newFileEntry;
newFileEntry.fileName = newFileName;
newFileEntry.creationDateTime = formattedDateTime;
fileList.push_back(newFileEntry);
// Actualizar el nombre de archivo en la variable fileName
fileName = newFileName;
} else {
// Agregar el nombre de archivo a la lista
FileEntry newFileEntry;
newFileEntry.fileName = fileName;
newFileEntry.creationDateTime = formattedDateTime;
fileList.push_back(newFileEntry);
}
// Guardar la lista de archivos actualizada
saveFileList();
}
void mostrarListaArchivos() {
cout << "\n\tLista de archivos:" << endl;
int wawa = 0;
for (const FileEntry& entry : fileList) {
wawa++;
cout << "\t";
cout << setw(0) << wawa << ". Nombre: " << setw(25) << left << entry.fileName;
cout << " | Fecha de creacion: " << entry.creationDateTime << endl;
}
}
int main() {
loadFileList();
time_t time_now = time(nullptr);
strftime(date, 4, "%b", localtime(&time_now));
string fileName = "estadoR_" + string(date) + ".txt";
inicia_Menu:
system("cls");
list<User*> users = loadUsers();
string username, password;
cout << "\n\tIngrese usuario: ";
cin >> username;
cout << "\n\tIngrese la clave: ";
password = "";
char c;
while ((c = _getch()) != 13) {
if (c == '\b') {
if (!password.empty()) {
password.pop_back();
cout << "\b \b";
}
} else {
password += c;
cout << "*";
}
}
cout << endl;
if (username == "Admin" && password == "IvanHacker00") {
cout << "\n\tInicio de sesion exitoso como administrador!" << endl;
Sleep(500);
createUser(users);
goto inicia_Menu;
} else if (validateUser(users, username, password)) {
cout << "\n\tInicio de sesion exitoso!";
Sleep(1000);
system("cls");
bool exitProgram = false;
while (!exitProgram) {
cout << "\n\tSeleccione una opcion:" << endl;
cout << "\n\t1. Crear un estado de resultados" << endl;
cout << "\t2. Acceder a un archivo creado anteriormente" << endl;
cout << "\t3. Salir" << endl;
cout << "\tIngrese el numero de la accion que desea realizar -> ";
int option;
cin >> option;
if (option == 1){
Sleep(1000);
system("cls");
LinkedList list;
for (int i = 0 ; i < 4; i++) {
llave = GetValueForKey(map2, i);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
if (i == 0){
total_v = value;
}
else{
total_v = total_v - value;
}
list.add(datos[i], value);
}
list.add(datos[4] , total_v);
llave = GetValueForKey(map2, 5);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
inv_i = value;
list.add(datos[5], value);
for (int i = 6 ; i < 8; i++) {
llave = GetValueForKey(map2, i);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
val_temp = val_temp + value;
list.add(datos[i], value);
}
list.add(datos[8], val_temp);
for (int i = 9 ; i < 12; i++) {
llave = GetValueForKey(map2, i);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
val_temp = val_temp - value;
list.add(datos[i], value);
}
mercad = inv_i + val_temp ;
list.add(datos [12], val_temp);
list.add(datos[13] , mercad);
llave = GetValueForKey(map2, 14);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value ;
list.add(datos[14], value);
long double cost_v = mercad - value;
long double ult_brut = total_v - cost_v;
list.add(datos[15], cost_v);
list.add(datos[16], ult_brut);
long double ult_op = ult_brut;
for (int i = 17 ; i < 20 ; i++) {
llave = GetValueForKey(map2, i);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
ult_op = ult_op - value;
list.add(datos[i], value);
}
list.add(datos[20], ult_op);
llave = GetValueForKey(map2, 21);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
list.add(datos[21], value);
long double ult_tot = ult_op - value;
llave = GetValueForKey(map2, 22);
cout << "\n\tIngrese el valor de " << llave << " C$ ";
cin >> value;
list.add(datos[22], value);
ult_tot = ult_tot + value;
list.add(datos[23], ult_tot);
long double i_r = ult_tot * 0.30;
long double total = ult_tot - i_r;
list.add(datos[24], i_r);
list.add(datos[25], total);
// Guardar la lista en un archivo y mostrarla en la consola
createOrUpdateList(fileName);
list.saveList(fileName);
cout<<"\n\n\t";
string frase = "Los datos han sido ingresados correctamente...";
Sleep(1000);
for (int i = 0; i < frase.size(); i++) {
cout << frase[i];
Sleep(50); // Esperar 500 milisegundos
}
Sleep(1500);
system("cls");
cout <<"\n";
list.printReverseList();
cout << "\n\t";
system("pause");
Sleep(1000);
system("cls");
} else if (option == 2){
int opcion2;
bool opcion2Valida = false;
do {
// Mostrar la lista de archivos disponibles
mostrarListaArchivos();
// Solicitar al usuario que elija un archivo
cout << "\n\n\tSeleccione el numero del archivo que desea abrir (0 para salir): ";
cin >> opcion2;
// Verificar si la opción ingresada es válida
if (opcion2 >= 1 && opcion2 <= fileList.size()) {
opcion2Valida = true;
const FileEntry& selectedFile = fileList[opcion2 - 1];
cout << "\n\tAbriendo el archivo: " << selectedFile.fileName << endl;
Sleep(2000);
system("cls");
cout << endl;
leerArchivo(selectedFile.fileName);
cout << "\n\t";
system("pause");
Sleep(1000);
system("cls");
} else if (opcion2 == 0) {
opcion2Valida = true;
cout << "\n\tSaliendo..." << endl;
cout << "\n\t";
Sleep(1000);
system("cls");
} else {
Sleep(1000);
system("cls");
cout << "\n\tOpcion invalida. Intente nuevamente." << endl;
}
} while (!opcion2Valida);
} else if (option == 3){
exitProgram = true;
} else {
cout << "\n\tOpMancion invalida." << endl;
Sleep(1000);
system("cls");
}
}
} else {
cout << "\n\tUsuario o la clave son incorrectos" << endl;
trys = trys + 1;
Sleep(1000);
if (trys == 3){
system("cls");
cout << "\n\tUsted a excedido el numero de intentos\n\t";
string frase = "Pum pa casa";
Sleep(500);
for (int i = 0; i < frase.size(); i++) {
cout << frase[i];
Sleep(80);
}
cout << "\n\t";
exit(0);
}
else{
goto inicia_Menu;
}
}
return 0;
}