2001-05-15 Dave Peticolas <dave@krondo.com>

* src/doc/design/engine.texinfo: update docs


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4198 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2001-05-15 09:39:13 +00:00
parent d2ba889f3f
commit 92a7486177
2 changed files with 34 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2001-05-15 Dave Peticolas <dave@krondo.com>
* src/doc/design/engine.texinfo: update docs
2001-05-15 Christian Stimming <stimming@tuhh.de>
* src/scm/commodity-utilities.scm, report/portfolio.scm: major

View File

@@ -1685,6 +1685,36 @@ Set the description field of @var{trans} to @var{desc}.
@section Accounts
@tindex Account
An Account is the Engine abstraction of an, well, an account. Accounts
contain the following pieces of information:
@table @asis
@item A list of Ledger Entries, or Splits
The list of debits and credits which apply to the Account. The sum of
all debits and credits is the account balance.
@item A name
The name of the Account.
@item A description
A textual description of the Account.
@item A currency
The commodity that Splits in the account are valued in, i.e., the
denomination of the 'value' member of Splits in the account.
@item A security
For Accounts which may contain shares (such as stock accounts),
the denomination of the 'share quantity' member of Splits in
the accounts. For accounts which do not contain shares, the
security is blank, and the share quantities are denominated
in the Account currency.
@end table
In addition to the above, Accounts contain a key-value pair frame.
@node Account Groups, GNCBooks, Accounts, Engine
@section Account Groups