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