-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSavings_Goal.xaml.cs
418 lines (339 loc) · 13.1 KB
/
Savings_Goal.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
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Data;
using LiveCharts;
using LiveCharts.Wpf;
using LiveCharts.Defaults;
namespace Money_Savings_Tool
{
/// <summary>
/// Interaction logic for Savings_Goal.xaml
/// </summary>
public partial class Savings_Goal : Window
{
DateTime date = DateTime.Now;
string EMAIL;
double Goal, Completed, Rest;
DatabaseConnection db = new DatabaseConnection();
public SeriesCollection SeriesCollection { get; set; }
public Savings_Goal(string Email)
{
EMAIL = Email;
Previous_Amount();
InitializeComponent();
Check_Goal_Status();
Show_Progress_Bar();
label_Show_Hidden();
}
void label_Show_Hidden()
{
double SugestedAMount = Sugesstion_Money() + (.05 * Sugesstion_Money());
if (Completed < Goal)
{
PieControl();
label_Goal.Content = "Current Savings Goal " + Goal + " Taka";
labelCreated.Visibility = Visibility.Hidden;
Set_Amount.Visibility = Visibility.Hidden;
setAmount.Visibility = Visibility.Hidden;
Create_Button.Visibility = Visibility.Hidden;
}
else if (Completed >= Goal)
{
Remaining_Time.Visibility = Visibility.Hidden;
label_Days.Visibility = Visibility.Hidden;
if (SugestedAMount > 0)
{
label_Goal.Content = "Congratulations !! You have Successfully Completed Your Previous Goals.\nNow You Are 'Suggested' to Make " + SugestedAMount + " taka for an Another Goal ";
}
Change_Status_Savings_Goals();
label_Goal.Foreground = Brushes.Red;
label_Update.Visibility = Visibility.Hidden;
label_Amount.Visibility = Visibility.Hidden;
MyComboBox.Visibility = Visibility.Hidden;
Update_Amount.Visibility = Visibility.Hidden;
Update_Button.Visibility = Visibility.Hidden;
}
}
void Show_Progress_Bar()
{
Remaining_Time.Value = Time_Control();
label_Days.Content = "Remaining Days To Complete Current Goal " + Time_Control();
if(Time_Control()<=5)
{
Remaining_Time.Foreground = Brushes.Red;
}
}
void PieControl()
{
try
{
DataContext = new object();
SeriesCollection = new SeriesCollection
{
new PieSeries
{
Title = "Complete Goal",
Values = new ChartValues<ObservableValue> { new ObservableValue(Convert.ToInt32(Completed)) },
DataLabels = true
},
new PieSeries
{
Title = "Rest Goal",
Values = new ChartValues<ObservableValue> { new ObservableValue(Convert.ToInt32(Rest)) },
DataLabels = true
}
};
DataContext = this;
}
catch (Exception E)
{
MessageBox.Show(E.Message);
}
}
int Time_Control()
{
int Remaining_Day = 0;
string sql = "SELECT DATEDIFF(day, Updated, GETDATE()) Remaining_Day from Savings_Goals where Email like'"+EMAIL+"' and Validity like '"+"True"+"'";
try
{
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt2 = new DataTable();
dt2.Load(command.ExecuteReader());
string Remaining_DAY = dt2.Rows[0]["Remaining_Day"].ToString();
Remaining_Day = Convert.ToInt32(Remaining_DAY);
}
catch (Exception E)
{
// MessageBox.Show(E.Message);
}
Remaining_Day = 30 - Remaining_Day;
return Remaining_Day;
}
void Change_Status_Savings_Goals()
{
string sql = "update Savings_Goals set Validity='"+"False"+"' where Email like '"+EMAIL+"'";
try
{
SqlCommand command = new SqlCommand(sql,db.con);
command.ExecuteNonQuery();
}
catch(Exception E)
{
MessageBox.Show(E.Message);
}
}
void Change_Status_Savings_Goals_History()
{
string sql = "update Savings_Goals_History set Validity='" + "False" + "' where Email like '" + EMAIL + "' and Validity like '"+"True"+"'";
try
{
SqlCommand command = new SqlCommand(sql, db.con);
command.ExecuteNonQuery();
}
catch (Exception E)
{
// MessageBox.Show(E.Message);
}
}
void Check_Goal_Status()
{
double Completed_Amount = 0,Created_Goal=0;
string sql = "select * from Savings_Goals where Email like '" + EMAIL + "' and Validity='"+"True"+"'";
try
{
SqlCommand command = new SqlCommand(sql, db.con);
DataTable dt2 = new DataTable();
dt2.Load(command.ExecuteReader());
string Completed = dt2.Rows[0]["Completed"].ToString();
string Goal = dt2.Rows[0]["Created_Goal"].ToString();
Completed_Amount = Convert.ToDouble(Completed);
Created_Goal = Convert.ToDouble(Goal);
}
catch(Exception E)
{
// MessageBox.Show(E.Message);
}
if(Completed_Amount>=Created_Goal)
{
Change_Status_Savings_Goals_History();
}
}
void CreateGoal(string Email,double Amount)
{
try
{
string query = "insert into [Savings_Goals] (Email,Created_Goal,Completed,Rest,Updated,Validity) Values('"+Email+"','"+Amount+"',0,'"+ Amount + "','"+ date + "','"+"True"+"')";
SqlCommand command = new SqlCommand(query,db.con);
command.ExecuteScalar();
}
catch (Exception E)
{
MessageBox.Show(E.Message);
}
}
private void Create_Goal_Click(object sender, RoutedEventArgs e)
{
string amount = setAmount.Text;
if (amount.Equals(""))
{
label_amount_needed.Content = "Amount Needed !!";
}
else
{
label_amount_needed.Content = "";
}
if (amount!= "")
{
double Amount = Convert.ToDouble(amount);
CreateGoal(EMAIL, Amount);
MessageBox.Show("Savings Goal Created Successfully");
Savings_Goals_History s = new Savings_Goals_History(EMAIL);
this.Hide();
s.Show();
}
}
void Update_Goals(double Completed_Amount,double Rest_Amount)
{
try
{
string query = "Update [Savings_Goals] set Completed='"+Completed_Amount+"' , Rest='"+Rest_Amount+"' where serial=(select MAX(serial) from [Savings_Goals]) and Email like '" + EMAIL+"'";
SqlCommand command = new SqlCommand(query,db.con);
command.ExecuteNonQuery();
MessageBox.Show("Updated Successfully !!");
}
catch(Exception E)
{
MessageBox.Show(E.Message);
}
}
double Sugesstion_Money()
{
string goal;
double SugestedAmount = 0;
try
{
string Sql2 = "select * from [Savings_Goals] where serial=(select (MAX(serial)-1) from [Savings_Goals]) and Email like'" + EMAIL + "' ";
// string Sql2 = "select * from [Savings_Goals] where Email like '" + EMAIL + "'";
SqlCommand command2 = new SqlCommand(Sql2, db.con);
DataTable dt2 = new DataTable();
dt2.Load(command2.ExecuteReader());
goal = dt2.Rows[0]["Created_Goal"].ToString();
SugestedAmount = Convert.ToDouble(goal);
}
catch (Exception E)
{
//MessageBox.Show(E.Message) ;
}
return SugestedAmount;
}
void Previous_Amount()
{
string goal,completed,rest;
try
{
string Sql2 = "select * from [Savings_Goals] where serial=(select MAX(serial) from [Savings_Goals]) and Email like'" + EMAIL + "' ";
// string Sql2 = "select * from [Savings_Goals] where Email like '" + EMAIL + "'";
SqlCommand command2 = new SqlCommand(Sql2, db.con);
DataTable dt2 = new DataTable();
dt2.Load(command2.ExecuteReader());
goal = dt2.Rows[0]["Created_Goal"].ToString();
completed = dt2.Rows[0]["Completed"].ToString();
rest = dt2.Rows[0]["Rest"].ToString();
Goal= Convert.ToDouble(goal);
Completed = Convert.ToDouble(completed);
Rest = Convert.ToDouble(rest);
}
catch (Exception E)
{
//MessageBox.Show(E.Message) ;
}
}
void Money_In(double Amount)
{
try
{
string query = "insert into [Savings_Goals_History] (Email,Money_In,Money_Out,Updated,Validity) Values ('" + EMAIL + "','"+Amount+"',0,'"+date+"','"+"True"+"')";
SqlCommand command = new SqlCommand(query,db.con);
command.ExecuteNonQuery();
}
catch (Exception E)
{
MessageBox.Show(E.Message);
}
}
private void Check_History_Button_Click(object sender, RoutedEventArgs e)
{
Savings_Goals_History s = new Savings_Goals_History(EMAIL);
this.Hide();
s.Show();
}
private void Back_Button(object sender, RoutedEventArgs e)
{
Homepage h = new Homepage(EMAIL);
this.Hide();
h.Show();
}
void Money_Out(double Amount)
{
try
{
string query = "insert into [Savings_Goals_History] (Email,Money_In,Money_Out,Updated,Validity) Values ('" + EMAIL + "',0,'" + Amount + "','" + date + "','"+"True"+"')";
SqlCommand command = new SqlCommand(query, db.con);
command.ExecuteNonQuery();
}
catch (Exception E)
{
MessageBox.Show(E.Message);
}
}
private void Update_Goal_Click(object sender, RoutedEventArgs e)
{
if (Time_Control()>=0)
{
string amount = Update_Amount.Text;
double Amount = 0;
Amount = Convert.ToDouble(amount);
string option = MyComboBox.Text;
if (amount.Equals(""))
{
label_amount_needed.Content = "Amount Needed !!";
}
else
{
label_amount_needed.Content = "";
}
if (amount != "")
{
if (option.Equals("Out Money -"))
{
Money_Out(Amount);
Completed -= Amount;
Rest += Amount;
}
else if (option.Equals("In Money +"))
{
Money_In(Amount);
Completed += Amount;
Rest -= Amount;
}
Update_Goals(Completed, Rest);
Savings_Goals_History s = new Savings_Goals_History(EMAIL);
this.Hide();
s.Show();
}
}
}
}
}