10 lines
231 B
Python
10 lines
231 B
Python
from django_ledger.report.balance_sheet import BalanceSheetReport
|
|
from django_ledger.models import EntityModel
|
|
|
|
|
|
def run():
|
|
entity = EntityModel.objects.first()
|
|
report = BalanceSheetReport(entity=entity)
|
|
|
|
print(report)
|