GnuCash
5.4-12-g13c81df5e6+
|
Public Member Functions | |
def | InvoiceLookup (self, guid) |
def | EntryLookup (self, guid) |
def | CustomerLookup (self, guid) |
def | JobLookup (self, guid) |
def | VendorLookup (self, guid) |
def | EmployeeLookup (self, guid) |
def | TaxTableLookup (self, guid) |
def | TaxTableLookupByName (self, name) |
def | TaxTableGetTables (self) |
def | BillLookupByID (self, id) |
def | InvoiceLookupByID (self, id) |
def | CustomerLookupByID (self, id) |
def | VendorLookupByID (self, id) |
def | InvoiceNextID (self, customer) |
def | BillNextID (self, vendor) |
def | CustomerNextID (self) |
def | VendorNextID (self) |
![]() | |
def | do_lookup_create_oo_instance (self, lookup_function, cls, args) |
A Book encapsulates all of the GnuCash data, it is the place where all GnuCash entities (Transaction, Split, Vendor, Invoice...), are stored. You'll notice that all of the constructors for those entities need a book to be associated with. The most common way to get a book is through the book property in the Session class, that is, create a session that connects to some storage, such as through 'my_session = Session('file:my_books.xac')', and access the book via the book property, 'my_session.book' If you would like to create a Book without any backing storage, call the Book constructor without any parameters, 'Book()'. You can later merge such a book into a book with actual store by using merge_init. Methods of interest get_root_account -- Returns the root level Account get_table -- Returns a commodity lookup table, of type GncCommodityTable
Definition at line 290 of file gnucash_core.py.
def python.gnucash_core.Book.BillNextID | ( | self, | |
vendor | |||
) |
Return the next Bill ID.
Definition at line 379 of file gnucash_core.py.
def python.gnucash_core.Book.CustomerNextID | ( | self | ) |
Return the next Customer ID.
Definition at line 384 of file gnucash_core.py.
def python.gnucash_core.Book.InvoiceNextID | ( | self, | |
customer | |||
) |
Return the next invoice ID.
Definition at line 373 of file gnucash_core.py.
def python.gnucash_core.Book.VendorNextID | ( | self | ) |
Return the next Vendor ID.
Definition at line 389 of file gnucash_core.py.