Огляд

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
Показати все

Остання активність

Активність журналу з урахуванням проведень

Транзакції
Найновіші транзакції за поточними фільтрами

Доходи проти витрат

Доходи проти витрат
Бar chart comparing total income and expenses for each interval in the selected period.

Баланс Sheet

Розподіл активів
Візуальне представлення структури freelancer-invoicing активів
Пiabilities Distribution
Візуальне представлення структури 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.