Changeset - def05b80072a
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-05-17 20:39:22
brettcsmith@brettcsmith.org
accrual: More robust payment-to fallback in outgoing report.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reports/accrual.py
Show inline comments
...
 
@@ -235,13 +235,13 @@ def outgoing_report(groups: PostGroups,
 

	
 
        print(
 
            "PAYMENT FOR APPROVAL:",
 
            f"REQUESTOR: {requestor}",
 
            f"TOTAL TO PAY: {-related.balance()}",
 
            f"AGREEMENT: {contract_s}",
 
            f"PAYMENT TO: {ticket.get('CF.{payment-to}', requestor_name)}",
 
            f"PAYMENT TO: {ticket.get('CF.{payment-to}') or requestor_name}",
 
            f"PAYMENT METHOD: {ticket.get('CF.{payment-method}', '')}",
 
            f"PROJECT: {', '.join(projects)}",
 
            "\nBEANCOUNT ENTRIES:",
 
            sep='\n', file=out_file,
 
        )
 

	
0 comments (0 inline, 0 general)