-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewTransaction.asp
433 lines (357 loc) · 16.6 KB
/
ViewTransaction.asp
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
<%
Session("STimeoutError")=""
if Session("STxtUserEmail")="" then
Session("STimeoutError")="Your Session has been Timed Out! Please Login to continue"
response.Redirect("Login.asp")
end if
%>
<!--#include file="ValidateLogin.asp"-->
<%
'Dim Conn
Dim RSTransaction
'Dim CS
Dim RSCount
Set Conn = Server.CreateObject("ADODB.Connection")
Set RSTransaction = Server.CreateObject("ADODB.RecordSet")
Set RSCount = Server.CreateObject("ADODB.RecordSet")
CS = "Driver={SQL Server};Server=NABEELS-WORK;Database=HomeExpenseTracker;User Id=homeexpense;Password=Nabeel30;"
Conn.Open CS
Dim TableName
Dim RecPerPage
Dim RecNumber
Dim PageNumber
Dim SkipRec
Dim LastPage
If Request.QueryString("QsPageNumber")= "" then
PageNumber = 1
SkipRec=0
else
PageNumber = Cint(request.QueryString("QsPageNumber"))
SkipRec = (PageNumber*RecPerPage)-RecPerPage
End if
'If request.Form("AccTableName")="" then
' TableName = "HomeAccount"
'else
' TableName = request.Form("AccTableName")
'end if
'Dim QryStr
'QryStr = "SELECT dbo.HomeAccount.ID, dbo.HomeAccount.TransactionDate, dbo.HomeAccount.Description, dbo.HomeAccount.Credit, dbo.HomeAccount.Debit, dbo.HomeAccount.Balance, dbo.HomeAccount.CategoryID, " & _
' "dbo.Categories.Category, dbo.HomeAccount.PersonID, dbo.Persons.PersonName " & _
' "FROM dbo.Categories INNER JOIN " & _
' "dbo.HomeAccount ON dbo.Categories.CategoryID = dbo.HomeAccount.CategoryID INNER JOIN " & _
' "dbo.Persons ON dbo.HomeAccount.PersonID = dbo.Persons.PersonID ORDER BY HomeAccount.ID desc"
'Note: Request.Form("ObjectName") reads data after form submission/posted
'Note: Request.querystring("ObjectName") Reads data from URL Query String Variable
'Note: Request("ObjectName") reads data from either Form Object or Query String Object where Found
'Using Form Object Variable
'If request.Form("AccTableName")="" then
' QryStr = "SELECT * FROM HomeAccount WHERE (ID < 0)"
'else
' TableName = request.Form("AccTableName")
' QryStr = "SELECT " & TableName & ".ID, " & TableName & ".TransactionDate, " & TableName & ".Description, " & TableName & ".Credit, " & TableName & ".Debit, " & TableName & ".Balance, " & _
' TableName & ".CategoryID, dbo.Categories.Category, " & TableName & ".PersonID, dbo.Persons.PersonName " & _
' "FROM dbo.Categories INNER JOIN " & _
' TableName & " ON dbo.Categories.CategoryID = " & TableName & ".CategoryID INNER JOIN " & _
' "dbo.Persons ON " & TableName & ".PersonID = dbo.Persons.PersonID ORDER BY " & TableName & ".ID desc"
' End if
'Using Request("ObjectName")
If request("AccTableName")="" then
QryStr = "SELECT * FROM HomeAccount WHERE (ID < 0)"
else
TableName = request("AccTableName")
QryStr = "SELECT " & TableName & ".ID, " & TableName & ".TransactionDate, " & TableName & ".Description, " & TableName & ".Credit, " & TableName & ".Debit, " & TableName & ".Balance, " & _
TableName & ".CategoryID, dbo.Categories.Category, " & TableName & ".PersonID, dbo.Persons.PersonName " & _
"FROM dbo.Categories INNER JOIN " & _
TableName & " ON dbo.Categories.CategoryID = " & TableName & ".CategoryID INNER JOIN " & _
"dbo.Persons ON " & TableName & ".PersonID = dbo.Persons.PersonID ORDER BY " & TableName & ".ID desc"
End if
RSTransaction.Open QRYSTR,Conn
If request("AccTableName")<>"" then
RSCount.Open "SELECT COUNT(ID) AS TotalRecords FROM " & TableName,conn
TotalRec = RSCount("TotalRecords")
RecPerPage=55
If RSCount.EOF or RSCount("TotalRecords")=1 then
LastPage = 0
else
LastPage = Cstr((RSCount("TotalRecords")/RecPerPage))
If InStr(LastPage,".") > 1 then
LastPage = cint(LEFT(LastPage,InStr(LastPage,".")-1)) + 1
end if
End If
else
LastPage=0
end if
%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS/bootstrap.css">
<link rel="stylesheet" href="CSS/StyleViewTrans.css">
<title>Home Expense Tracker - Transactions</title>
<style>
/* Select Table Form */
.wrapper {
border: 2px solid black;
background-color: lightgrey;
width: 20%;
margin: 0px auto;
text-align: center;
height: max-content;
padding: 10px;
border-radius: 4px;
}
.wrapper label {
font-size: 16px;
}
.combo-account {
align-content: center;
font-weight: 700;
}
.select-account {
border: 1px solid black;
border-radius: 10px;
padding: 5px;
font-weight: 700;
width: 300px;
}
.btn-select {
background-color: rgb(165, 178, 192);
border: 1px solid black;
border-radius: 10px;
text-align: center;
padding: 5px;
font-weight: 700;
width: 15%;
cursor: pointer;
width: 50%;
}
.btn-select:hover {
color: white;
border: 1px solid whitesmoke;
}
.form-control {
width: 80%;
margin: auto;
}
.add-new {
margin: 0px auto;
text-align: center;
padding: 10px;
width: 15%;
}
.btn-addnew {
background-color: rgb(165, 178, 192);
border: 1px solid black;
border-radius: 10px;
padding: 8px;
}
.table-wrapper {
background-color: white;
margin: 10px;
margin-top: 30px;
}
.table-wrapper th {
text-align: center;
}
.icon {
width: 25px;
height: 25px;
}
.page-nav {
width: 20%;
margin: 0px auto;
text-align: center;
height: max-content;
padding: 10px;
}
.btn-primary {
padding: 8px 20px;
}
</style>
</head>
<body>
<!--- #include file="Header.asp" -->
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="header">
<h1>View Transactions</h1>
<%
If request("AccTableName")<>"" then
Dim RSAccounts
Set RSAccounts = Server.CreateObject("ADODB.RecordSet")
RSAccounts.Open "SELECT TableDescription FROM AccountsTable WHERE (TableName = '" & TableName & "')", Conn
Response.Write("<h2>" & RSAccounts("TableDescription") & "</h2>")
RSAccounts.close
Set RSAccounts = Nothing
end if
%>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="bg-warning text-center">
<h3>
<% response.Write(Session("ErrorQsID")) %>
<% response.Write(Session("ErrorAction")) %>
<% response.Write(Session("ErrorTableName")) %>
<% response.Write(Session("ErrorFound")) %>
<% response.Write(Session("DateError")) %>
<% response.Write(Session("CreditError")) %>
<% response.Write(Session("DebitError")) %>
</h3>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="wrapper">
<form action="ViewTransaction.asp" method="POST" class="combo-account">
<div class="form-group">
<label for="AccTableName">Select Account</label>
<select name="AccTableName" class="select-account form-control">
<%
Set RSAccounts = Server.CreateObject("ADODB.RecordSet")
RSAccounts.Open "SELECT TableName, TableDescription FROM AccountsTable",Conn
do while Not RSAccounts.EOF
if RSAccounts("TableName") = TableName then
%>
<option value="<% response.write(RSAccounts("TableName")) %>" selected>
<% response.write(RSAccounts("TableDescription")) %></option>
<%
else %>
<option value="<% response.write(RSAccounts("TableName")) %>">
<% response.write(RSAccounts("TableDescription")) %></option>
<%
end if
RSAccounts.MoveNext
Loop
RSAccounts.Close
Set RSAccounts = Nothing
%>
</select>
<br>
<input type="submit" value="Select Account" class="btn-select">
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="add-new">
<div class="btn-addnew">
<a href="NewTransaction.asp?AccTableName=<% response.write(TableName) %>" class="">
<img src="images/add.png" alt="Add New" class="icon">
<span style="color: black;">Add New Transaction</span>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="table-wrapper">
<table class="table table-bordered table-hover">
<thead class="thead-light">
<tr>
<th style="width: 10%;">Transaction Id</th>
<th style="width: 10%;">Transaction Date</th>
<th style="width: 10%;">Category</th>
<th style="width: 10%;">Person</th>
<th style="width: 30%;">Description</th>
<th style="width: 10%;">Credit</th>
<th style="width: 10%;">Debit</th>
<th style="width: 10%;">Balance</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<%
Dim SkipCounter
SkipCounter=1
RecNumber = 0
'response.Write("Skip Rec =" & SkipRec)
'response.Write("<br>Page Number =" & PageNumber)
do while RSTransaction.eof=false
if SkipCounter > SkipRec then
%>
<tr>
<td><% response.Write(RSTransaction("Id")) %></td>
<td><% response.Write(RSTransaction("TransactionDate")) %></td>
<td><% response.Write(RSTransaction("Category")) %></td>
<td><% response.Write(RSTransaction("PersonName")) %></td>
<td><% response.Write(RSTransaction("Description")) %></td>
<td><% response.Write("PKR " & FormatNumber(RSTransaction("Credit"))) %></td>
<td><% response.Write("PKR " & FormatNumber(RSTransaction("Debit"))) %></td>
<td><% response.Write("PKR " & FormatNumber(RSTransaction("Balance"))) %></td>
<td><a
href="EditTransaction.asp?QsID=<% response.Write(RSTransaction("Id")) %>&QSTableName=<% Response.write(TableName) %>&Action=1"><img
src="images/edit.png" alt="Edit" class="icon"></a></td>
<td><a
href="EditTransaction.asp?QsID=<% response.Write(RSTransaction("Id")) %>&QSTableName=<% Response.write(TableName) %>&Action=2"><img
src="images/delete.png" alt="Delete" class="icon"></a></td>
</tr>
<%
'response.Write("Rec Num = " & RecNumber)
RecNumber = RecNumber + 1
End if
If RecPerPage = RecNumber then
'PageNumber = PageNumber+1
exit do
end if
SkipCounter = SkipCounter+1
RSTransaction.MoveNext
loop
RSTransaction.Close
Set RSTransaction = Nothing
Conn.Close
Set Conn = Nothing
%>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="page-nav">
<% if LastPage = 0 or PageNumber <=1 then %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=1"
class="btn btn-primary disabled">First</a>
<% else %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=1"
class="btn btn-primary">First</a>
<% End if %>
<% if PageNumber > 1 then %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(PageNumber-1) %>"
class="btn btn-primary">Previous</a>
<% else %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(PageNumber-1) %>"
class="btn btn-primary disabled">Previous</a>
<% End if %>
<% if LastPage > PageNumber then %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(PageNumber+1) %>"
class="btn btn-primary">Next</a>
<% else %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(PageNumber+1) %>"
class="btn btn-primary disabled">Next</a>
<% end if %>
<% if LastPage > PageNumber then %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(LastPage) %>"
class="btn btn-primary">Last</a>
<% else %>
<a href="ViewTransaction.asp?AccTableName=<% response.write(TableName) %>&QsPageNumber=<% response.write(LastPage) %>"
class="btn btn-primary disabled">Last</a>
<% End if %>
</div>
</div>
</div>
</div>
<!--- #include file="Footer.asp" -->
</body>
</html>