From 87f3c03958022251b7f927524f5bef5a7055e25f Mon Sep 17 00:00:00 2001 From: lapinot Date: Wed, 31 Jul 2024 11:31:52 +0200 Subject: [PATCH] [script] jq filter to compute the sum of contributions --- scripts/tricount_sum.jq | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scripts/tricount_sum.jq diff --git a/scripts/tricount_sum.jq b/scripts/tricount_sum.jq new file mode 100644 index 0000000..24eba9f --- /dev/null +++ b/scripts/tricount_sum.jq @@ -0,0 +1,6 @@ +.bills as $bills +| [ $bills[].alloc[] ] | group_by(.ower.name) +| [ .[] | .[0].ower.name as $ower + | { $ower: [ .[].amount, ($bills[] | select(.payed_by.name == $ower) | -.amount) ] | add } + ] +| add