Fixed GetInvoiceFromTxn to convert to the right type of Python object for a GncInvoice.

pull/2074/head
Oliver Lok Trevor 1 year ago
parent c0d52f93ff
commit 479ecc7b2b

@ -822,9 +822,9 @@ class Transaction(GnuCashCoreClass):
return self.GetSplitList().pop(n)
def GetInvoiceFromTxn(self):
from gnucash.gnucash_business import Transaction
from gnucash.gnucash_business import Invoice
return self.do_lookup_create_oo_instance(
gncInvoiceGetInvoiceFromTxn, Transaction )
gncInvoiceGetInvoiceFromTxn, Invoice )
def __eq__(self, other):
return self.Equal(other, True, False, False, False)

Loading…
Cancel
Save