An income statement view: income and expense balances, plus net profit per currency.
Summary
Types
@type section() :: %{ balances: [Logistiki.Projections.Balance.t()], totals_by_currency: %{required(String.t()) => Decimal.t()} }
@type t() :: %Logistiki.Projections.IncomeStatement{ expenses: section(), income: section(), net_profit_by_currency: %{required(String.t()) => Decimal.t()} }
The struct type. See the module documentation for field details and examples.