We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def trial_balance(accounts: list[str], re: str, t: list[str]): """Return trial balance, balance sheet, and income statement.""" return dict(accounts=accounts, retained_earnings_account=re, ttransactions=t)
Should accept:
?accounts=asset:cash+capital:equity+contra:equity:ts&re=retained_earnings&t=cash,equity,500&t=cr:vat,20.8+cr:sales,100+dr:cash,120.8
for t:
t
&t=cr:vat,20.8+cr:sales,100+dr:cash,120.8 &t=cr:equity,500+dr:cash,500 &t=cash,equity,500
The text was updated successfully, but these errors were encountered:
#79 sample API call
9698e90
#79 prototype
8b3f82b
No branches or pull requests
Should accept:
for
t
:The text was updated successfully, but these errors were encountered: