[script] jq filter to compute the sum of contributions

This commit is contained in:
lapinot 2024-07-31 11:31:52 +02:00
parent b312d4305e
commit 87f3c03958
1 changed files with 6 additions and 0 deletions

6
scripts/tricount_sum.jq Normal file
View File

@ -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