From 37c9ab2a0ef456e08bfb11d2c7ae256430f789ca Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 5 Feb 2025 11:47:15 +0800 Subject: [PATCH] bugfix --- accounting/getaccount.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/accounting/getaccount.py b/accounting/getaccount.py index e0e4128..df52e26 100644 --- a/accounting/getaccount.py +++ b/accounting/getaccount.py @@ -86,12 +86,12 @@ async def getCustomerBalance(sor, customerid): return None orgid = await get_owner_orgid(sor, customerid) if orgid is None: - print(f"{customerid=}'s parent organization not found") + debug(f"{customerid=}'s parent organization not found") return None balance = await getAccountBalance(sor, orgid, customerid, name) if balance is None: - print(f'accid is None, {orgid=}, {customerid=}, {name=}') + debug(f'accid is None, {orgid=}, {customerid=}, {name=}') return None return balance @@ -100,14 +100,14 @@ async def getAccountBalance(sor, accounting_orgid, orgid, subjectname, org1id): orgid, subjectname,org1id) if accid is None: - print(f'accid is None, {accounting_orgid=}, {orgid=}, {subjectname=}') + debug(f'accid is None, {accounting_orgid=}, {orgid=}, {subjectname=}') return None return await getAccountBalanceByAccid(sor, accid) async def getAccountBalanceByAccid(sor, accid): balances = await sor.sqlExe("""select * from acc_balance where accountid=${accid}$ order by acc_date desc""", {'accid':accid}) if len(balances) == 0: - print(f'acc_balance is None, {accid=}') + debug(f'acc_balance is None, {accid=}') return 0 return balances[0]['balance']