[script] jq filter to compute the sum of contributions
This commit is contained in:
parent
b312d4305e
commit
87f3c03958
|
@ -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
|
Loading…
Reference in New Issue