Bookk is a simple library that provides building blocks for operating journal entries and manipulating double-entry bookkeeping accounting ledgers.
See full documentation at hexdocs.
For an introduction to Double-Entry Bookkeeping Accounting, see this article.
This library aims to decrease the friction between domain specialists (mainly accountants) and developers by providing a DSL that enables developers to write code for journal entries with a syntax that's familiar to specialists. That way, it should be easy for specialists to review code for journal entries and, likewise, it should be easy for developers to implement journal entries based on instructions provided by specialists.
def to_interledger_entry(%Deposit{} = tx) do
journalize! using: ACME.ChartOfAccounts do
on ledger(:acme) do
debit account(:cash), tx.amount
credit account({:unspent_cash, {:user, tx.user_id}}), tx.amount
end
on ledger({:user, tx.user_id}) do
debit account(:cash), tx.amount
credit account(:deposits), tx.amount
end
end
end
(A journal entry for a deposit operation affecting two ledgers written with Bookk's DSL)
Persisting state, such as accounts balances and log of transactions, is considered off scope for this library. and honestly, it might never be part of its scope due to how peculiar the tequirements of each system can be.
A basic example of how to persist state using Ecto
is provided in section Examples at Persist State using Ecto.
Visit the API Reference page for a brief introduction to double-entry bookkeeping concepts implemented by this library.
The package can be installed by adding bookk
to your list of dependencies in mix.exs
:
def deps do
[
{:bookk, "~> 0.1.0"}
]
end
Warning
This library is currently in Beta (v0.x.x).
I've been using Book in production for a couple years now but there are still key missing features that are important for ledgers with high throughput, such as:
- DSL: specifying a Lock Mechanism while updating an account's balance (at a journal entry's Operation level);
- DSL: specifying Authorization Rules (also at a journal entry's Operation level -- like assertions that, if failed, rolls back the bookkeeping transaction);
- InMemory State: derive current balance of an account based on its journal entries' operations so that new operations can be posted retroactively;
- InMemory State: get the balance of an account at a given point in time;
- InMemory State: store snapshots of accounts' balances at regular intervals, decreasing the cost of calculating an account's balance at a given point in time.
These missing features MAY cause breaking changes to Book's API and DSL. While in Beta, breaking changes will be released as a new Minor version. Therefore, it's recomended that you require Book with a pinned minor version:
{:bookk, "~> 0.1.0"}
Warning
The snipets in this section are meant to be taken as a pseudocode, they haven't been tested yet.
defmodule ACME.ChartOfAccounts do
use Bookk.ChartOfAccounts
alias Bookk.AccountClass, as: C
alias Bookk.AccountHead, as: H
# some of the most common account classes
@classes %{
"A" => %C{id: "A", parent_id: nil, natural_balance: :debit, name: "Assets"},
"CA" => %C{id: "CA", parent_id: "A", natural_balance: :debit, name: "Current Assets"},
"AR" => %C{id: "AR", parent_id: "A", natural_balance: :debit, name: "Accounts Receivables"},
"E" => %C{id: "E", parent_id: nil, natural_balance: :debit, name: "Expenses"},
"OE" => %C{id: "OE", parent_id: nil, natural_balance: :credit, name: "Owner's Equity"},
"L" => %C{id: "L", parent_id: nil, natural_balance: :credit, name: "Liabilities"},
"AP" => %C{id: "AP", parent_id: "L", natural_balance: :credit, name: "Accounts Payables"},
"I" => %C{id: "I", parent_id: nil, natural_balance: :credit, name: "Income"},
"G" => %C{id: "G", parent_id: "I", natural_balance: :credit, name: "Gains"},
"R" => %C{id: "R", parent_id: "I", natural_balance: :credit, name: "Revenue"}
}
@impl Bookk.ChartOfAccounts
def ledger(:acme), do: "acme"
def ledger({:user, <<id::binary>>}), do: "user(#{id})"
@impl Bookk.ChartOfAccounts
def account(:cash), do: %H{name: "cash", class: @classes["CA"]}
def account(:deposits), do: %H{name: "deposits", class: @classes["OE"]}
def account({:unspent_cash, {:user, <<id::binary>>}}), do: %H{name: "unspent-cash:user(#{id})", class: @classes["L"]}
def account({:deposit_expenses, <<provider::binary>>}), do: %H{name: "deposit-expenses:#{provider}", class: @classes["E"]}
@doc """
Given a ledger name and an AccountHead, it returns the account's
deterministic id.
"""
def account_id(ledger_name, %H{} = account_head),
do: "#{ledger_name}:#{account_head.name}/#{account_head.class.id}"
end
Here's demonstrated how to journalize (create a journal entry template, if you may) for an specific accounting transaction. Examples are using ACME.ChartOfAccounts
from the previous section.
When user deposits balance (using a single ledger):
import Bookk.Notation, only: [journalize!: 2]
user_id = "785627e6-bf43-41dd-a8a8-3fdc5f761489"
deposited_amount = 100_00
# ^ in cents or smalles unit supported
# by the currency you're using
interledger_entry =
journalize! using: ACME.ChartOfAccounts do
on ledger({:user, user_id) do
debit account(:cash), deposited_amount
credit account(:deposits), deposited_amount
end
end
updated_state =
Bookk.NaiveState.empty()
|> Bookk.NaiveState.post(interledger_entry)
When user deposited balance (using multiple ledgers):
import Bookk.Notation, only: [journalize!: 2]
user_id = "785627e6-bf43-41dd-a8a8-3fdc5f761489"
deposited_amount = 100_00
# ^ in cents or smallest unit supported
# by the currency you're using
interledger_entry =
journalize! using: ACME.ChartOfAccounts do
on ledger(:acme) do
debit account(:cash), deposited_amount
credit account({:unspent_cash, {:user, user_id}}), deposited_amount
end
on ledger({:user, user_id}) do
debit account(:cash), deposited_amount
credit account(:deposits), deposited_amount
end
end
updated_state =
Bookk.NaiveState.empty()
|> Bookk.NaiveState.post(interledger_entry)
This section demostrantes how state can be persisted to a database using Ecto
instead of posting (apply side-effects) to the in-memory structs provided by the library (such as Bookk.Ledger
and Bookk.NaiveState
).
In this example, we'll use two models and a protocol that defines how structs can be transformed into an interledger entry.
-
Account, which holds the up-to-date balance for an account:
defmodule Account do use Ecto.Schema import Ecto.Changeset @primary_key false schema "accounts" do field :id, :string, primary_key: true field :ledger_id, :string field :balance, :integer field :created_at, :utc_datetime_usec field :updated_at, :utc_datetime_usec end @doc false @spec changeset(t, map) :: Ecto.Changeset.t() def changeset(account \\ %__MODULE__{}, %{} = fields) do account |> cast(fields, [:id, :ledger_id, :balance, :created_at, :udpated_at]) |> validate_required([:id, :ledger_id, :balance, :created_at, :udpated_at]) end end
-
AccountTransaction, which serves as a log of changes to an account:
defmodule AccountTransaction do use Ecto.Schema import Ecto.Changeset @primary_key false schema "accounts_transactions" do field :account_id, :string, primary_key: true field :transaction_id, Ecto.UUID, primary_key: true field :delta_amount, :integer field :balance_after, :integer field :created_at, :utc_datetime_usec end @doc false @spec changeset(t, map) :: Ecto.Changeset.t() def changeset(account_transfer \\ %__MODULE__{}, %{} = fields) do account_transfer |> cast(fields, [:account_id, :transaction_id, :delta_amount, :balance, :created_at]) |> validate_required([:account_id, :transaction_id, :delta_amount, :balance, :created_at]) end end
We'll also have a Transactionable
protocol that specifies what functions are
expected from structs that describe side effects to our accounting system:
defprotocol Transactionable do
@moduledoc false
@typedoc false
@type t :: %{
required(__struct__) => atom,
required(:id) => String.t(),
optional(atom) => any
}
@doc false
@spec to_interledger_entry(t) :: Bookk.InterledgerEntry.t()
def to_interledger_entry(tx)
end
Now we have a DepositTransaction
describing that a user deposited balance into
their account — note that it implements Transactionable
protocol:
defmodule DepositTransaction do
@moduledoc false
@typedoc false
@type t :: %DepositTransaction{
id: String.t(),
user_id: String.t(),
amount: pos_integer
}
defstruct [:id, :user_id, :amount]
end
defimpl Transactionable, for: DepositTransaction do
use Bookk.Notation
@impl Transactionable
def to_interledger_entry(tx) do
journalize! using: ACME.ChartOfAccounts do
on ledger(:acme) do
debit account(:cash), tx.amount
credit account({:unspent_cash, {:user, tx.user_id}}), tx.amount
end
on ledger({:user, tx.user_id}) do
debit account(:cash), tx.amount
credit account(:deposits), tx.amount
end
end
end
end
And finally, we have our Accounting
module that knows how to take a Transactionable
struct and persist its side-effects to the database using Ecto
:
defmodule Accounting do
@moduledoc false
@doc false
@spec transact(Transactionable.t()) :: {:ok, map} | {:error, term}
def transact(tx) do
interledger_entry = Transactionable.to_interledger_entry(tx)
now = DateTime.utc_now()
multis =
for {ledger_name, journal_entry} <- Bookk.InterledgerEntry.to_journal_entries(interledger_entry),
op <- Bookk.JournalEntry.to_operations(journal_entry),
do: op_to_multi(op, ledger_name, tx.id, now)
multis
|> Enum.reduce(Ecto.Multi.new(), &Ecto.Multi.append(&2, &1))
|> ACME.Repo.transaction()
end
defp op_to_multi(%Bookk.Operation{} = op, ledger_name, tx_id, now) do
# we need uniq names for each multi operation, there will be 2 of them for
# ↓ each `Bookk.Operation`
multi_a_name = Ecto.UUID.generate()
multi_b_name = Ecto.UUID.generate()
# the amount by which the account's balance should change (either a
# positive or negative integer — in cents or the smallest fraction of the
# ↓ currency you're using)
delta_amount = Bookk.Operations.to_delta_amount(op)
account_id = ACME.ChartOfAccounts.account_id(ledger_name, op.account_head)
account_changeset =
Account.changeset(%{
id: account_id,
ledger_id: ledger_name,
balance: delta_amount,
created_at: now,
updated_at: now
})
Ecto.Multi.new()
# ↓ upserts the account
|> Ecto.Multi.insert(multi_a_name, account_changeset, [
conflict_target: :id,
on_conflict: [
inc: [balance: delta_amount],
set: [updated_at: now]
],
returning: [:balance]
])
# creates the log entry recording the amount by which the account's
# ↓ balance changed in this accounting transaction
|> Ecto.Multi.insert(multi_b_name, fn %{^multi_a_name => updated_accocunt} ->
AccountTransaction.changeset(%{
account_id: account_id,
transaction_id: tx_id,
delta_amount: delta_amount,
balance_after: updated_account.balance,
created_at: now
})
end)
end
end