This commit is contained in:
yumoqing 2025-12-17 07:58:49 +08:00
parent 058172c52a
commit 91a1153181

View File

@ -2,13 +2,13 @@ from appPublic.registerfunction import RegisterFunction
from appPublic.dictObject import DictObject from appPublic.dictObject import DictObject
from appPublic.log import debug, exception, error from appPublic.log import debug, exception, error
from ahserver.serverenv import ServerEnv from ahserver.serverenv import ServerEnv
from accounting.accounting_config import Accounting from .accounting_config import Accounting
from accounting.bill import write_bill from .bill import write_bill
from accounting.openaccount import openOwnerAccounts, openProviderAccounts, openResellerAccounts, openCustomerAccounts from .openaccount import openOwnerAccounts, openProviderAccounts, openResellerAccounts, openCustomerAccounts
from accounting.getaccount import getAccountBalance, getCustomerBalance, getAccountByName, get_account_total_amount from .getaccount import getAccountBalance, getCustomerBalance, getAccountByName, get_account_total_amount
from accounting.bizaccount import BizAccounting from .bizaccount import BizAccounting
from accounting.recharge import RechargeBiz, recharge_accounting from .recharge import RechargeBiz, recharge_accounting
from accounting.comsume import ConsumeBiz from .comsume import ConsumeBiz
def load_accounting(): def load_accounting():
g = ServerEnv() g = ServerEnv()