세금계산서 업그레이드

This commit is contained in:
leeheejin
2025-12-08 16:18:44 +09:00
parent 0ffec7f443
commit ed1626d391
7 changed files with 643 additions and 8 deletions

View File

@@ -18,6 +18,9 @@ router.get("/", TaxInvoiceController.getList);
// 월별 통계 (상세 조회보다 먼저 정의해야 함)
router.get("/stats/monthly", TaxInvoiceController.getMonthlyStats);
// 비용 유형별 통계
router.get("/stats/cost-type", TaxInvoiceController.getCostTypeStats);
// 상세 조회
router.get("/:id", TaxInvoiceController.getById);