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

503  def BillNextID(self, vendor):
504  ''' Return the next Bill ID. '''
505  from gnucash.gnucash_core_c import gncInvoiceNextID
506  return gncInvoiceNextID(self.get_instance(),vendor.GetEndOwner().get_instance()[1])
507 

◆ CustomerNextID()

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

Definition at line 508 of file gnucash_core.py.

508  def CustomerNextID(self):
509  ''' Return the next Customer ID. '''
510  from gnucash.gnucash_core_c import gncCustomerNextID
511  return gncCustomerNextID(self.get_instance())
512 

◆ InvoiceNextID()

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

Definition at line 497 of file gnucash_core.py.

497  def InvoiceNextID(self, customer):
498  ''' Return the next invoice ID.
499  '''
500  from gnucash.gnucash_core_c import gncInvoiceNextID
501  return gncInvoiceNextID(self.get_instance(),customer.GetEndOwner().get_instance()[1])
502 

◆ VendorNextID()

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

Definition at line 513 of file gnucash_core.py.

513  def VendorNextID(self):
514  ''' Return the next Vendor ID. '''
515  from gnucash.gnucash_core_c import gncVendorNextID
516  return gncVendorNextID(self.get_instance())
517 

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