This repository has been archived by the owner on Mar 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from gratipay/tool-tweaks
constrain to a declared list of accounts
- Loading branch information
Showing
7 changed files
with
91 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env python2.7 | ||
from __future__ import absolute_import, division, print_function, unicode_literals | ||
|
||
import sys | ||
from os import path | ||
|
||
ourdir = path.realpath(path.dirname(__file__)) | ||
sys.path.insert(0, ourdir) | ||
|
||
import reporting | ||
|
||
argv = sys.argv[1:] | ||
start, end = reporting.parse(argv) | ||
cmd = ['ledger'] + argv + reporting.list_datfiles(start, end) | ||
|
||
reporting.report(cmd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
commodity $ | ||
account Assets:Escrow:Cash | ||
account Assets:Escrow:New Alliance | ||
account Assets:Escrow:Samurai | ||
account Assets:Escrow:Stripe | ||
account Assets:Fee Buffer:Cash | ||
account Assets:Fee Buffer:New Alliance | ||
account Assets:Fee Buffer:Samurai | ||
account Assets:Fee Buffer:Stripe | ||
account Assets:Operations:New Alliance | ||
account Assets:Operations:Samurai | ||
account Assets:Operations:Stripe | ||
account Equity:Owners:Chad Whitacre | ||
account Equity:Retained Earnings | ||
account Expenses:Escrow:Cash | ||
account Expenses:Fee Buffer:Cash | ||
account Expenses:Fee Buffer:Samurai | ||
account Expenses:Fee Buffer:Stripe | ||
account Expenses:Operations:Errors:Samurai | ||
account Expenses:Operations:Processing:Stripe | ||
account Income:Escrow:Samurai | ||
account Income:Escrow:Stripe | ||
account Income:Fee Buffer:Cash | ||
account Income:Fee Buffer:Samurai | ||
account Income:Fee Buffer:Stripe | ||
account Income:Operations:Errors:Samurai | ||
account Income:Operations:IHasAMoney.com | ||
account Income:Operations:Verification & Testing | ||
account Liabilities:Escrow |