This commit is contained in:
yumoqing 2025-03-04 15:50:24 +08:00
parent 5a08708164
commit 44b3d73974
2 changed files with 39 additions and 35 deletions

View File

@ -4,8 +4,15 @@ from appPublic.uniqueID import getID
from appPublic.registerfunction import RegisterFunction, rfexe
from appPublic.log import debug, exception
from datetime import datetime
from accounting.getaccount import get_account
async def openAccount(sor, accounting_orgid, orgid, account_config, org1id=None):
acc = await get_account(sor, accounting_orgid, orgid,
account_config['subjectid'], org1id=org1id)
if acc:
debug(f'{acc=} opened')
return
ns = {
'id':getID(),
'accounting_orgid':accounting_orgid,
@ -18,7 +25,7 @@ async def openAccount(sor, accounting_orgid, orgid, account_config, org1id=None)
ns['org1id'] = org1id;
debug(f'openAccount(), {ns=}')
await sor.C('account', ns.copy())
print(ns, 'opened')
debug(f'{ns=} opened')
async def openPartyAccounts(sor, accounting_orgid, orgid, party_type, org1id=None, party1_type=None):
addon_cond = " and a.party1type is NULL "
@ -27,7 +34,7 @@ async def openPartyAccounts(sor, accounting_orgid, orgid, party_type, org1id=Non
addon_cond = " and a.party1type = ${party1type}$ "
ns['party1type'] = party1_type
sql = """select a.*, b.id as subjectid, b.balance_side from account_config a, subject b
sql = """select a.*, b.id as subjectid, b.name as subjectname,b.balance_side from account_config a, subject b
where a.subjectid = b.id """ \
+ addon_cond + """
and a.partytype=${partytype}$ """
@ -91,9 +98,6 @@ async def openAllProviderAccounts(sor, accounting_orgid):
await openProviderAccounts(sor, accounting_orgid, r['id'])
async def openRetailRelationshipAccounts(sor, accounting_orgid, providerid, resellerid):
db = DBPools()
dbname = await rfexe('get_module_dbname', 'accounting')
async with db.sqlorContext(dbname) as sor:
await openPartyAccounts(sor, accounting_orgid, providerid, PARTY_PROVIDER,
org1id=resellerid,
party1_type=PARTY_RESELLER)