docs: [finance] 계정별원장 서비스 이관 기획서 + FE API 명세 추가

This commit is contained in:
김보곤
2026-03-20 08:34:47 +09:00
parent 24e31e0ae6
commit a48ad284d1
3 changed files with 653 additions and 1 deletions

View File

@@ -44,6 +44,7 @@
| 부적합관리 | `dev/dev_plans/nonconforming-management-plan.md` | 자재관리 부적합관리 기획 (불량내역/처리방법/자재비용) |
| 계정별원장·손익계산서 | `dev/dev_plans/account-ledger-income-statement-plan.md` | 계정별원장 + 손익계산서 신규 메뉴 기획 (더존 참고) |
| 경조사비 서비스 이관 | `dev/dev_plans/condolence-expense-service-plan.md` | MNG 경조사비 → API+React 서비스 이관 기획 |
| 계정별원장 서비스 이관 | `dev/dev_plans/account-ledger-service-migration-plan.md` | MNG 계정별원장 → API+React 서비스 이관 기획 (API 완료) |
| 서버 운영 | `dev/deploys/ops-manual/README.md` | 서버 운영 매뉴얼 |
| 서버 접근/백업 | `system/server-access-management.md` | 계정, 권한, 백업, 리플리케이션 |
| 이관 작업 | `system/migration-status.md` | MNG→API+React 이관 현황, 우선순위, 로드맵 |
@@ -332,7 +333,8 @@ DB 도메인별:
| [ai-token-usage-api.md](frontend/api-specs/ai-token-usage-api.md) | AI 토큰사용량 API 명세 (2개 엔드포인트 + 화면 가이드 + 타입 정의) |
| [usage-subscription-api.md](frontend/api-specs/usage-subscription-api.md) | 이용현황(구독관리 통합) API 명세 (API 완료, 화면 가이드, 타입 정의, 피드백 반영) |
| [nonconforming-api.md](frontend/api-specs/nonconforming-api.md) | 부적합관리 API 명세 (7개 엔드포인트 + 화면 가이드 + Server Actions 예시) |
| [account-ledger-income-statement-api.md](frontend/api-specs/account-ledger-income-statement-api.md) | 계정별원장·손익계산서 API 명세 (2개 엔드포인트 + TypeScript 타입 + 화면 가이드) |
| [account-ledger-income-statement-api.md](frontend/api-specs/account-ledger-income-statement-api.md) | 계정별원장·손익계산서 API 명세 (초기 버전) |
| [account-ledger-service-api.md](frontend/api-specs/account-ledger-service-api.md) | 계정별원장 서비스 이관 API 명세 (카드거래+분리전표 보강, 최신) |
| [condolence-expense-api.md](frontend/api-specs/condolence-expense-api.md) | 경조사비 관리 API 명세 (6개 엔드포인트 + TypeScript 타입 + 화면 가이드) |
| [condolence-dashboard-fe-request.md](frontend/api-specs/condolence-dashboard-fe-request.md) | 경조사비 대시보드 연동 FE 구현 요청 (condolence_summary 카드 추가) |
| [vehicle-react-implementation.md](plans/vehicle-react-implementation.md) | 차량관리 React 구현 요청서 (3개 메뉴, 컴포넌트 구조, 타입 정의) |

View File

@@ -0,0 +1,294 @@
# 계정별원장 서비스 이관 기획서
> **작성일**: 2026-03-20
> **상태**: 기획 확정, API 완료
> **대상**: MNG → API + React (서비스 이관)
> **위치**: 서비스 > 회계관리 > 계정별원장
---
## 1. 개요
### 1.1 목적
MNG 백오피스의 계정별원장 조회 기능을 서비스(API + React)로 이관한다.
MNG는 Controller에서 직접 DB 조회 → API는 Service-First 패턴의 REST API + React 구조로 재구현한다.
### 1.2 배경
- MNG `회계/세무관리 > 계정별원장` 메뉴로 기존 구현 완료 (2026-03-19)
- API에 `AccountLedgerService` + `AccountLedgerController`가 기존에 존재하나, MNG 대비 기능이 부족
- MNG Controller에 카드거래 상세 조회, 분리전표(split) 필터링 등의 로직이 직접 구현됨
- API 보강 후 React에서 동일 기능을 구현할 수 있도록 한다
### 1.3 이관 범위
| 구분 | MNG (현재) | API + React (이관 후) |
|------|-----------|---------------------|
| **백엔드** | Controller 직접 DB 조회 | `AccountLedgerService` (보강 완료) |
| **프론트** | Blade + React (@verbatim) | React (Next.js) |
| **인증** | 세션 기반 (`session('selected_tenant_id')`) | Bearer 토큰 + `BelongsToTenant` |
| **API 문서** | 없음 | Swagger |
---
## 2. 현재 MNG 기능 분석
### 2.1 데이터 소스
계정별원장은 `journal_entries` + `journal_entry_lines` 테이블 기반으로 조회한다.
카드거래, 홈택스 분개 등은 이미 일반전표(journal)에 포함되어 있으므로 UNION 불필요.
```
journal_entry_lines (분개 행)
├── JOIN journal_entries (전표 마스터)
├── LEFT JOIN trading_partners (거래처 사업자번호)
└── 추가 조회: barobill_card_transactions (카드 상세)
barobill_card_transaction_splits (분리 전표 유효성)
```
### 2.2 MNG 기능 목록
| 기능 | MNG 메서드 | API 대응 |
|------|-----------|---------|
| 페이지 렌더링 | `index()` | React 라우트 |
| 데이터 조회 | `list()` | `GET /api/v1/account-ledger` |
| 카드거래 상세 | `fetchCardTransactions()` (private) | Service 내부 메서드 |
| 이월잔액 계산 | `calculateCarryForward()` (private) | Service 내부 메서드 |
| 분리전표 필터링 | `list()` 내부 로직 | `filterSplitLines()` (private) |
| 전표 드릴다운 | 프론트에서 별도 API 호출 | `GET /api/v1/general-journal-entries/{id}` |
| 계정과목 목록 | MNG 내부 API | `GET /api/v1/account-subjects` |
| 인쇄 | `window.print()` | React에서 동일 |
### 2.3 MNG ↔ API 차이점 (보강 전/후)
| 항목 | MNG | API (보강 전) | API (보강 후) |
|------|-----|-------------|-------------|
| `source_type` | `COALESCE(je.source_type, 'journal')` | 하드코딩 `'journal'` | `COALESCE` 사용 |
| `source_key` | 응답에 포함 | 미포함 | 포함 |
| 카드거래 상세 (`card_tx`) | 포함 | 미포함 | 포함 |
| 분리전표 필터링 | 포함 | 미포함 | 포함 |
| 거래처명 카드 가맹점 대체 | 포함 | 미포함 | 포함 |
---
## 3. API 보강 내역 (완료)
### 3.1 수정 파일
| 파일 | 변경 내용 |
|------|----------|
| `api/app/Services/AccountLedgerService.php` | 4개 기능 추가 |
### 3.2 추가된 기능
**1) source_type 동적 조회**
```php
// 변경 전
DB::raw("'journal' as source_type")
// 변경 후
DB::raw("COALESCE(je.source_type, 'journal') as source_type")
```
**2) source_key 필드 추가**
- 쿼리 select에 `'je.source_key'` 추가
- 카드거래 매칭, 분리전표 판별에 사용
**3) 분리전표 필터링 (`filterSplitLines`)**
- `barobill_card_transaction_splits` 테이블에서 유효한 split ID만 조회
- 무효한 분리전표 행 제거
- 분리전표가 존재하는 원본 전표 행 제거
**4) 카드거래 상세 조회 (`fetchCardTransactions`)**
- `source_type === 'ecard_transaction'`인 행의 `source_key`를 파싱
- `barobill_card_transactions` 테이블에서 카드번호, 카드사, 가맹점, 공제/불공제 등 조회
- 카드 가맹점명이 있으면 `trading_partner_name` 대체
---
## 4. API 엔드포인트
### 4.1 계정별원장 조회
| Method | Path | 설명 |
|--------|------|------|
| `GET` | `/api/v1/account-ledger` | 계정별원장 데이터 조회 |
### 4.2 요청 파라미터
| 파라미터 | 타입 | 필수 | 설명 |
|---------|------|:----:|------|
| `start_date` | `string(date)` | Y | 조회 시작일 |
| `end_date` | `string(date)` | Y | 조회 종료일 |
| `account_code` | `string` | Y | 계정과목 코드 |
### 4.3 응답 구조
```typescript
interface AccountLedgerResponse {
success: boolean;
message: string;
data: {
account: {
code: string; // "81100"
name: string; // "복리후생비"
category: string; // "expense"
} | null;
period: {
start_date: string;
end_date: string;
};
carry_forward: {
debit: number;
credit: number;
balance: number;
};
monthly_data: MonthlyData[];
grand_total: {
debit: number;
credit: number;
balance: number;
};
};
}
interface MonthlyData {
month: string; // "2026-03"
items: LedgerItem[];
subtotal: { debit: number; credit: number };
cumulative: { debit: number; credit: number };
}
interface LedgerItem {
date: string;
description: string | null;
trading_partner_name: string | null;
biz_no: string | null;
debit_amount: number;
credit_amount: number;
balance: number;
source_type: string; // 'journal' | 'ecard_transaction' | 'bank_transaction' 등
source_id: number;
card_tx: CardTransaction | null;
}
interface CardTransaction {
card_num: string; // "1234567890123456"
card_company_name: string; // "삼성카드"
merchant_name: string; // "스타벅스 강남점"
merchant_biz_num: string; // "1234567890"
deduction_type: string; // "deductible" | "non_deductible"
supply_amount: number; // 공급가액
tax_amount: number; // 세액
approval_amount: number; // 승인금액
}
```
### 4.4 관련 API
| API | 용도 |
|-----|------|
| `GET /api/v1/account-subjects` | 계정과목 목록 (필터 드롭다운) |
| `GET /api/v1/account-subjects?selectable=true` | 입력 가능 계정과목만 (depth=3) |
| `GET /api/v1/general-journal-entries/{id}` | 전표 상세 (드릴다운) |
---
## 5. React 구현 요구사항
### 5.1 화면 구성
```
┌──────────────────────────────────────────────┐
│ 📖 계정별원장 [인쇄] │
├──────────────────────────────────────────────┤
│ 조회기간: [시작일] ~ [종료일] │
│ 계정과목: [코드/이름 검색 드롭다운] [조회] │
├──────────────────────────────────────────────┤
│ 81100 복리후생비 (2026-01-01 ~ 2026-03-20) │
├──────┬────────┬──────┬──────┬──────┬──────┬──────┤
│ 날짜 │ 적요 │거래처│사업자│ 차변 │ 대변 │ 잔액 │
├──────┼────────┼──────┼──────┼──────┼──────┼──────┤
│ - │이월잔액│ │ │ 0 │ 0 │ 0 │
├──────┼────────┼──────┼──────┼──────┼──────┼──────┤
│01-11 │복리후생│ │ │160000│ │160000│
│ ... │ ... │ │ │ ... │ ... │ ... │
├──────┼────────┼──────┼──────┼──────┼──────┼──────┤
│ │ 2026-01 계 │ │합계 │ │ │
│ │ 누 계 │ │합계 │ │ │
├──────┼────────┼──────┼──────┼──────┼──────┼──────┤
│ │ 총 합 계 │ │합계 │합계 │최종 │
└──────┴────────┴──────┴──────┴──────┴──────┴──────┘
```
### 5.2 핵심 기능
| 기능 | 설명 |
|------|------|
| **조회 필터** | 기간(date range) + 계정과목 검색 (코드/이름 자동완성) |
| **이월잔액** | 조회 시작일 이전 누적 잔액 (첫 행에 표시) |
| **월별 소계/누계** | 월이 바뀔 때마다 소계 행 + 누계 행 |
| **잔액 계산** | 자산/비용 = 차변-대변, 부채/자본/수익 = 대변-차변 |
| **카드거래 표시** | `card_tx` 있으면 카드 아이콘 + 공제/불공제 배지 + 카드사·끝4자리 |
| **드릴다운** | 행 클릭 → 전표 상세 모달 (journal/ecard_transaction/bank_transaction) |
| **인쇄** | CSS `@media print` 활용, 조회 조건 영역 숨김 |
### 5.3 잔액 계산 규칙
| 계정 카테고리 | 정상 방향 | 잔액 = |
|-------------|----------|--------|
| `asset` (자산) | 차변 | 차변 - 대변 |
| `expense` (비용) | 차변 | 차변 - 대변 |
| `liability` (부채) | 대변 | 대변 - 차변 |
| `capital` (자본) | 대변 | 대변 - 차변 |
| `revenue` (수익) | 대변 | 대변 - 차변 |
### 5.4 드릴다운 로직
```
행 클릭 시 source_type 기반 분기:
├── 'journal' | 'ecard_transaction' | 'bank_transaction'
│ → GET /api/v1/general-journal-entries/{source_id}
│ → 전표 상세 모달 (분개 라인 테이블 + 카드정보)
└── 'hometax'
→ 홈택스 세금계산서 상세 (별도 API 필요 시 추후 추가)
```
### 5.5 카드거래 표시 규격
`card_tx`가 존재하는 행은 다음과 같이 표시:
- **적요 셀**: 💳 아이콘 + 적요 텍스트 + `[공제]`/`[불공제]` 배지
- **적요 셀 하단**: `카드사명 ····끝4자리` (서브텍스트)
- **거래처 셀**: `card_tx.merchant_name` 우선 (없으면 `trading_partner_name`)
- **사업자번호 셀**: `card_tx.merchant_biz_num` 우선
---
## 6. MNG 참고 화면
MNG(백오피스)에 동일 기능이 구현되어 있다. 화면 레이아웃과 UX를 참고한다.
> MNG 개발서버: `https://admin.codebridge-x.com` → 회계/세무관리 > 계정별원장
### 6.1 MNG 소스 참고 파일
| 파일 | 설명 |
|------|------|
| `mng/app/Http/Controllers/Finance/AccountLedgerController.php` | 전체 로직 (카드, split 포함) |
| `mng/resources/views/finance/account-ledger.blade.php` | React 컴포넌트 (UI 참고) |
---
## 관련 문서
- [dev/dev_plans/account-ledger-income-statement-plan.md](account-ledger-income-statement-plan.md) — 원래 MNG 구현 기획서
- [frontend/api-specs/account-ledger-income-statement-api.md](../../frontend/api-specs/account-ledger-income-statement-api.md) — API 명세 (초기 버전)
- [frontend/api-specs/account-ledger-service-api.md](../../frontend/api-specs/account-ledger-service-api.md) — API 명세 (서비스 이관 버전, 최신)
- [features/finance/README.md](../../features/finance/README.md) — 재무관리 기능 개요
---
**최종 업데이트**: 2026-03-20

View File

@@ -0,0 +1,356 @@
# 계정별원장 API 명세 (서비스 이관)
> **작성일**: 2026-03-20
> **상태**: API 완료, React 구현 대기
> **대상**: React 프론트엔드 개발자
---
## 1. 개요
회계관리 메뉴에 **계정별원장** 화면을 구현한다.
선택한 계정과목의 기간별 거래 내역을 조회하고, 월별 소계/누계/잔액을 표시한다.
카드거래인 경우 카드사·가맹점 정보를 추가로 표시하고, 행 클릭 시 전표 상세를 모달로 보여준다.
### 메뉴 위치
```
회계관리
├── 일반전표입력 ← 기존
├── 계정별원장 ← 이 화면
├── 손익계산서 ← 기존
├── ...
```
---
## 2. API 엔드포인트
### 2.1 계정별원장 조회
```
GET /api/v1/account-ledger
```
**요청 파라미터** (Query String):
| 파라미터 | 타입 | 필수 | 설명 | 예시 |
|---------|------|:----:|------|------|
| `start_date` | `string(date)` | Y | 조회 시작일 | `2026-01-01` |
| `end_date` | `string(date)` | Y | 조회 종료일 | `2026-03-20` |
| `account_code` | `string` | Y | 계정과목 코드 | `81100` |
**응답 예시**:
```json
{
"success": true,
"message": "조회되었습니다.",
"data": {
"account": {
"code": "81100",
"name": "복리후생비",
"category": "expense"
},
"period": {
"start_date": "2026-01-01",
"end_date": "2026-03-20"
},
"carry_forward": {
"debit": 0,
"credit": 0,
"balance": 0
},
"monthly_data": [
{
"month": "2026-01",
"items": [
{
"date": "2026-01-11",
"description": "복리후생비",
"trading_partner_name": "스타벅스 강남점",
"biz_no": "1234567890",
"debit_amount": 160000,
"credit_amount": 0,
"balance": 160000,
"source_type": "ecard_transaction",
"source_id": 45,
"card_tx": {
"card_num": "9411320012345678",
"card_company_name": "삼성카드",
"merchant_name": "스타벅스 강남점",
"merchant_biz_num": "1234567890",
"deduction_type": "deductible",
"supply_amount": 145455,
"tax_amount": 14545,
"approval_amount": 160000
}
},
{
"date": "2026-01-15",
"description": "직원 야근 식대",
"trading_partner_name": null,
"biz_no": null,
"debit_amount": 50000,
"credit_amount": 0,
"balance": 210000,
"source_type": "journal",
"source_id": 52,
"card_tx": null
}
],
"subtotal": { "debit": 210000, "credit": 0 },
"cumulative": { "debit": 210000, "credit": 0 }
}
],
"grand_total": {
"debit": 210000,
"credit": 0,
"balance": 210000
}
}
}
```
---
### 2.2 관련 API
| API | 용도 | 비고 |
|-----|------|------|
| `GET /api/v1/account-subjects?selectable=true` | 계정과목 목록 (필터 드롭다운) | `selectable=true` → depth=3 입력 가능 계정만 |
| `GET /api/v1/general-journal-entries/{id}` | 전표 상세 (드릴다운 모달) | source_id로 조회 |
---
## 3. TypeScript 인터페이스
```typescript
// 계정별원장 응답
interface AccountLedgerResponse {
success: boolean;
message: string;
data: {
account: {
code: string;
name: string;
category: 'asset' | 'liability' | 'capital' | 'revenue' | 'expense';
} | null;
period: {
start_date: string;
end_date: string;
};
carry_forward: {
debit: number;
credit: number;
balance: number;
};
monthly_data: MonthlyData[];
grand_total: {
debit: number;
credit: number;
balance: number;
};
};
}
interface MonthlyData {
month: string; // "2026-03"
items: LedgerItem[];
subtotal: { debit: number; credit: number };
cumulative: { debit: number; credit: number };
}
interface LedgerItem {
date: string; // "2026-03-01"
description: string | null;
trading_partner_name: string | null; // 카드거래 시 가맹점명으로 대체됨
biz_no: string | null; // 카드거래 시 가맹점 사업자번호로 대체됨
debit_amount: number;
credit_amount: number;
balance: number; // 누적 잔액
source_type: string; // 'journal' | 'ecard_transaction' | 'bank_transaction' 등
source_id: number; // 전표 ID
card_tx: CardTransaction | null; // 카드거래 상세 (없으면 null)
}
interface CardTransaction {
card_num: string; // 카드번호 전체 (프론트에서 마스킹: ····끝4자리)
card_company_name: string; // "삼성카드"
merchant_name: string; // "스타벅스 강남점"
merchant_biz_num: string; // "1234567890"
deduction_type: string; // "deductible" | "non_deductible"
supply_amount: number; // 공급가액
tax_amount: number; // 세액
approval_amount: number; // 승인금액 (공급가 + 세액)
}
// 전표 상세 (드릴다운 모달용)
interface JournalEntryDetail {
id: number;
entry_no: string; // "JE-20260311-001"
entry_date: string;
entry_type: string;
description: string | null;
total_debit: number;
total_credit: number;
status: 'draft' | 'confirmed';
source_type: string | null;
created_by_name: string | null;
lines: JournalEntryLine[];
}
interface JournalEntryLine {
line_no: number;
dc_type: 'debit' | 'credit';
account_code: string;
account_name: string;
trading_partner_name: string | null;
debit_amount: number;
credit_amount: number;
description: string | null;
}
```
---
## 4. 화면 구현 가이드
### 4.1 화면 구조
```
┌──────────────────────────────────────────────────┐
│ 📖 계정별원장 [인쇄] │
├──────────────────────────────────────────────────┤
│ 조회기간: [시작일] ~ [종료일] │
│ 계정과목: [코드/이름 자동완성 검색] [조회] │
├──────────────────────────────────────────────────┤
│ 81100 복리후생비 (2026-01-01 ~ 2026-03-20) │
├───────┬────────────────┬──────┬──────┬─────┬─────┬───────┤
│ 날짜 │ 적요 │거래처│사업자│차변 │대변 │ 잔액 │
├───────┼────────────────┼──────┼──────┼─────┼─────┼───────┤
│ - │ 이월잔액 │ │ │ 0 │ 0 │ 0 │
│01-11 │ 💳복리후생 [공제]│스타벅│12345 │160K │ │ 160K │
│ │ 삼성 ····5678 │ │ │ │ │ │
│01-15 │ 직원 야근 식대 │ │ │ 50K │ │ 210K │
│-------│--- 2026-01 계 ─│──────│──────│210K │ 0 │ │
│ │ 누 계 │ │ │210K │ 0 │ │
│02-03 │ ... │ │ │ │ │ │
│-------│--- 총 합 계 ────│──────│──────│합계 │합계 │최종잔│
└───────┴────────────────┴──────┴──────┴─────┴─────┴───────┘
```
### 4.2 조회 필터
**계정과목 검색 드롭다운**:
```
GET /api/v1/account-subjects?selectable=true
```
- 텍스트 입력 시 코드 + 이름으로 클라이언트 필터링
- 키보드 방향키(↑↓) + Enter로 선택 가능
- 최대 50개까지 드롭다운 표시
- 선택 후 `코드 이름` 형태로 입력창에 표시 (예: "81100 복리후생비")
**기간 기본값**: 당월 1일 ~ 오늘
### 4.3 테이블 행 유형
| 행 유형 | 조건 | 스타일 |
|---------|------|--------|
| **이월잔액** | `carry_forward.balance !== 0` | 노란 배경, 굵은 글씨 |
| **거래 행** | `items[]` | 일반 + hover 효과, 클릭 가능 |
| **카드거래 행** | `item.card_tx !== null` | 💳 아이콘 + 배지 + 서브텍스트 |
| **월 소계** | 매월 마지막 | 회색 배경, 굵은 글씨 |
| **누계** | 매월 마지막 | 회색 배경, 굵은 글씨 |
| **총합계** | 마지막 | 인디고 배경, 굵은 글씨 |
### 4.4 카드거래 행 표시
`card_tx !== null`인 행은 적요 셀에 추가 정보를 표시한다:
```
┌──────────────────────────────────────────────┐
│ 💳 복리후생비 ┌─────────┐ │
│ │ 공제 │ │ ← deduction_type === 'deductible'
│ 삼성카드 ····5678 └─────────┘ │ ← card_company_name + 끝4자리
└──────────────────────────────────────────────┘
```
- `deduction_type === 'deductible'` → 초록 배지 `[공제]`
- `deduction_type === 'non_deductible'` → 빨간 배지 `[불공제]`
- 카드번호 마스킹: `'····' + card_tx.card_num.slice(-4)`
### 4.5 드릴다운 (전표 상세 모달)
거래 행 클릭 시 `source_type`에 따라 전표 상세를 모달로 표시:
```javascript
const handleRowClick = async (item: LedgerItem) => {
if (['journal', 'ecard_transaction', 'bank_transaction'].includes(item.source_type)) {
const res = await authenticatedFetch(`/api/v1/general-journal-entries/${item.source_id}`);
// → 전표 상세 모달 오픈
// - 전표 헤더: 전표번호, 일자, 적요, 상태
// - 분개 라인 테이블: No, 차/대, 계정코드, 계정명, 거래처, 차변, 대변, 적요
// - 카드정보 (card_tx가 있으면): 카드번호, 카드사, 가맹점, 공급가, 세액
// - [원본 보기] 버튼: 일반전표 화면으로 이동
}
};
```
**모달 구성**:
| 섹션 | 내용 |
|------|------|
| **헤더** | 전표번호, 일자, [원본 보기] 버튼, [닫기] 버튼 |
| **전표 요약** | 전표번호, 일자, 적요, 작성자, 상태, 출처(source_type) |
| **카드정보** (card_tx 있을 때) | 카드번호(마스킹), 카드사, 가맹점, 사업자번호, 공급가, 세액, [공제]/[불공제] |
| **분개 테이블** | No, 구분(차/대), 계정코드, 계정명, 거래처, 차변, 대변, 적요 |
| **합계** | 차변 합계, 대변 합계 |
### 4.6 잔액 계산
서버에서 이미 계산된 `balance` 값을 사용한다. 프론트에서 별도 계산 불필요.
**음수 잔액 표시**: `(100,000)` 괄호 형식 또는 음수 표시
### 4.7 숫자 포맷
```typescript
const fmt = (n: number): string => {
if (n === 0 || n === null || n === undefined) return '';
if (n < 0) return '(' + Math.abs(n).toLocaleString() + ')';
return n.toLocaleString();
};
```
- 0은 빈 문자열로 표시 (공란)
- 음수는 괄호 표시
- 천 단위 콤마
### 4.8 인쇄
- `window.print()` 사용
- CSS `@media print { .no-print { display: none !important; } }`
- 조회 조건 패널, 인쇄 버튼에 `no-print` 클래스 적용
---
## 5. MNG 참고 화면
MNG 개발서버에서 동일 기능을 확인할 수 있다:
> `https://admin.codebridge-x.com` → 회계/세무관리 > 계정별원장
---
## 관련 문서
- [dev/dev_plans/account-ledger-service-migration-plan.md](../../dev/dev_plans/account-ledger-service-migration-plan.md) — 이관 기획서
- [features/finance/README.md](../../features/finance/README.md) — 재무관리 기능 개요
- [frontend/api-specs/barobill-api.md](barobill-api.md) — 바로빌 회계 API 명세
---
**최종 업데이트**: 2026-03-20