feat(web): map expense categories to Form 990 lines in the category admin page

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-24 19:38:17 -07:00
parent 1a03a1cbba
commit 4438c351e2
5 changed files with 50 additions and 13 deletions
@@ -0,0 +1,8 @@
export interface Form990ExpenseLineDto {
id: number;
lineCode: string;
name_en: string;
name_zh: string | null;
sortOrder: number;
label?: string; // bilingual "code — name", filled by service
}