checks
ci-cd-vm / ci-cd (push) Successful in 2m17s

This commit is contained in:
Chris Chen
2026-06-25 15:51:52 -07:00
parent d32eea3523
commit 55543af5e1
5 changed files with 63 additions and 12 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ public class ExpenseListItemDto
public string PrimaryCategoryName { get; set; } = ""; // first line's category (list hint; full breakdown via detail)
public string? VendorName { get; set; }
public int? MemberId { get; set; }
public string? MemberName { get; set; }
public string? MemberName { get; set; } // legal name "FirstName_en LastName_en" (used on the printed check)
public string? MemberNickName { get; set; } // "NickName LastName_en"; null when the member has no distinct nickname
public string ExpenseDate { get; set; } = ""; // yyyy-MM-dd
public bool HasReceipt { get; set; }
public string? CheckNumber { get; set; }