ledgerhelpers icon indicating copy to clipboard operation
ledgerhelpers copied to clipboard

account directives are not lexed

Open hellerbarde opened this issue 8 years ago • 1 comments

Explicit definitions of accounts are not lexed or parsed. How hard would this be to implement? could you point me in the right direction? Maybe I can find some time to do it and file a pull request. (No promises though, exams are looming :)

A snippet from my test ledger file (fantasy values, obviously):

<snip/>
account Expenses
    note Expenses
    check commodity == "CHF"

account Expenses:Taxes:Social Security
    note Social Security
    check commodity == "CHF"

account Expenses:Bank Service Charge
    note Bank Service Charge
    check commodity == "CHF"

account Income:Bonus
    note Bonus
    check commodity == "CHF"

account Income:Interest Income:Savings Interest
    note Savings Interest
    check commodity == "CHF"


2016/05/14 * Opening Balance
    Assets:Current Assets:Mieterkautionssparkonto    100.00 CHF
    Equity:Opening Balances                    -100.00 CHF

2016/05/14 * opening balance
    Assets:Current Assets:Sparkonto        100.00 CHF
    Equity:Opening Balances                   -100.00 CHF

2016/05/14 * opening balance
    Assets:Current Assets:Main              100.00 CHF
    Equity:Opening Balances                    -100.00 CHF

2016/05/14 * initial
    Liabilities:Credit Card                      100.00 CHF
    Equity:Opening Balances                     -100.00 CHF

hellerbarde avatar May 17 '16 12:05 hellerbarde

On 05/17/2016 12:04 PM, P Stark wrote:

Explicit definitions of accounts are not lexed or parsed. How hard would this be to implement? could you point me in the right direction? Maybe I can find some time to do it and file a pull request. (No promises though, exams are looming :)

A snippet from my test ledger file (fantasy values, obviously):

| account Expenses note Expenses check commodity == "CHF" account Expenses:Taxes:Social Security note Social Security check commodity == "CHF" account Expenses:Bank Service Charge note Bank Service Charge check commodity == "CHF" account Income:Bonus note Bonus check commodity == "CHF" account Income:Interest Income:Savings Interest note Savings Interest check commodity == "CHF" 2016/05/14 * Opening Balance Assets:Current Assets:Mieterkautionssparkonto 100.00 CHF Equity:Opening Balances -100.00 CHF 2016/05/14 * opening balance Assets:Current Assets:Sparkonto 100.00 CHF Equity:Opening Balances -100.00 CHF 2016/05/14 * opening balance Assets:Current Assets:Main 100.00 CHF Equity:Opening Balances -100.00 CHF 2016/05/14 * initial Liabilities:Credit Card 100.00 CHF Equity:Opening Balances -100.00 CHF |

This should be trivial to add to the lexer, actually. If you look into the lexer Python file, it should be a case to be added, following the examples in the file. You can also check in this file example you sent, and then wire it into the tests, so that you can run "nosetests -v" against the repository with your changes, and it will tell you whether your lexing case worked or not.

A formal lexer grammar that generated lexing code would be even better.

Happy to take pull requests! You also have a Mieterkautionssparkonto! Cool!

Rudd-O
http://rudd-o.com/

Rudd-O avatar May 17 '16 18:05 Rudd-O