개요

freelancer-invoicing

freelancer-invoicing의 재무 대시보드. 계좌 잔액, 순자산 트렌드, 수입/지출 요약을 볼 수 있습니다.

재무 상태

순자산과 이를 구성하는 계정

순자산
지난 12개월의 자산과 부채 합계
30,950 USD
0 USD전월 대비
계정
현재 자산 및 부채 계정 잔액

자금 흐름

계정 범주별 월간 수입과 지출

July 2026
유입
July 2026
주요 수입원
이 기간에는 자금 이동이 없습니다.
이전 3개월 평균
+1,597.47 USD
모두 보기
유출
July 2026
주요 지출
이 기간에는 자금 이동이 없습니다.
이전 3개월 평균
-5,014.13 USD
모두 보기

최근 활동

분개를 반영한 원장 활동

거래
현재 필터와 일치하는 최신 거래

수입 대 지출

수입 대 지출
선택한 기간의 각 구간별 총 수입과 지출을 비교하는 막대 차트.

재무상태표

자산 분포
freelancer-invoicing 자산 구성의 시각적 표현
부채 분포
freelancer-invoicing 부채 구성의 시각적 표현
Chart is empty.

현금 흐름

현금 흐름
수입원에서 지출 및 투자로의 자금 흐름
README.md

Freelancer Invoicing Example — beancount.io

A Beancount ledger for running a freelance practice: invoicing on accrual, chasing what is owed, sales tax you collect on someone else's behalf, expenses rebilled to clients, and quarterly estimated tax.

The organising idea is that invoicing and getting paid are two different events. An invoice recognises the revenue and creates a receivable; the payment only settles it. Recording revenue when cash lands instead makes your income statement a description of your clients' payment habits rather than of your work.

Quick Start

bash
make install   # Install beancount + fava via uv
make check     # Verify the ledger has zero errors
make serve     # Open Fava at http://localhost:4739

File Guide

FileWhat it demonstrates
main.beanEntry point — options and include directives
accounts.beanPer-client receivables, the sales-tax liability, and the cost chart
transactions/invoicing.beanIssuing invoices with invoice: and due: metadata
transactions/payments.beanOn-time, partial, late, and never — including a bad-debt write-off
transactions/sales-tax.beanTax you collect is a liability, not revenue
transactions/rebilled-expenses.beanPassing project costs to a client, gross vs net
transactions/estimated-taxes.beanReserving cash (not an expense) vs paying it (an expense)

The one thing to copy

Put the invoice number on both the invoice and its payment:

beancount
2026-01-09 * "Northwind Traders" "January retainer"
  invoice: "2026-001"
  due: 2026-02-08
  Assets:Receivable:Northwind   6,000.00 USD
  Income:Consulting            -6,000.00 USD

A per-client receivable account plus due: turns "what is overdue, and by how long" into a balance report instead of a memory exercise.