-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
276 lines (193 loc) · 6.29 KB
/
main.c
File metadata and controls
276 lines (193 loc) · 6.29 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
//Defined modules
#include "main.h"
#include "users.h"
#include "accounts.h"
#include "transactions.h"
void mainMenu()
{
printf("\n===== Accounting System =====\n");
printf("1. Sign In\n");
printf("2. Change credentials\n");
printf("3. Exit\n");
printf("Enter your choice: \n");
}
void reportsMenu(){
/**
* @brief Displays the financial reporting menu options.
*/
printf("===== Financial Reporting =====\n");
printf("1. Account Statements\n");
printf("2. Transaction Registers\n");
printf("3. Expense Reports\n");
printf("4. Return\n");
printf("Enter your choice: \n");
}
void printTransactionsToFile(User user) {
/**
* @brief Prints transactions of a user to a file named "transaction_register.txt".
* @param user The user whose transactions need to be printed.
*/
char accountName[30];
printf("Enter account name for report");
scanf("%s", accountName);
FILE *file = fopen("transaction_register.txt", "w");
if (file == NULL) {
fprintf(stderr, "Error opening file\n");
return;
}
int i, j;
for (i = 0; i < user.numberOfAccounts; i++) {
if (strcmp(user.accountList[i].name, accountName) == 0) {
fprintf(file, "Transactions for Account: %s\n", accountName);
fprintf(file, "--------------------------------\n");
for (j = 0; j < user.accountList[i].transactionCount; j++) {
Transaction transaction = user.accountList[i].transactionList[j];
fprintf(file, "Type: %s\n", transaction.type);
fprintf(file, "Date: %s\n", transaction.date);
fprintf(file, "Parent Account: %s\n", transaction.parentAccount);
fprintf(file, "Description: %s\n", transaction.description);
fprintf(file, "Amount: %.2f\n", transaction.amount);
fprintf(file, "--------------------------------\n");
}
fclose(file);
return;
}
}
fprintf(stderr, "Account not found: %s\n", accountName);
fclose(file);
}
void printAccountStatements(User user){
FILE *file = fopen("statements.txt", "w");
if (file == NULL) {
fprintf(stderr, "Error opening file\n");
return;
}
fprintf(file,"User has:%d\n", user.numberOfAccounts);
for(int i= 0 ; i< user.numberOfAccounts;i++)
fprintf(file, "Account: %s, Account type:%s, Account balance:%.2lf\n", user.accountList[i].name,
user.accountList[i].type, user.accountList[i].balance);
fclose(file);
}
void financialReporting(User user) {
/**
* @brief Handles the financial reporting options based on user input.
* @param user The user for whom financial reporting is conducted.
*/
int choice;
char choiceStr[50];
reportsMenu();
scanf("%s", choiceStr);
// Convert the string to an integer using strtol
char *endptr;
choice = strtol(choiceStr, &endptr, 10);
// Check for conversion errors
if (*endptr != '\0') {
printf("Invalid input. Please enter a valid integer.\n");
}
switch (choice) {
case 1:
printAccountStatements(user);
break;
case 2:
printTransactionsToFile(user);
break;
// case 3:
// // Implement code for generating transaction registers
// // This could include a list of transactions for all accounts or a specific account
// printAccounts(numAccounts, user);
// break;
//
//
case 4:
return; // Return to the main menu
default:
printf("Invalid choice. Please try again.\n");
}
}
void bank(User user)
{
/**
* @brief Manages user interactions within the banking system, including account management and transactions.
* @param user The user for whom banking operations are performed.
*/
while (1) {
loadAccounts(&user);
userMenu();
int choice;
char choiceStr[50];
scanf("%s", choiceStr);
char *endptr;
choice = strtol(choiceStr, &endptr, 10);
if (*endptr != '\0') {
printf("Invalid input. Please enter a valid integer.\n");
}
switch (choice) {
case 1:
manageAccounts(user);
break;
case 2:
createTransaction(&user);
saveAccountsToFile(user);
break;
case 3:
if(user.numberOfAccounts > 0)
financialReporting(user);
else
printf("User has no accounts");
break;
case 4:
return;
default:
printf("Invalid choice. Please try again.\n");
}
}
}
int main() {
/**
* @brief The main function responsible for handling user sign-in, sign-up, and system exit.
*/
User newUser;
int response;
while (1)
{
mainMenu();
int choice;
char choiceStr[50];
scanf("%s", choiceStr);
char *endptr;
choice = strtol(choiceStr, &endptr, 10);
if (*endptr != '\0') {
printf("Invalid input. Please enter a valid integer.\n");
}
switch (choice) {
case 1:
printf("Enter username: \n");
scanf("%s", newUser.username);
printf("Enter password: \n");
scanf("%s", newUser.password);
newUser.numberOfAccounts = 0;
response = signIn(newUser);
if (response == 0)
bank(newUser);
else
printf("Incorrect password. Try again!\n");
break;
case 2:
printf("Enter a new username: \n");
scanf("%s", newUser.username);
printf("Enter a new password: \n");
scanf("%s", newUser.password);
response = signUp(newUser);
if (response == 0) {
printf("Username and password changed successfully!\n");
}
else
printf("User already exists or User limit reached.\n");
break;
case 3:
exit(0);
default:
break;
}
}
}