feat(1099): 1099 recipients master page with nav + route

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-25 17:31:48 -07:00
parent bf247726e1
commit d1747b510e
5 changed files with 465 additions and 0 deletions
+9
View File
@@ -228,6 +228,15 @@ export const routes: Routes = [
title: 'Form 990 — Functional Expenses', titleZh: 'Form 990 功能性費用表', section: 'Finance',
},
},
{
path: 'finance/payee-1099',
loadComponent: () => import('./features/payee1099/pages/payee-1099-page/payee-1099-page.component').then(m => m.Payee1099PageComponent),
canActivate: [PermissionGuard],
data: {
permission: { module: PermissionModules.Form1099, action: 'read' },
title: '1099 Recipients', titleZh: '1099 收款人', section: 'Finance',
},
},
]
},