From 0132b8133da447deb6fb69b73c1417c04a7caf62 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 15 Apr 2026 12:05:24 +0800 Subject: [PATCH] bugfix --- accounting/openaccount.py | 1 + 1 file changed, 1 insertion(+) diff --git a/accounting/openaccount.py b/accounting/openaccount.py index aede1f4..d71e718 100644 --- a/accounting/openaccount.py +++ b/accounting/openaccount.py @@ -49,6 +49,7 @@ async def openResellerAccounts(sor, accounting_orgid, orgid): return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_RESELLER) async def openCustomerAccounts(sor, accounting_orgid, orgid): + debug(f'{sor=}, {accounting_orgid=}, {orgid=}') return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_CUSTOMER) async def openOwnerAccounts(sor, accounting_orgid):