Merged the "accounting.base_account.models" and "accounting.account.models" modules into the new "accounting.modules" module, so that the data models can reference one another.

This commit is contained in:
2023-02-01 15:44:58 +08:00
parent e9f6b769f4
commit e29b99b0a7
12 changed files with 62 additions and 90 deletions

View File

@ -20,7 +20,7 @@
from flask import abort
from werkzeug.routing import BaseConverter
from .models import Account
from accounting.models import Account
class AccountConverter(BaseConverter):