GnuCash  5.6-150-g038405b370+
Public Member Functions
python.gnucash_core.Book Class Reference
Inheritance diagram for python.gnucash_core.Book:
python.gnucash_core.GnuCashCoreClass

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)
 
- Public Member Functions inherited from python.gnucash_core.GnuCashCoreClass
def do_lookup_create_oo_instance (self, lookup_function, cls, args)
 

Detailed Description

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 410 of file gnucash_core.py.

Member Function Documentation

◆ BillNextID()

def python.gnucash_core.Book.BillNextID (   self,
  vendor 
)
Return the next Bill ID. 

Definition at line 499 of file gnucash_core.py.

499  def BillNextID(self, vendor):
500  ''' Return the next Bill ID. '''
501  from gnucash.gnucash_core_c import gncInvoiceNextID
502  return gncInvoiceNextID(self.get_instance(),vendor.GetEndOwner().get_instance()[1])
503 

◆ CustomerNextID()

def python.gnucash_core.Book.CustomerNextID (   self)
Return the next Customer ID. 

Definition at line 504 of file gnucash_core.py.

504  def CustomerNextID(self):
505  ''' Return the next Customer ID. '''
506  from gnucash.gnucash_core_c import gncCustomerNextID
507  return gncCustomerNextID(self.get_instance())
508 

◆ InvoiceNextID()

def python.gnucash_core.Book.InvoiceNextID (   self,
  customer 
)
Return the next invoice ID.

Definition at line 493 of file gnucash_core.py.

493  def InvoiceNextID(self, customer):
494  ''' Return the next invoice ID.
495  '''
496  from gnucash.gnucash_core_c import gncInvoiceNextID
497  return gncInvoiceNextID(self.get_instance(),customer.GetEndOwner().get_instance()[1])
498 

◆ VendorNextID()

def python.gnucash_core.Book.VendorNextID (   self)
Return the next Vendor ID. 

Definition at line 509 of file gnucash_core.py.

509  def VendorNextID(self):
510  ''' Return the next Vendor ID. '''
511  from gnucash.gnucash_core_c import gncVendorNextID
512  return gncVendorNextID(self.get_instance())
513 

The documentation for this class was generated from the following file: