-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReciept.cs
More file actions
987 lines (832 loc) · 38.3 KB
/
Reciept.cs
File metadata and controls
987 lines (832 loc) · 38.3 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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
using LibraryCGC;
using Microsoft.Data.SqlClient;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Library_Final
{
public partial class Reciept : Form
{
// Connection string - Update with your SQL Server details
private string connectionString = @" Data Source=(LocalDB)\MSSQLLocalDB;
Initial Catalog=LibraryDB;
Integrated Security=True;
Encrypt=True;
Trust Server Certificate=True;
";
private byte[] imageBytes = null;
private string imageFileName = "";
private bool isUpdatingFields = false;
private System.Windows.Forms.Timer searchTimer;
public Reciept()
{
InitializeComponent();
// Configure PictureBox for auto-fit
pbReceiptImage.SizeMode = PictureBoxSizeMode.Zoom; // Auto-fit with aspect ratio
pbReceiptImage.Width = 250;
pbReceiptImage.Height = 250;
pbReceiptImage.BorderStyle = BorderStyle.FixedSingle; // Optional border
}
private void Reciept_Load(object sender, EventArgs e)
{
// Configure PictureBox
pbReceiptImage.SizeMode = PictureBoxSizeMode.Zoom;
pbReceiptImage.Width = 250;
pbReceiptImage.Height = 250;
pbReceiptImage.BorderStyle = BorderStyle.FixedSingle;
LoadStudentNamesToComboBox();
// ADD THESE LINES:
searchTimer = new System.Windows.Forms.Timer();
searchTimer.Interval = 500;
searchTimer.Tick += SearchTimer_Tick;
StudentName.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
StudentName.AutoCompleteSource = AutoCompleteSource.CustomSource;
LoadStudentAutoComplete();
LoadReceipts();
}
// Configure DataGridView
private void ConfigureDataGridView()
{
if (dgvReceipts.Columns.Count > 0)
{
// Configure the ReceiptImage column
if (dgvReceipts.Columns.Contains("ReceiptImage"))
{
DataGridViewImageColumn imgColumn = (DataGridViewImageColumn)dgvReceipts.Columns["ReceiptImage"];
imgColumn.ImageLayout = DataGridViewImageCellLayout.Zoom; // Auto-fit image
imgColumn.Width = 150; // Set appropriate width
imgColumn.HeaderText = "Receipt Image";
}
// Hide unnecessary columns
dgvReceipts.Columns["ImageFileName"].Visible = false;
dgvReceipts.Columns["CreatedDate"].Visible = false;
dgvReceipts.Columns["ReceiptID"].Visible = false;
dgvReceipts.Columns["ReceiptImage"].Visible = true;
// Set row height to accommodate images
dgvReceipts.RowTemplate.Height = 100;
// Enable auto-sizing for better layout
dgvReceipts.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
// Except for the image column which should have fixed width
if (dgvReceipts.Columns.Contains("ReceiptImage"))
{
dgvReceipts.Columns["ReceiptImage"].AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
dgvReceipts.Columns["ReceiptImage"].Width = 150;
}
// Optional: Set word wrap for text columns
dgvReceipts.DefaultCellStyle.WrapMode = DataGridViewTriState.True;
}
}
private void btnUploadImage_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog
{
Filter = "Image Files|*.jpg;*.jpeg;*.png;*.bmp;*.gif",
Title = "Select Receipt Image"
};
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
try
{
// Display image in PictureBox - will auto-fit with Zoom mode
pbReceiptImage.Image = Image.FromFile(openFileDialog.FileName);
pbReceiptImage.SizeMode = PictureBoxSizeMode.Zoom; // Ensure it's set
// Convert image to byte array
imageBytes = File.ReadAllBytes(openFileDialog.FileName);
imageFileName = Path.GetFileName(openFileDialog.FileName);
MessageBox.Show("Image uploaded successfully!", "Success",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show("Error uploading image: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
private void btnSave_Click(object sender, EventArgs e)
{
// Validation
if (string.IsNullOrWhiteSpace(txtReceiptNumber.Text))
{
MessageBox.Show("Please enter Receipt Number", "Validation Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txtReceiptNumber.Focus();
return;
}
if (string.IsNullOrWhiteSpace(txtStudentID.Text))
{
MessageBox.Show("Please enter Student ID", "Validation Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txtStudentID.Focus();
return;
}
if (string.IsNullOrWhiteSpace(txtAmountPaid.Text))
{
MessageBox.Show("Please enter Amount Paid", "Validation Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txtAmountPaid.Focus();
return;
}
decimal amountPaid;
if (!decimal.TryParse(txtAmountPaid.Text, out amountPaid))
{
MessageBox.Show("Please enter a valid amount", "Validation Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txtAmountPaid.Focus();
return;
}
if (string.IsNullOrWhiteSpace(txtCashierName.Text))
{
MessageBox.Show("Please enter Cashier Name", "Validation Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txtCashierName.Focus();
return;
}
// Save to database
SaveReceipt();
// ========== INHERITED FROM btnMarkReturned_Click ==========
string clientID = ClientID.Text.Trim(); // Use ClientID from the form
if (string.IsNullOrEmpty(clientID))
{
// If ClientID is not provided, skip the mark returned logic
return;
}
try
{
using (SqlConnection con = new SqlConnection(connectionString))
{
con.Open();
// ✅ 1. Check if record exists with 'Report filed by librarian' status
string checkQuery = @"
SELECT COUNT(*) FROM IssueBooks
WHERE ClientID = @ClientID AND Status = 'Report filed by librarian'";
using (SqlCommand checkCmd = new SqlCommand(checkQuery, con))
{
checkCmd.Parameters.AddWithValue("@ClientID", clientID);
int count = (int)checkCmd.ExecuteScalar();
if (count == 0)
{
MessageBox.Show("No record found with status 'Report filed by librarian' for this Client ID.",
"Not Found", MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearForm();
return;
}
}
// ✅ 2. Update IssueBooks to mark as Returned
string updateQuery = @"
UPDATE IssueBooks
SET Status = 'Returned', ReturnDate = GETDATE()
WHERE ClientID = @ClientID AND Status = 'Report filed by librarian'";
using (SqlCommand updateCmd = new SqlCommand(updateQuery, con))
{
updateCmd.Parameters.AddWithValue("@ClientID", clientID);
int rows = updateCmd.ExecuteNonQuery();
if (rows > 0)
{
// ✅ 3. Automatically mark any pending penalties as paid
string clearPenaltyQuery = @"
UPDATE PendingPenalties
SET IsPaid = 1
WHERE ClientID = @ClientID AND IsPaid = 0";
using (SqlCommand clearPenaltyCmd = new SqlCommand(clearPenaltyQuery, con))
{
clearPenaltyCmd.Parameters.AddWithValue("@ClientID", clientID);
clearPenaltyCmd.ExecuteNonQuery();
}
// ✅ 4. Check if student has ANY remaining issues
string checkRemainingIssuesQuery = @"
SELECT COUNT(*)
FROM IssueBooks
WHERE ClientID = @ClientID
AND (
Penalty > 0
OR Status = 'Overdue'
OR Status = 'Report filed by librarian'
OR Status = 'Issued'
)
AND Status != 'Returned'";
int remainingIssues = 0;
using (SqlCommand checkRemainingCmd = new SqlCommand(checkRemainingIssuesQuery, con))
{
checkRemainingCmd.Parameters.AddWithValue("@ClientID", clientID);
remainingIssues = (int)checkRemainingCmd.ExecuteScalar();
}
// ✅ 5. Check again for unpaid penalties (after clearing)
string checkPendingPenaltiesQuery = @"
SELECT COUNT(*)
FROM PendingPenalties
WHERE ClientID = @ClientID AND IsPaid = 0";
int pendingPenalties = 0;
using (SqlCommand checkPendingCmd = new SqlCommand(checkPendingPenaltiesQuery, con))
{
checkPendingCmd.Parameters.AddWithValue("@ClientID", clientID);
pendingPenalties = (int)checkPendingCmd.ExecuteScalar();
}
// ✅ 6. Update AddStudentAcc status
if (remainingIssues == 0 && pendingPenalties == 0)
{
string updateStatusQuery = @"
UPDATE AddStudentAcc
SET Status = 'Inactive'
WHERE ClientID = @ClientID";
using (SqlCommand updateStatusCmd = new SqlCommand(updateStatusQuery, con))
{
updateStatusCmd.Parameters.AddWithValue("@ClientID", clientID);
int statusUpdated = updateStatusCmd.ExecuteNonQuery();
MessageBox.Show(
$"✅ Receipt saved & Book successfully returned!\n\n" +
$"Student status updated to 'Inactive' (Rows affected: {statusUpdated}).\n" +
$"The student can now borrow books again.",
"Success",
MessageBoxButtons.OK,
MessageBoxIcon.Information
);
ClearForm();
}
}
else
{
MessageBox.Show(
$"✅ Receipt saved & Book returned successfully!\n\n" +
$"⚠️ However, this student still has:\n" +
$"• {remainingIssues} unreturned/overdue book(s)\n" +
$"• {pendingPenalties} unpaid penalty/penalties\n\n" +
$"Status remains as 'With Pending Issues'.\n" +
$"Student cannot borrow until all issues are resolved.",
"Partial Success",
MessageBoxButtons.OK,
MessageBoxIcon.Warning
);
ClearForm();
}
// ✅ 7. Log the activity
ActivityLog.RecordActivity(
SessionData.CurrentUserName,
"Mark Returned (Damage Report)",
"Receipt Module",
$"Marked damage report as returned for ClientID: {clientID} via receipt save"
);
// ✅ 8. Refresh CreateAcc form if open
foreach (Form openForm in Application.OpenForms)
{
if (openForm is CreateAcc createAccForm)
{
createAccForm.LoadStudentAccounts();
break;
}
}
// ✅ 9. Refresh Issue form if open
foreach (Form openForm in Application.OpenForms)
{
if (openForm is Issue issueForm)
{
issueForm.LoadIssueBooks();
issueForm.LoadReturnedBooks();
issueForm.UpdateTotalOverdueLabel();
break;
}
}
// ✅ 10. Refresh DamagedBookReport form if open
foreach (Form openForm in Application.OpenForms)
{
if (openForm is DamagedBookReport damageForm)
{
damageForm.LoadDamageReports();
break;
}
}
}
else
{
MessageBox.Show("Receipt saved, but no rows were updated in IssueBooks.",
"Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error updating book return status: " + ex.Message,
"Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
// Save Receipt to Database
private void SaveReceipt()
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = @"INSERT INTO Receipts
(ReceiptNumber, StudentID, AmountPaid, DatePaid, CashierName, Purpose, ReceiptImage, ImageFileName,StudentName,ClientID)
VALUES
(@ReceiptNumber, @StudentID, @AmountPaid, @DatePaid, @CashierName, @Purpose, @ReceiptImage, @ImageFileName,@StudentName,@ClientID)";
using (SqlCommand cmd = new SqlCommand(query, conn))
{
cmd.Parameters.AddWithValue("@ReceiptNumber", txtReceiptNumber.Text.Trim());
cmd.Parameters.AddWithValue("@StudentID", txtStudentID.Text.Trim());
cmd.Parameters.AddWithValue("@AmountPaid", decimal.Parse(txtAmountPaid.Text));
cmd.Parameters.AddWithValue("@DatePaid", dtpDatePaid.Value.Date);
cmd.Parameters.AddWithValue("@CashierName", txtCashierName.Text.Trim());
cmd.Parameters.AddWithValue("@Purpose", string.IsNullOrWhiteSpace(txtPurpose.Text) ?
(object)DBNull.Value : txtPurpose.Text.Trim());
cmd.Parameters.AddWithValue("@ReceiptImage", imageBytes ?? (object)DBNull.Value);
cmd.Parameters.AddWithValue("@ImageFileName", string.IsNullOrWhiteSpace(imageFileName) ?
(object)DBNull.Value : imageFileName);
cmd.Parameters.AddWithValue("@StudentName", StudentName.Text.Trim());
cmd.Parameters.AddWithValue("@ClientID", ClientID.Text.Trim());
cmd.ExecuteNonQuery();
MessageBox.Show("Receipt saved successfully!", "Success",
MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearForm();
LoadReceipts();
}
}
}
catch (SqlException ex)
{
if (ex.Number == 2627) // Duplicate key error
{
MessageBox.Show("Receipt Number already exists!", "Duplicate Entry",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
else
{
MessageBox.Show("Database Error: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
catch (Exception ex)
{
MessageBox.Show("Error saving receipt: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnClear_Click(object sender, EventArgs e)
{
ClearForm();
}
// Load student names for autocomplete
private void LoadStudentAutoComplete()
{
try
{
AutoCompleteStringCollection autoComplete = new AutoCompleteStringCollection();
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = "SELECT Name FROM AddStudentAcc ORDER BY Name";
using (SqlCommand cmd = new SqlCommand(query, conn))
using (SqlDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
{
autoComplete.Add(reader["Name"].ToString());
}
}
}
StudentName.AutoCompleteCustomSource = autoComplete;
}
catch (Exception ex)
{
MessageBox.Show("Error loading autocomplete data: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
// Clear Form
private void ClearForm()
{
txtReceiptNumber.Clear();
txtStudentID.Clear();
txtAmountPaid.Clear();
dtpDatePaid.Value = DateTime.Now;
txtCashierName.Clear();
txtPurpose.Clear();
pbReceiptImage.Image = null;
imageBytes = null;
imageFileName = "";
StudentName.Text = "";
ClientID.Text = ""; // ADD THIS LINE
txtReceiptNumber.Focus();
}
private void btnSearch_Click(object sender, EventArgs e)
{
string searchTerm = txtReceiptNumber.Text.Trim();
if (string.IsNullOrWhiteSpace(searchTerm))
{
MessageBox.Show("Please enter Receipt Number or Student ID to search",
"Search", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
SearchReceipt(searchTerm);
}
// Search Receipt
private void SearchReceipt(string searchTerm)
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = @"SELECT * FROM Receipts
WHERE ReceiptNumber = @SearchTerm OR StudentID = @SearchTerm";
using (SqlCommand cmd = new SqlCommand(query, conn))
{
cmd.Parameters.AddWithValue("@SearchTerm", searchTerm);
using (SqlDataReader reader = cmd.ExecuteReader())
{
if (reader.Read())
{
txtReceiptNumber.Text = reader["ReceiptNumber"].ToString();
txtStudentID.Text = reader["StudentID"].ToString();
ClientID.Text = reader["ClientID"].ToString();
txtAmountPaid.Text = reader["AmountPaid"].ToString();
dtpDatePaid.Value = Convert.ToDateTime(reader["DatePaid"]);
txtCashierName.Text = reader["CashierName"].ToString();
txtPurpose.Text = reader["Purpose"].ToString();
StudentName.Text = reader["StudentName"].ToString();
// Load image if exists
if (reader["ReceiptImage"] != DBNull.Value)
{
imageBytes = (byte[])reader["ReceiptImage"];
imageFileName = reader["ImageFileName"].ToString();
using (MemoryStream ms = new MemoryStream(imageBytes))
{
pbReceiptImage.Image = Image.FromStream(ms);
}
}
else
{
pbReceiptImage.Image = null;
}
MessageBox.Show("Receipt found!", "Search Result",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("Receipt not found!", "Search Result",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error searching receipt: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void btnDelete_Click(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(txtReceiptNumber.Text))
{
MessageBox.Show("Please search for a receipt first", "Delete",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
DialogResult result = MessageBox.Show(
"Are you sure you want to delete this receipt?",
"Confirm Delete",
MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
DeleteReceipt();
}
}
// Delete Receipt
private void DeleteReceipt()
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = "DELETE FROM Receipts WHERE ReceiptNumber = @ReceiptNumber";
using (SqlCommand cmd = new SqlCommand(query, conn))
{
cmd.Parameters.AddWithValue("@ReceiptNumber", txtReceiptNumber.Text.Trim());
int rowsAffected = cmd.ExecuteNonQuery();
if (rowsAffected > 0)
{
MessageBox.Show("Receipt deleted successfully!", "Success",
MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearForm();
LoadReceipts();
}
else
{
MessageBox.Show("Receipt not found!", "Delete",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error deleting receipt: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
// Load All Receipts to DataGridView
private void LoadReceipts()
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = "SELECT * FROM Receipts ORDER BY DatePaid DESC";
using (SqlDataAdapter adapter = new SqlDataAdapter(query, conn))
{
DataTable dt = new DataTable();
adapter.Fill(dt);
// Add an image column to display thumbnails
if (!dt.Columns.Contains("ImageThumbnail"))
{
dt.Columns.Add("ImageThumbnail", typeof(Image));
}
// Convert byte arrays to images
foreach (DataRow row in dt.Rows)
{
if (row["ReceiptImage"] != DBNull.Value)
{
byte[] imgBytes = (byte[])row["ReceiptImage"];
using (MemoryStream ms = new MemoryStream(imgBytes))
{
Image originalImage = Image.FromStream(ms);
// Create a thumbnail for better performance
row["ImageThumbnail"] = ResizeImage(originalImage, 150, 100);
}
}
}
dgvReceipts.DataSource = dt;
ConfigureDataGridView();
// Make sure to show the thumbnail column instead of the byte array
if (dgvReceipts.Columns.Contains("ImageThumbnail"))
{
dgvReceipts.Columns["ImageThumbnail"].DisplayIndex =
dgvReceipts.Columns["ReceiptImage"].DisplayIndex;
dgvReceipts.Columns["ReceiptImage"].Visible = false;
dgvReceipts.Columns["ImageThumbnail"].Visible = true;
dgvReceipts.Columns["ImageThumbnail"].HeaderText = "Receipt Image";
DataGridViewImageColumn imgCol = (DataGridViewImageColumn)dgvReceipts.Columns["ImageThumbnail"];
imgCol.ImageLayout = DataGridViewImageCellLayout.Zoom;
imgCol.Width = 150;
imgCol.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
}
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error loading receipts: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private Image ResizeImage(Image img, int maxWidth, int maxHeight)
{
if (img == null) return null;
double ratioX = (double)maxWidth / img.Width;
double ratioY = (double)maxHeight / img.Height;
double ratio = Math.Min(ratioX, ratioY);
int newWidth = (int)(img.Width * ratio);
int newHeight = (int)(img.Height * ratio);
Bitmap newImage = new Bitmap(newWidth, newHeight);
using (Graphics g = Graphics.FromImage(newImage))
{
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
g.DrawImage(img, 0, 0, newWidth, newHeight);
}
return newImage;
}
private void LoadData(DataGridViewRow row)
{
if (row == null) return;
txtReceiptNumber.Text = row.Cells["ReceiptNumber"].Value?.ToString() ?? "";
txtStudentID.Text = row.Cells["StudentID"].Value?.ToString() ?? "";
ClientID.Text = row.Cells["ClientID"].Value?.ToString() ?? "";
txtAmountPaid.Text = row.Cells["AmountPaid"].Value?.ToString() ?? "";
dtpDatePaid.Value = row.Cells["DatePaid"].Value != DBNull.Value
? Convert.ToDateTime(row.Cells["DatePaid"].Value)
: DateTime.Now;
txtCashierName.Text = row.Cells["CashierName"].Value?.ToString() ?? "";
txtPurpose.Text = row.Cells["Purpose"].Value?.ToString() ?? "";
// Load image
if (row.Cells["ReceiptImage"].Value != DBNull.Value)
{
imageBytes = (byte[])row.Cells["ReceiptImage"].Value;
imageFileName = row.Cells["ImageFileName"].Value?.ToString() ?? "";
using (MemoryStream ms = new MemoryStream(imageBytes))
{
pbReceiptImage.Image = Image.FromStream(ms);
}
}
else
{
pbReceiptImage.Image = null;
imageBytes = null;
imageFileName = "";
}
}
private void dgvReceipts_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
DataGridViewRow row = dgvReceipts.Rows[e.RowIndex];
LoadData(row);
}
}
private void button1_Click(object sender, EventArgs e)
{
foreach (Form openForm in Application.OpenForms)
{
if (openForm is DamagedBookReport)
{
openForm.Show();
this.Hide();
return;
}
}
// If not open, create it
DamagedBookReport form1 = new DamagedBookReport();
form1.Show();
this.Hide();
}
private void txtSearch_TextChanged(object sender, EventArgs e)
{
string search = txtSearch.Text.Replace("'", "''"); // Escape single quotes
(dgvReceipts.DataSource as DataTable).DefaultView.RowFilter =
$"ISNULL(StudentName, '') LIKE '%{search}%' " +
$"OR ISNULL(CONVERT(StudentID, 'System.String'), '') LIKE '%{search}%'";
}
private void guna2CirclePictureBox1_Click(object sender, EventArgs e)
{
}
private void pbReceiptImage_Click(object sender, EventArgs e)
{
}
private void ClientID_TextChanged(object sender, EventArgs e)
{
if (isUpdatingFields) return;
string clientIdText = ClientID.Text.Trim();
// ADD THIS:
if (string.IsNullOrEmpty(clientIdText))
{
isUpdatingFields = true;
StudentName.SelectedIndex = -1;
txtStudentID.Clear();
isUpdatingFields = false;
return;
}
// Check if it's a valid number
if (!int.TryParse(clientIdText, out int clientIdValue))
{
return;
}
AutoFillFromClientID(clientIdValue);
}
private void StudentName_TextChanged(object sender, EventArgs e)
{
if (isUpdatingFields) return;
if (searchTimer == null) return;
// ADD THIS:
if (string.IsNullOrWhiteSpace(StudentName.Text))
{
isUpdatingFields = true;
ClientID.Clear();
txtStudentID.Clear();
isUpdatingFields = false;
return;
}
}
private void SearchTimer_Tick(object sender, EventArgs e)
{
searchTimer.Stop();
string studentName = StudentName.Text.Trim();
if (!string.IsNullOrEmpty(studentName))
{
AutoFillFromStudentName(studentName);
}
}
private void LoadStudentNamesToComboBox()
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = "SELECT ClientID, Name, StudentNumber FROM AddStudentAcc ORDER BY Name";
DataTable dt = new DataTable();
using (SqlCommand cmd = new SqlCommand(query, conn))
using (SqlDataAdapter adapter = new SqlDataAdapter(cmd))
{
adapter.Fill(dt);
}
StudentName.DataSource = dt;
StudentName.DisplayMember = "Name";
StudentName.ValueMember = "ClientID";
StudentName.SelectedIndex = -1;
}
}
catch (Exception ex)
{
MessageBox.Show("Error loading student names: " + ex.Message);
}
}
private void StudentName_SelectedIndexChanged(object sender, EventArgs e)
{
if (isUpdatingFields) return;
// ADD THIS CHECK:
if (StudentName.SelectedIndex == -1) return;
string studentName = StudentName.Text.Trim();
if (!string.IsNullOrEmpty(studentName))
{
AutoFillFromStudentName(studentName);
}
}
// Auto-fill fields based on ClientID
private void AutoFillFromClientID(int clientId)
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
string query = @"SELECT ClientID, Name, StudentNumber
FROM AddStudentAcc
WHERE ClientID = @ClientID";
using (SqlCommand cmd = new SqlCommand(query, conn))
{
cmd.Parameters.AddWithValue("@ClientID", clientId);
using (SqlDataReader reader = cmd.ExecuteReader())
{
if (reader.Read())
{
isUpdatingFields = true;
StudentName.Text = reader["Name"].ToString();
txtStudentID.Text = reader["StudentNumber"].ToString();
isUpdatingFields = false;
}
}
}
}
}
catch (Exception ex)
{
// Silently handle errors during auto-fill to avoid annoying popups
Console.WriteLine("AutoFill Error: " + ex.Message);
}
}
// Auto-fill fields based on Student Name
private void AutoFillFromStudentName(string studentName)
{
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
// Use exact match first, then partial match
string query = @"SELECT TOP 1 ClientID, Name, StudentNumber
FROM AddStudentAcc
WHERE Name = @StudentName
OR Name LIKE @StudentNamePattern
ORDER BY
CASE WHEN Name = @StudentName THEN 0 ELSE 1 END,
Name";
using (SqlCommand cmd = new SqlCommand(query, conn))
{
cmd.Parameters.AddWithValue("@StudentName", studentName);
cmd.Parameters.AddWithValue("@StudentNamePattern", studentName + "%");
using (SqlDataReader reader = cmd.ExecuteReader())
{
if (reader.Read())
{
isUpdatingFields = true;
ClientID.Text = reader["ClientID"].ToString();
txtStudentID.Text = reader["StudentNumber"].ToString();
// Update the ComboBox text to exact match
StudentName.Text = reader["Name"].ToString();
isUpdatingFields = false;
}
}
}
}
}
catch (Exception ex)
{
// Silently handle errors during auto-fill
Console.WriteLine("AutoFill Error: " + ex.Message);
}
}
}// this is the enddddddddddddddddddddddddddddddddddddd
}// haha