Changeset - a008c84e450d
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-07-21 17:15:41
brettcsmith@brettcsmith.org
accrual: Add E-Check payment method.
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reports/accrual.py
Show inline comments
...
 
@@ -431,24 +431,25 @@ class BalanceReport(BaseReport):
 
        if index:
 
            yield ""
 
        yield f"{entity_s} {invoice_s}:"
 
        yield f"  {balance_s} outstanding since {date_s}"
 

	
 

	
 
class OutgoingReport(BaseReport):
 
    class PaymentMethods(enum.Enum):
 
        ach = 'ACH'
 
        check = 'Check'
 
        creditcard = 'Credit Card'
 
        debitcard = 'Debit Card'
 
        echeck = 'E-Check'
 
        paypal = 'PayPal'
 
        vendorportal = 'Vendor Portal'
 
        wire = 'Wire'
 
        fxwire = wire
 
        uswire = wire
 

	
 

	
 
    def __init__(self, rt_wrapper: rtutil.RT, out_file: TextIO) -> None:
 
        super().__init__(out_file)
 
        self.rt_wrapper = rt_wrapper
 
        self.rt_client = rt_wrapper.rt
 

	
0 comments (0 inline, 0 general)