From f389c562595f74bea86e49c29949f4a7b0e78900 Mon Sep 17 00:00:00 2001 From: dark0dave <52840419+dark0dave@users.noreply.github.com> Date: Wed, 29 Apr 2020 21:57:08 +0100 Subject: Feature/currencies (#541) Now each project can have a currency, default to None. Each bill can use a different currency, and a conversion to project default currency is done on settle. Fix #512 --- ihatemoney/history.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ihatemoney/history.py') diff --git a/ihatemoney/history.py b/ihatemoney/history.py index 9dda3de..faa12c0 100644 --- a/ihatemoney/history.py +++ b/ihatemoney/history.py @@ -105,6 +105,14 @@ def get_history(project, human_readable_names=True): if removed: changeset["owers_removed"] = (None, removed) + # Remove converted_amount if amount changed in the same way. + if ( + "amount" in changeset + and "converted_amount" in changeset + and changeset["amount"] == changeset["converted_amount"] + ): + del changeset["converted_amount"] + for (prop, (val_before, val_after),) in changeset.items(): if human_readable_names: if prop == "payer_id": -- cgit v1.1