-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBorrow_Money.xaml.cs
268 lines (211 loc) · 7.64 KB
/
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
using System;
using System.Data.SqlClient;
using System.Windows;
using System.Data;
namespace Money_Savings_Tool
{
public partial class Borrow_Money : Window
{
DatabaseConnection db = new DatabaseConnection();
String date = System.DateTime.Now.ToString("dd.MM.yyyy");
String EMAIL, Phone2;
string GetPhone1, GetPhone2, Priv_Balance;
bool check = false;
string Validation;
SqlCommand command;
DateTime date2 = DateTime.Now;
public Borrow_Money(string Email)
{
EMAIL = Email;
InitializeComponent();
Date_Time.Content = date2;
}
private void Update_Event_Button(object sender, RoutedEventArgs e)
{
Update_Borrow_Money ubm = new Update_Borrow_Money(EMAIL);
this.Hide();
ubm.Show();
}
private void Back_Button(object sender, RoutedEventArgs e)
{
Due_Balance d = new Due_Balance(EMAIL);
this.Hide();
d.Show();
}
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)
{
}
}
bool CheckTextBox()
{
bool check = false;
string Name = name.Text;
string Amount = amount.Text;
string Note = note.Text;
string Phone1 = phone1.Text;
if (Name.Equals(string.Empty))
{
BlankName.Content = "Name Required !! ";
}
else
{
BlankName.Content = "";
}
if (Amount.Equals(string.Empty))
{
BlankAmount.Content = "Amount Required !! ";
}
else
{
BlankAmount.Content = "";
}
if (Note.Equals(string.Empty))
{
BlankNote.Content = "Short Note Required !!";
}
else
{
BlankNote.Content = "";
}
if (Phone1.Equals(string.Empty))
{
BlankPhone.Content = "Phone Number Required !!";
}
else
{
BlankPhone.Content = "";
}
if (Name != "" && Amount != "" && Note != "" && Phone1 != "")
{
check = true;
}
return check;
}
void New_Event()
{
string Name, Amount1, Note, Phone1;
Name = name.Text;
Amount1 = amount.Text;
Note = note.Text;
Phone1 = phone1.Text;
double Amount = Convert.ToDouble(Amount1);
try
{
string sql2 = "INSERT INTO Due_Balance(Email,Name,Phone,Lend_Money,Lend_Note,Borrow_Money,Borrow_Note,Date,Validity) VALUES('" + EMAIL + "','" + Name + "','" + Phone1 + "','" + "0" + "','" + null + "','" + Amount + "','" + Note + "','" + date + "','" + "True" + "')";
command = new SqlCommand(sql2, db.con);
int result = command.ExecuteNonQuery();
Console.WriteLine("New Balance Created !!");
MessageBox.Show("New Balance Created !!");
Change_Borrow_Money_Take();
Due_Balance f = new Due_Balance(EMAIL);
this.Hide();
f.Show();
}
catch (Exception)
{
}
}
private void Create_Event_Button(object sender, RoutedEventArgs e)
{
if (CheckTextBox() == true)
{
string Phone1 = phone1.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();
Validation = dt.Rows[0]["Validity"].ToString();
check = true;
}
catch (Exception)
{
Priv_Balance = "0";
Console.WriteLine("Couldnt find");
check = false;
}
if (check == true)
{
//Here we will check ,when the phone number is present and the validity is false.
//then user can again create new amount under that phone nummber.
if (Validation=="False")
{
New_Event();
}
else
{
MessageBox.Show("Already have an CUrrent event with this phone number \n You can Update or Delete previous event");
}
}
else
{
New_Event();
}
}
}
}
}