Simplify the URL of the default reports.
This commit is contained in:
parent
4e550413ba
commit
ba43bd7e90
@ -47,9 +47,10 @@ def ledger_url(currency: Currency, account: Account, period: Period) \
|
|||||||
:param period: The period.
|
:param period: The period.
|
||||||
:return: The URL of the ledger.
|
:return: The URL of the ledger.
|
||||||
"""
|
"""
|
||||||
if period.is_default:
|
if currency.code == default_currency_code() \
|
||||||
return url_for("accounting-report.ledger-default",
|
and account.code == Account.CASH_CODE \
|
||||||
currency=currency, account=account)
|
and period.is_default:
|
||||||
|
return url_for("accounting-report.ledger-default")
|
||||||
return url_for("accounting-report.ledger",
|
return url_for("accounting-report.ledger",
|
||||||
currency=currency, account=account,
|
currency=currency, account=account,
|
||||||
period=period)
|
period=period)
|
||||||
@ -68,9 +69,6 @@ def income_expenses_url(currency: Currency, account: CurrentAccount,
|
|||||||
and account.code == options.default_ie_account_code \
|
and account.code == options.default_ie_account_code \
|
||||||
and period.is_default:
|
and period.is_default:
|
||||||
return url_for("accounting-report.default")
|
return url_for("accounting-report.default")
|
||||||
if period.is_default:
|
|
||||||
return url_for("accounting-report.income-expenses-default",
|
|
||||||
currency=currency, account=account)
|
|
||||||
return url_for("accounting-report.income-expenses",
|
return url_for("accounting-report.income-expenses",
|
||||||
currency=currency, account=account,
|
currency=currency, account=account,
|
||||||
period=period)
|
period=period)
|
||||||
@ -83,9 +81,8 @@ def trial_balance_url(currency: Currency, period: Period) -> str:
|
|||||||
:param period: The period.
|
:param period: The period.
|
||||||
:return: The URL of the trial balance.
|
:return: The URL of the trial balance.
|
||||||
"""
|
"""
|
||||||
if period.is_default:
|
if currency.code == default_currency_code() and period.is_default:
|
||||||
return url_for("accounting-report.trial-balance-default",
|
return url_for("accounting-report.trial-balance-default")
|
||||||
currency=currency)
|
|
||||||
return url_for("accounting-report.trial-balance",
|
return url_for("accounting-report.trial-balance",
|
||||||
currency=currency, period=period)
|
currency=currency, period=period)
|
||||||
|
|
||||||
@ -97,9 +94,8 @@ def income_statement_url(currency: Currency, period: Period) -> str:
|
|||||||
:param period: The period.
|
:param period: The period.
|
||||||
:return: The URL of the income statement.
|
:return: The URL of the income statement.
|
||||||
"""
|
"""
|
||||||
if period.is_default:
|
if currency.code == default_currency_code() and period.is_default:
|
||||||
return url_for("accounting-report.income-statement-default",
|
return url_for("accounting-report.income-statement-default")
|
||||||
currency=currency)
|
|
||||||
return url_for("accounting-report.income-statement",
|
return url_for("accounting-report.income-statement",
|
||||||
currency=currency, period=period)
|
currency=currency, period=period)
|
||||||
|
|
||||||
@ -111,9 +107,8 @@ def balance_sheet_url(currency: Currency, period: Period) -> str:
|
|||||||
:param period: The period.
|
:param period: The period.
|
||||||
:return: The URL of the balance sheet.
|
:return: The URL of the balance sheet.
|
||||||
"""
|
"""
|
||||||
if period.is_default:
|
if currency.code == default_currency_code() and period.is_default:
|
||||||
return url_for("accounting-report.balance-sheet-default",
|
return url_for("accounting-report.balance-sheet-default")
|
||||||
currency=currency)
|
|
||||||
return url_for("accounting-report.balance-sheet",
|
return url_for("accounting-report.balance-sheet",
|
||||||
currency=currency, period=period)
|
currency=currency, period=period)
|
||||||
|
|
||||||
|
@ -44,10 +44,7 @@ def get_default_report() -> str | Response:
|
|||||||
|
|
||||||
:return: The income and expenses log in the default period.
|
:return: The income and expenses log in the default period.
|
||||||
"""
|
"""
|
||||||
return __get_income_expenses(
|
return get_default_income_expenses()
|
||||||
db.session.get(Currency, default_currency_code()),
|
|
||||||
options.default_ie_account,
|
|
||||||
get_period())
|
|
||||||
|
|
||||||
|
|
||||||
@bp.get("journal", endpoint="journal-default")
|
@bp.get("journal", endpoint="journal-default")
|
||||||
@ -83,17 +80,15 @@ def __get_journal(period: Period) -> str | Response:
|
|||||||
return report.html()
|
return report.html()
|
||||||
|
|
||||||
|
|
||||||
@bp.get("ledger/<currency:currency>/<account:account>",
|
@bp.get("ledger", endpoint="ledger-default")
|
||||||
endpoint="ledger-default")
|
|
||||||
@has_permission(can_view)
|
@has_permission(can_view)
|
||||||
def get_default_ledger(currency: Currency, account: Account) -> str | Response:
|
def get_default_ledger() -> str | Response:
|
||||||
"""Returns the ledger in the default period.
|
"""Returns the ledger in the default currency, cash, and default period.
|
||||||
|
|
||||||
:param currency: The currency.
|
:return: The ledger in the default currency, cash, and default period.
|
||||||
:param account: The account.
|
|
||||||
:return: The ledger in the default period.
|
|
||||||
"""
|
"""
|
||||||
return __get_ledger(currency, account, get_period())
|
return __get_ledger(db.session.get(Currency, default_currency_code()),
|
||||||
|
Account.cash(), get_period())
|
||||||
|
|
||||||
|
|
||||||
@bp.get("ledger/<currency:currency>/<account:account>/<period:period>",
|
@bp.get("ledger/<currency:currency>/<account:account>/<period:period>",
|
||||||
@ -126,18 +121,17 @@ def __get_ledger(currency: Currency, account: Account, period: Period) \
|
|||||||
return report.html()
|
return report.html()
|
||||||
|
|
||||||
|
|
||||||
@bp.get("income-expenses/<currency:currency>/<currentAccount:account>",
|
@bp.get("income-expenses", endpoint="income-expenses-default")
|
||||||
endpoint="income-expenses-default")
|
|
||||||
@has_permission(can_view)
|
@has_permission(can_view)
|
||||||
def get_default_income_expenses(currency: Currency, account: CurrentAccount) \
|
def get_default_income_expenses() -> str | Response:
|
||||||
-> str | Response:
|
|
||||||
"""Returns the income and expenses log in the default period.
|
"""Returns the income and expenses log in the default period.
|
||||||
|
|
||||||
:param currency: The currency.
|
|
||||||
:param account: The account.
|
|
||||||
:return: The income and expenses log in the default period.
|
:return: The income and expenses log in the default period.
|
||||||
"""
|
"""
|
||||||
return __get_income_expenses(currency, account, get_period())
|
return __get_income_expenses(
|
||||||
|
db.session.get(Currency, default_currency_code()),
|
||||||
|
options.default_ie_account,
|
||||||
|
get_period())
|
||||||
|
|
||||||
|
|
||||||
@bp.get("income-expenses/<currency:currency>/<currentAccount:account>/"
|
@bp.get("income-expenses/<currency:currency>/<currentAccount:account>/"
|
||||||
@ -170,16 +164,15 @@ def __get_income_expenses(currency: Currency, account: CurrentAccount,
|
|||||||
return report.html()
|
return report.html()
|
||||||
|
|
||||||
|
|
||||||
@bp.get("trial-balance/<currency:currency>",
|
@bp.get("trial-balance", endpoint="trial-balance-default")
|
||||||
endpoint="trial-balance-default")
|
|
||||||
@has_permission(can_view)
|
@has_permission(can_view)
|
||||||
def get_default_trial_balance(currency: Currency) -> str | Response:
|
def get_default_trial_balance() -> str | Response:
|
||||||
"""Returns the trial balance in the default period.
|
"""Returns the trial balance in the default period.
|
||||||
|
|
||||||
:param currency: The currency.
|
|
||||||
:return: The trial balance in the default period.
|
:return: The trial balance in the default period.
|
||||||
"""
|
"""
|
||||||
return __get_trial_balance(currency, get_period())
|
return __get_trial_balance(
|
||||||
|
db.session.get(Currency, default_currency_code()), get_period())
|
||||||
|
|
||||||
|
|
||||||
@bp.get("trial-balance/<currency:currency>/<period:period>",
|
@bp.get("trial-balance/<currency:currency>/<period:period>",
|
||||||
@ -208,16 +201,15 @@ def __get_trial_balance(currency: Currency, period: Period) -> str | Response:
|
|||||||
return report.html()
|
return report.html()
|
||||||
|
|
||||||
|
|
||||||
@bp.get("income-statement/<currency:currency>",
|
@bp.get("income-statement", endpoint="income-statement-default")
|
||||||
endpoint="income-statement-default")
|
|
||||||
@has_permission(can_view)
|
@has_permission(can_view)
|
||||||
def get_default_income_statement(currency: Currency) -> str | Response:
|
def get_default_income_statement() -> str | Response:
|
||||||
"""Returns the income statement in the default period.
|
"""Returns the income statement in the default period.
|
||||||
|
|
||||||
:param currency: The currency.
|
|
||||||
:return: The income statement in the default period.
|
:return: The income statement in the default period.
|
||||||
"""
|
"""
|
||||||
return __get_income_statement(currency, get_period())
|
return __get_income_statement(
|
||||||
|
db.session.get(Currency, default_currency_code()), get_period())
|
||||||
|
|
||||||
|
|
||||||
@bp.get("income-statement/<currency:currency>/<period:period>",
|
@bp.get("income-statement/<currency:currency>/<period:period>",
|
||||||
@ -247,16 +239,15 @@ def __get_income_statement(currency: Currency, period: Period) \
|
|||||||
return report.html()
|
return report.html()
|
||||||
|
|
||||||
|
|
||||||
@bp.get("balance-sheet/<currency:currency>",
|
@bp.get("balance-sheet", endpoint="balance-sheet-default")
|
||||||
endpoint="balance-sheet-default")
|
|
||||||
@has_permission(can_view)
|
@has_permission(can_view)
|
||||||
def get_default_balance_sheet(currency: Currency) -> str | Response:
|
def get_default_balance_sheet() -> str | Response:
|
||||||
"""Returns the balance sheet in the default period.
|
"""Returns the balance sheet in the default period.
|
||||||
|
|
||||||
:param currency: The currency.
|
|
||||||
:return: The balance sheet in the default period.
|
:return: The balance sheet in the default period.
|
||||||
"""
|
"""
|
||||||
return __get_balance_sheet(currency, get_period())
|
return __get_balance_sheet(
|
||||||
|
db.session.get(Currency, default_currency_code()), get_period())
|
||||||
|
|
||||||
|
|
||||||
@bp.get("balance-sheet/<currency:currency>/<period:period>",
|
@bp.get("balance-sheet/<currency:currency>/<period:period>",
|
||||||
|
@ -78,25 +78,25 @@ class ReportTestCase(unittest.TestCase):
|
|||||||
response = client.get(f"{PREFIX}/journal")
|
response = client.get(f"{PREFIX}/journal")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/ledger/USD/{Accounts.CASH}")
|
response = client.get(f"{PREFIX}/ledger")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/income-expenses/USD/0000-000")
|
response = client.get(f"{PREFIX}/income-expenses")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/trial-balance/USD")
|
response = client.get(f"{PREFIX}/trial-balance")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/income-statement/USD")
|
response = client.get(f"{PREFIX}/income-statement")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/balance-sheet/USD")
|
response = client.get(f"{PREFIX}/balance-sheet")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/unapplied")
|
response = client.get(f"{PREFIX}/unapplied")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/unapplied/{Accounts.PAYABLE}")
|
response = client.get(f"{PREFIX}/unapplied")
|
||||||
self.assertEqual(response.status_code, 403)
|
self.assertEqual(response.status_code, 403)
|
||||||
|
|
||||||
def test_viewer(self) -> None:
|
def test_viewer(self) -> None:
|
||||||
@ -114,19 +114,19 @@ class ReportTestCase(unittest.TestCase):
|
|||||||
response = client.get(f"{PREFIX}/journal")
|
response = client.get(f"{PREFIX}/journal")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/ledger/USD/{Accounts.CASH}")
|
response = client.get(f"{PREFIX}/ledger")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/income-expenses/USD/0000-000")
|
response = client.get(f"{PREFIX}/income-expenses")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/trial-balance/USD")
|
response = client.get(f"{PREFIX}/trial-balance")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/income-statement/USD")
|
response = client.get(f"{PREFIX}/income-statement")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/balance-sheet/USD")
|
response = client.get(f"{PREFIX}/balance-sheet")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = client.get(f"{PREFIX}/unapplied")
|
response = client.get(f"{PREFIX}/unapplied")
|
||||||
@ -149,19 +149,19 @@ class ReportTestCase(unittest.TestCase):
|
|||||||
response = self.client.get(f"{PREFIX}/journal")
|
response = self.client.get(f"{PREFIX}/journal")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/ledger/USD/{Accounts.CASH}")
|
response = self.client.get(f"{PREFIX}/ledger")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/income-expenses/USD/0000-000")
|
response = self.client.get(f"{PREFIX}/income-expenses")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/trial-balance/USD")
|
response = self.client.get(f"{PREFIX}/trial-balance")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/income-statement/USD")
|
response = self.client.get(f"{PREFIX}/income-statement")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/balance-sheet/USD")
|
response = self.client.get(f"{PREFIX}/balance-sheet")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/unapplied")
|
response = self.client.get(f"{PREFIX}/unapplied")
|
||||||
@ -183,19 +183,19 @@ class ReportTestCase(unittest.TestCase):
|
|||||||
response = self.client.get(f"{PREFIX}/journal")
|
response = self.client.get(f"{PREFIX}/journal")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/ledger/USD/{Accounts.CASH}")
|
response = self.client.get(f"{PREFIX}/ledger")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/income-expenses/USD/0000-000")
|
response = self.client.get(f"{PREFIX}/income-expenses")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/trial-balance/USD")
|
response = self.client.get(f"{PREFIX}/trial-balance")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/income-statement/USD")
|
response = self.client.get(f"{PREFIX}/income-statement")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/balance-sheet/USD")
|
response = self.client.get(f"{PREFIX}/balance-sheet")
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
response = self.client.get(f"{PREFIX}/unapplied")
|
response = self.client.get(f"{PREFIX}/unapplied")
|
||||||
|
Loading…
Reference in New Issue
Block a user