概要

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.