On Sep 5, 2010, at 4:03 PM, Łukasz Stelmach wrote:
>> 2) Is there any documentation on account("") methods, and if not,
>> where in the source code are they defined?
They will be defined in the new manual.
> 3) How to make an automated transaction valid/evaluated only for
> transactions from within a specified period (the brackets change on
> yearly basis, more or less)
In the automated transaction's predicate expression, you may compare "date" to
anything you like. This will make for a time-bounded application.
> 4) Is it possible to select and add up several accounts with the
> account("") function so that: account("Income:Salary") returns the sum
> of Income:Salary:BigCorp and Income:Salary:SmalCo totals?
Just use "account(...).total". The "total" member of each account refers to
the aggregate total of itself and all children. "amount" refers to its own
total.
John