invoice2data
invoice2data copied to clipboard
how to use group: sum in lines
total_admin_fee:
parser: lines
start: Total Claims\s+Admin Fee
end: Totals
line:
- $(?P
with this sum ( standard+ connect+ other ) is not coming
currently getting this
'total_admin_fee': [ { 'connect': 0.0,
'other': 0.0,
'standard': 10.0},
{ 'connect': 0.0,
'other': 0.0,
'standard': 20.0}]
but i want 'total_admin_fee': 30.0
This is not yet supported by the lines plugin. I made a PR for the Tables plugin to support grouping in #592 Maybe you ca use that as an alternative?