Skip to content

Idea: Show measure of size of transactions in journal view #1545

Open
@zroug

Description

It would be great to have a measure of the size of transactions in the journal view, similar to the "Change" column in the account view. Something similar to the following BQL query could be used to calculate the size of a transaction:

SELECT
  first(date) AS date,
  first(narration) AS narration,
  sum(units(position)) AS size
WHERE number(units(position)) >= 0
GROUP BY id

This only makes sense for transactions that are balanced, for unbalanced transactions this value should not be displayed. For multi-currency transactions, one could either display all currencies or ignore them too.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions