-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdate_Borrow_Money.xaml.cs
460 lines (368 loc) · 15 KB
/
Update_Borrow_Money.xaml.cs
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
using System;
using System.Data.SqlClient;
using System.Windows;
using System.Data;
namespace Money_Savings_Tool
{
/// <summary>
/// Interaction logic for Update_Borrow_Money.xaml
/// </summary>
public partial class Update_Borrow_Money : Window
{
DatabaseConnection db = new DatabaseConnection();
String date = DateTime.Now.ToString("dd.MM.yyyy");
String EMAIL, Phone2;
string Priv_Balance;
bool check = false;
public Update_Borrow_Money(string Email)
{
EMAIL = Email;
InitializeComponent();
ShowAllEvent();
}
void ShowAllEvent()
{
string sql = "select Name,Phone,Lend_Money,Borrow_Money from Due_Balance where Email like'" + EMAIL + "' and Validity like '" + "True" + "' ";
SqlDataAdapter sqlDA = new SqlDataAdapter(sql, db.con);
DataTable dt = new DataTable();
sqlDA.Fill(dt);
gridView.ItemsSource = dt.DefaultView;
}
Boolean Change_Borrow_Money_Take()
{
//DatabaseConnection db = new DatabaseConnection();
Boolean check = false;
string Curr_Balance;
string sql = "select * from curr_balance where Email like '" + EMAIL + "'";
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
try
{
Curr_Balance = dt.Rows[0]["Balance"].ToString();
}
catch (Exception)
{
Curr_Balance = "0";
}
int Balance = Convert.ToInt32(Curr_Balance);
string Amount1 = amount.Text;
int Lend_Balance = Convert.ToInt32(Amount1);
//CUrrent balance change hobe
Balance = Balance + Lend_Balance;
Change_Current_Balance(Balance);
check = true;
return check;
}
Boolean Change_Borrow_Money_Give()
{
//DatabaseConnection db = new DatabaseConnection();
Boolean check = false;
string Curr_Balance;
string sql = "select * from curr_balance where Email like '" + EMAIL + "'";
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
try
{
Curr_Balance = dt.Rows[0]["Balance"].ToString();
}
catch (Exception)
{
Curr_Balance = "0";
}
int Balance = Convert.ToInt32(Curr_Balance);
string Amount1 = amount.Text;
int Lend_Balance = Convert.ToInt32(Amount1);
//CUrrent balance change hobe
Balance = Balance - Lend_Balance;
Change_Current_Balance(Balance);
check = true;
return check;
}
void Change_Current_Balance(int New_Balance)
{
try
{
string Sql = "update curr_balance set Balance='" + New_Balance.ToString() + "' where Email like '" + EMAIL + "' ";
SqlCommand command = new SqlCommand(Sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
check = true;
}
catch (Exception)
{
}
}
double Current_Borrow_Money()
{
string phone = phone2.Text;
double balance = 0;
string query = "select * from Due_Balance where Validity like '" + "True" + "' and Phone like '" + phone + "'";
SqlCommand command = new SqlCommand(query, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
try
{
string lm = dt.Rows[0]["Borrow_Money"].ToString();
balance = Convert.ToDouble(lm);
}
catch (Exception E)
{
MessageBox.Show(E.Message);
// MessageBox.Show("Phone Number Not Found!!");
}
return balance;
}
double MyCurrent_Balance()
{
string Curr_Balance;
double Balance = 0;
string sql = "select * from curr_balance where Email like '" + EMAIL + "'";
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
try
{
Curr_Balance = dt.Rows[0]["Balance"].ToString();
Balance = Convert.ToDouble(Curr_Balance);
}
catch (Exception)
{
Curr_Balance = "0";
}
return Balance;
}
void Auto_Get_Back_Lend_Money()
{
double New_Curr_Balance = MyCurrent_Balance() - Current_Borrow_Money();
Change_Current_Balance(New_Curr_Balance);
}
void Change_Current_Balance(double New_Balance)
{
try
{
string Sql = "update curr_balance set Balance='" + New_Balance.ToString() + "' where Email like '" + EMAIL + "' ";
SqlCommand command = new SqlCommand(Sql, db.con);
// DataTable dt = new DataTable();
command.ExecuteNonQuery();
}
catch (Exception)
{
}
}
private void Delete_Event_Button(object sender, RoutedEventArgs e)
{
if (Check_Delete_TextBox() == true)
{
double PB = 0, BM = 0;
string pn = "";
Phone2 = phone2.Text;
try
{
string Sql2 = "select * from Due_Balance where Email like '" + EMAIL + "' and Phone ='" + Phone2.ToString() + "'";
SqlCommand command2 = new SqlCommand(Sql2, db.con);
DataTable dt2 = new DataTable();
dt2.Load(command2.ExecuteReader());
pn = dt2.Rows[0]["Phone"].ToString();
string pb = dt2.Rows[0]["Lend_Money"].ToString();
string bm = dt2.Rows[0]["Borrow_Money"].ToString();
PB = Convert.ToDouble(pb);
BM = Convert.ToDouble(bm);//Borrow Money
}
catch (Exception)
{
}
if (pn.Equals(Phone2) && PB == 0)
{
string messageBoxText = "Do you really want to delete this event?";
string caption = "Delete Event";
MessageBoxButton button = MessageBoxButton.YesNoCancel;
MessageBoxImage icon = MessageBoxImage.Warning;
// MessageBox.Show(messageBoxText, caption, button, icon);
MessageBoxResult result = MessageBox.Show(messageBoxText, caption, button, icon);
switch (result)
{
case MessageBoxResult.Yes:
// User pressed Yes button
try
{
Auto_Get_Back_Lend_Money();
// string Sql = "DELETE from Due_Balance where Email like '" + EMAIL + "' and Phone ='" + Phone2.ToString() + "'";
string Sql = "update Due_Balance set Validity='" + "False" + "' where Email like '" + EMAIL + "' and Phone='" + Phone2.ToString() + "'";
SqlCommand command = new SqlCommand(Sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
check = true;
MessageBox.Show("Event Deleted Successfully");
Due_Balance f = new Due_Balance(EMAIL);
this.Hide();
f.Show();
db.CloseConnection();
}
catch (Exception)
{
}
break;
case MessageBoxResult.No:
// User pressed No button
// ...
break;
case MessageBoxResult.Cancel:
// User pressed Cancel button
// ...
break;
}
}
else if (pn.Equals(Phone2) && PB > 0 && BM > 0)
{
try
{
string sql2 = "update Due_Balance set Borrow_Money = '" + "0" + "', Borrow_Note = '" + null + "', Date = '" + date + "' where Phone like '" + Phone2 + "' and Email like '" + EMAIL + "'";
SqlCommand command = new SqlCommand(sql2, db.con);
int result = command.ExecuteNonQuery();
MessageBox.Show("Due Balance Updated !!");
Console.WriteLine("Due Balance Updated !!");
Due_Balance f = new Due_Balance(EMAIL);
this.Hide();
f.Show();
db.CloseConnection();
}
catch (Exception)
{
}
}
else if (BM == 0)//LM is lend Money ,if lend money is equal to zero ,then show a messsage ,phone number not found
{
MessageBox.Show("Phone Number Not Found!!");
}
}
}
private void Back_Button(object sender, RoutedEventArgs e)
{
Borrow_Money b = new Borrow_Money(EMAIL);
this.Hide();
b.Show();
}
private void Update_Event_Button(object sender, RoutedEventArgs e)
{
if (Check_Update_TextBox() == true)
{
string Amount1 = amount.Text;
string Phone1 = phone1.Text;
double Amount = Convert.ToDouble(Amount1);
string Option = MyComboBox.Text;
string sql = "select * from [Due_Balance] where Phone like '" + Phone1 + "' and Email like '" + EMAIL + "'";
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
try
{
Priv_Balance = dt.Rows[0]["Borrow_Money"].ToString();
check = true;
}
catch (Exception)
{
Priv_Balance = "0";
Console.WriteLine("Couldnt find");
check = false;
}
if (check == true)
{
double Curr_Balance = Amount;
double Privioue_Balance = Convert.ToDouble(Priv_Balance);
double New_Balance = 0;
string message = "";
if (Option.Equals(string.Empty))
{
MessageBox.Show("Please select an option !");
}
else if (Option.Equals("Give") && Privioue_Balance >= Curr_Balance)
{
Change_Borrow_Money_Give();
New_Balance = Privioue_Balance - Curr_Balance;
message = "Giving Money ";
}
else if (Option.Equals("Take"))
{
Change_Borrow_Money_Take();
New_Balance = Privioue_Balance + Curr_Balance;
message = "Receiving Money ";
}
else if (Option.Equals("Give") && Privioue_Balance < Curr_Balance)
{
Option = "";
MessageBox.Show("You are Giving More than Borrowing amount of money\nPlease check & change the amount");
}
if (Option != "")
{
try
{
string sql2 = "update [Due_Balance] set Borrow_Money = '" + New_Balance + "', Date = '" + date + "' where Phone like '" + Phone1 + "' and Email like '" + EMAIL + "'";
command = new SqlCommand(sql2, db.con);
int result = command.ExecuteNonQuery();
MessageBox.Show(message + Curr_Balance + " taka");
Console.WriteLine("Due Balance Updated !!");
Due_Balance f = new Due_Balance(EMAIL);
this.Hide();
f.Show();
}
catch (Exception Ex)
{
MessageBox.Show(Ex.Message);
}
}
}
else
{
MessageBox.Show("Phone Number Doesn't Match !!");
}
}
}
bool Check_Update_TextBox()
{
bool check = false;
string Phone = phone1.Text;
string Amount = amount.Text;
if (Phone.Equals(string.Empty))
{
UpdatePhone.Content = "Phone Number Required !!";
}
else
{
UpdatePhone.Content = "";
}
if (Amount.Equals(string.Empty))
{
UpdateAmount.Content = "Amount Requred !";
}
else
{
UpdateAmount.Content = "";
}
if (Amount != "" && Phone != "")
{
check = true;
}
return check;
}
bool Check_Delete_TextBox()
{
bool check = false;
string Phone = phone2.Text;
if (Phone.Equals(string.Empty))
{
DeletePhone.Content = "Phone Number Required to Delete Event";
}
else
{
DeletePhone.Content = "";
}
if (Phone != "")
{
check = true;
}
return check;
}
}
}