Merge branch 'main' of git.kaiyuancloud.cn:yumoqing/accounting

This commit is contained in:
yumoqing 2025-03-18 10:37:10 +08:00
commit 45a8359aca
8 changed files with 142 additions and 107 deletions

View File

@ -5,7 +5,7 @@ from .accountingnode import get_parent_orgid
from .excep import * from .excep import *
from .getaccount import get_account, getAccountByName from .getaccount import get_account, getAccountByName
from appPublic.uniqueID import getID from appPublic.uniqueID import getID
from appPublic.log import debug from appPublic.log import debug, exception
from sqlor.dbpools import DBPools from sqlor.dbpools import DBPools
from appPublic.timeUtils import curDateString from appPublic.timeUtils import curDateString
# from .argsconvert import ArgsConvert # from .argsconvert import ArgsConvert
@ -25,17 +25,13 @@ async def get_accounting_config(sor):
return None return None
class Accounting: class Accounting:
/* """
需要caller功能 需要caller功能
caller中要有分录中的变量 caller中要有分录中的变量
get_accounting_orgid(leg) 获得记账机构 get_accounting_orgid(leg) 获得记账机构
get_account(legaccounting_orgid) 获得记账账号通过科目机构类型账务机构确定一个唯一的账号 get_account(legaccounting_orgid) 获得记账账号通过科目机构类型账务机构确定一个唯一的账号
*/ """
def __init__(self, caller, def __init__(self, caller):
accounting_orgid,
customerid,
resellerid=None
):
self.caller = caller self.caller = caller
self.curdate = caller.curdate self.curdate = caller.curdate
self.realtimesettled = False self.realtimesettled = False
@ -43,16 +39,14 @@ class Accounting:
self.timestamp = caller.timestamp self.timestamp = caller.timestamp
self.billid = caller.billid self.billid = caller.billid
self.action = caller.action self.action = caller.action
self.billid = getID()
self.summary = f'{self.caller.orderid}:{self.caller.billid}' self.summary = f'{self.caller.orderid}:{self.caller.billid}'
self.providerid = caller.providerid self.providerid = caller.providerid
self.productid = caller.productid self.productid = caller.productid
self.accounting_orgid = accounting_orgid self.resellerid = caller.resellerid
self.resellerid = resellerid self.customerid = caller.customerid
self.customerid = customerid
self.own_salemode = None self.own_salemode = None
self.reseller_salemode = None self.reseller_salemode = None
self.variable = self.caller.varable self.variable = caller.variable
async def setup_accounting_legs(self): async def setup_accounting_legs(self):
global accounting_config global accounting_config
@ -68,14 +62,18 @@ class Accounting:
else: else:
l['acc_dir'] = l['accounting_dir'] l['acc_dir'] = l['accounting_dir']
ac = ArgsConvert('${', '}$') ac = ArgsConvert('${', '}$')
debug(f'{l["id"]},{l["amt_pattern"]=}')
try: try:
amtstr = ac.convert(l['amt_pattern'], amtstr = ac.convert(l['amt_pattern'],
self.variable.copy() self.variable.copy()
) )
l['amount'] = eval(amtstr) debug(f'{l["amt_pattern"]=}, {amtstr=}, {self.variable=}')
if isinstance(amtstr, str):
l['amount'] = eval(amtstr)
else:
l['amount'] = amtstr
except Exception as e: except Exception as e:
print(l['amt_pattern'], l['id'], self.variable) exception(f'{e=}, {l['amt_pattern']}, {self.variable=}')
raise e raise e
if l['amount'] is None: if l['amount'] is None:
@ -87,9 +85,9 @@ class Accounting:
credit_balance = 0.0 credit_balance = 0.0
for l in legs: for l in legs:
if l['acc_dir'] == DEBT: if l['acc_dir'] == DEBT:
debt_balance += legs['amount'] debt_balance += l['amount']
else: else:
credit_balance += legs['amount'] credit_balance += l['amount']
if abs(credit_balance - debt_balance) >= 0.01: if abs(credit_balance - debt_balance) >= 0.01:
e = Exception('accounting legs not balance') e = Exception('accounting legs not balance')
exception(f'{legs=}, {e=}') exception(f'{legs=}, {e=}')
@ -102,14 +100,18 @@ class Accounting:
debug(f'do_accounting() ...{self.accounting_legs=}') debug(f'do_accounting() ...{self.accounting_legs=}')
self.check_accounting_balance(self.accounting_legs) self.check_accounting_balance(self.accounting_legs)
for leg in self.accounting_legs: for leg in self.accounting_legs:
accounting_orgid = await self.caller.get_accounting_orgid(sor, leg.accounting_orgtype) accounting_orgid = await self.caller.get_orgid_by_trans_role(sor, leg.accounting_orgtype)
orgid = await self.caller.get_accounting_orgid(sor, leg.orgtype) orgid = await self.caller.get_orgid_by_trans_role(sor, leg.orgtype)
org1id = None if leg.org1type is None else \ org1id = None if leg.org1type is None else \
await self.caller.get_account_orgid(sor, leg.org1type) await self.caller.get_orgid_by_trans_role(sor, leg.org1type)
acc = await get_account(sor, accounting_orgid, orgid, leg.subjectid, org1id=org1id) acc = await get_account(sor, accounting_orgid, orgid, leg.subjectid, org1id=org1id)
if acc is None: if acc is None:
debug('can not get accountid {accounting_orgid=}, {leg=}') debug(f'can not get accountid {accounting_orgid=}, {orgid=},{leg.subjectid=}, {org1id=}')
raise AccountIdNone(self.accounting_orgid, orgid, leg['subjectname']) raise AccountIdNone(accounting_orgid, orgid, leg['subjectid'])
leg['_accounting_orgid'] = accounting_orgid
leg['_orgid'] = orgid
leg['_org1id'] = org1id
leg['acc'] = acc
await self.leg_accounting(sor, acc.id, leg) await self.leg_accounting(sor, acc.id, leg)
async def write_settle_log(self): async def write_settle_log(self):
@ -197,9 +199,9 @@ where accountid=${accid}$
# summary = self.summary # summary = self.summary
ns = { ns = {
'id':getID(), 'id':getID(),
'accounting_orgid' : self.accounting_orgid, 'accounting_orgid' : leg['accounting_orgid'],
'billid' : self.billid, 'billid' : self.billid,
'description' : self.specstr, 'description' : self.summary,
'participantid' : leg['orgid'], 'participantid' : leg['orgid'],
'participanttype' : leg['orgtype'], 'participanttype' : leg['orgtype'],
'subjectname' : leg['subjectname'], 'subjectname' : leg['subjectname'],
@ -214,7 +216,7 @@ where accountid=${accid}$
'acc_date':self.curdte, 'acc_date':self.curdte,
'acc_timestamp':self.timestamp, 'acc_timestamp':self.timestamp,
'acc_dir':leg['acc_dir'], 'acc_dir':leg['acc_dir'],
'summary':leg['summary'], 'summary':self.summary,
'amount':leg['amount'], 'amount':leg['amount'],
'billid':self.billid 'billid':self.billid
} }
@ -225,7 +227,7 @@ where accountid=${accid}$
'acc_date':self.curdate, 'acc_date':self.curdate,
'acc_timestamp':self.timestamp, 'acc_timestamp':self.timestamp,
'acc_dir':leg['acc_dir'], 'acc_dir':leg['acc_dir'],
'summary':leg['summary'], 'summary':self.summary,
'amount':leg['amount'], 'amount':leg['amount'],
'balance':leg['new_balance'], 'balance':leg['new_balance'],
'acclogid':logid 'acclogid':logid

View File

@ -1,13 +1,14 @@
from appPublic.uniqueID import getID from appPublic.uniqueID import getID
from appPublic.dictObject import DictObject
from sqlor.dbpools import DBPools from sqlor.dbpools import DBPools
from ahserver.serverenv import get_serverenv
from appPublic.argsConvert import ArgsConvert from appPublic.argsConvert import ArgsConvert
import datetime import datetime
from .const import * from .const import *
from .accountingnode import get_offer_orgs, get_parent_orgid from .accountingnode import get_offer_orgs, get_parent_orgid
from .excep import * from .excep import *
from .getaccount import getAccountByName from .getaccount import getAccountByName
from .accounting_config import get_accounting_config, AccountingOrgs from .accounting_config import get_accounting_config, Accounting
from .businessdate import get_business_date
# from .settle import SettleAccounting # from .settle import SettleAccounting
async def write_bill(sor, customerid, userid, orderid, business_op, amount): async def write_bill(sor, customerid, userid, orderid, business_op, amount):
@ -18,6 +19,7 @@ async def write_bill(sor, customerid, userid, orderid, business_op, amount):
bill.orderid = orderid bill.orderid = orderid
bill.business_op = business_op bill.business_op = business_op
bill.amount = amount bill.amount = amount
get_business_date = get_serverenv('get_business_date')
bill.bill_date = await get_business_date(sor) bill.bill_date = await get_business_date(sor)
bill_state = '0' bill_state = '0'
await sor.C('bill', bill.copy()) await sor.C('bill', bill.copy())

View File

@ -1,4 +1,6 @@
from appPublic.log import debug, exception
from sqlor.dbpools import DBPools from sqlor.dbpools import DBPools
from ahserver.serverenv import ServerEnv, get_serverenv
from .const import * from .const import *
from accounting.accountingnode import get_parent_orgid from accounting.accountingnode import get_parent_orgid
@ -13,12 +15,41 @@ async def get_account(sor, accounting_orgid, orgid, subjectid, org1id=None):
accounting_orgid = ${accounting_orgid}$ and accounting_orgid = ${accounting_orgid}$ and
orgid = ${orgid}$ and orgid = ${orgid}$ and
""" + ss """ + ss
ns = {
"accounting_orgid":accounting_orgid,
"orgid":orgid,
"org1id":org1id,
"subjectid":subjectid
}
recs = await sor.sqlExe(sql, { recs = await sor.sqlExe(sql, {
"accounting_orgid":accounting_orgid, "accounting_orgid":accounting_orgid,
"orgid":orgid, "orgid":orgid,
"org1id":org1id, "org1id":org1id,
"subjectid":subjectid "subjectid":subjectid
}); })
if len(recs) == 0:
debug(f'{sql=}, {ns=}')
return None
return recs[0]
async def get_account_by_subjectname(sor, accounting_orgid, orgid, subjectname, org1id=None):
ss = "a.org1id is NULL"
if org1id:
ss = "a.org1id = ${org1id}$"
sql = """select * from account a, subject b
where
a.subjectid = b.id and
b.name = ${subjectname}$ and
a.accounting_orgid = ${accounting_orgid}$ and
a.orgid = ${orgid}$ and
""" + ss
recs = await sor.sqlExe(sql, {
"accounting_orgid":accounting_orgid,
"orgid":orgid,
"org1id":org1id,
"subjectname":subjectname
});
if len(recs) == 0: if len(recs) == 0:
return None return None
for rec in recs: for rec in recs:
@ -26,31 +57,6 @@ async def get_account(sor, accounting_orgid, orgid, subjectid, org1id=None):
return rec['id'] return rec['id']
return None return None
async def get_account_by_subjectname(sor, accounting_orgid, orgid, subjectname, org1id=None):
ss = "a.org1id is NULL"
if org1id:
ss = "a.org1id = ${org1id}$"
sql = """select * from account a, subject b
where
a.subjectid = b.id and
b.name = ${subjectname}$ and
a.accounting_orgid = ${accounting_orgid}$ and
a.orgid = ${orgid}$ and
""" + ss
recs = await sor.sqlExe(sql, {
"accounting_orgid":accounting_orgid,
"orgid":orgid,
"org1id":org1id,
"subjectname":subjectname
});
if len(recs) == 0:
return None
for rec in recs:
if a.org1id == org1id:
return rec['id']
return None
async def getAccountByName(sor, accounting_orgid, orgid, name, org1id): async def getAccountByName(sor, accounting_orgid, orgid, name, org1id):
sql = """select a.* from account a, subject b sql = """select a.* from account a, subject b
where a.subjectid = b.id and where a.subjectid = b.id and
@ -65,33 +71,28 @@ where a.subjectid = b.id and
if len(recs) == 0: if len(recs) == 0:
return None return None
for rec in recs: for rec in recs:
if a.org1id == org1id: if rec.org1id == org1id:
return rec['id'] return rec['id']
return None return None
async def getTransPayMode(): async def getTransPayMode():
pass pass
async def getParentOrganization(sor, childid):
sql="select a.* from organization a, organization b where b.parentid=a.id and b.id = ${childid}$"
ns = {
"childid":childid
}
recs = await sor.sqlExe(sql, ns)
if len(recs) == 0:
return None
return recs[0]
async def getCustomerBalance(sor, customerid): async def getCustomerBalance(sor, customerid):
name = '业务账' name = '客户资金账户'
orgid = await get_parent_orgid(sor, customerid) get_owner_orgid = get_serverenv('get_owner_orgid')
if get_owner_orgid is None:
debug('get_owner_orgid function is not a serverenv function')
return None
debug(f'{get_owner_orgid=}')
orgid = await get_owner_orgid(sor, customerid)
if orgid is None: if orgid is None:
print(f"{customerid=}'s parent organization not found") debug(f"{customerid=}'s parent organization not found")
return None return None
balance = await getAccountBalance(sor, orgid, customerid, name) balance = await getAccountBalance(sor, orgid, customerid, name, None)
if balance is None: if balance is None:
print(f'accid is None, {orgid=}, {customerid=}, {name=}') debug(f'accid is None, {orgid=}, {customerid=}, {name=}')
return None return None
return balance return balance
@ -100,14 +101,35 @@ async def getAccountBalance(sor, accounting_orgid, orgid, subjectname, org1id):
orgid, orgid,
subjectname,org1id) subjectname,org1id)
if accid is None: 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 None
return await getAccountBalanceByAccid(sor, accid) return await getAccountBalanceByAccid(sor, accid)
async def get_account_total_amount(sor, accid, accounting_dir, from_date, to_date):
sql = """select sun(amount) as amount from acc_detail
where accountid =${accountid}$
and acc_date >= ${from_date}$
and acc_date < ${to_date}$
and acc_dir = ${accounting_dir}$
"""
ns = {
'accountid':accid,
'accounting_dir':accounting_dir,
'from_date':from_date,
'to_date':to_date
}
recs = await sor.sqlExe(sql, ns.copy())
if len(recs)==0:
e = Exception(f'get_account_total_amount() error, {ns=}')
exception('{e=}')
raise e
return recs[0].amount
async def 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}) balances = await sor.sqlExe("""select * from acc_balance where accountid=${accid}$ order by acc_date desc""", {'accid':accid})
if len(balances) == 0: if len(balances) == 0:
print(f'acc_balance is None, {accid=}') debug(f'acc_balance is None, {accid=}')
return 0 return 0
return balances[0]['balance'] return balances[0]['balance']

View File

@ -1,18 +1,21 @@
from appPublic.registerfunction import RegisterFunction 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 AccountingOrgs from accounting.accounting_config import Accounting
from accounting.bill import write_bill 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
def load_accounting(): def load_accounting():
g = ServerEnv() g = ServerEnv()
g.recharge_accounting = recharge_accounting g.Accounting = Accounting
g.pay_accounting = pay_accounting
g.settle_accounting = settle_accounting
g.open_customer_account = open_customer_account
g.open_reseller_account = open_reseller_account
g.open_provider_account = open_provider_account
g.open_owner_account = open_owner_account
g.get_customer_balance = get_customer_balance
g.write_bill = write_bill g.write_bill = write_bill
g.openOwnerAccounts = openOwnerAccounts
g.openProviderAccounts = openProviderAccounts
g.openResellerAccounts = openResellerAccounts
g.openCustomerAccounts = openCustomerAccounts
g.getAccountBalance = getAccountBalance
g.getCustomerBalance = getCustomerBalance
g.getAccountByName = getAccountByName
g.get_account_total_amount = get_account_total_amount

View File

@ -4,8 +4,15 @@ from appPublic.uniqueID import getID
from appPublic.registerfunction import RegisterFunction, rfexe from appPublic.registerfunction import RegisterFunction, rfexe
from appPublic.log import debug, exception from appPublic.log import debug, exception
from datetime import datetime from datetime import datetime
from accounting.getaccount import get_account
async def openAccount(sor, accounting_orgid, orgid, account_config, org1id=None): 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 = { ns = {
'id':getID(), 'id':getID(),
'accounting_orgid':accounting_orgid, 'accounting_orgid':accounting_orgid,
@ -18,7 +25,7 @@ async def openAccount(sor, accounting_orgid, orgid, account_config, org1id=None)
ns['org1id'] = org1id; ns['org1id'] = org1id;
debug(f'openAccount(), {ns=}') debug(f'openAccount(), {ns=}')
await sor.C('account', ns.copy()) 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): async def openPartyAccounts(sor, accounting_orgid, orgid, party_type, org1id=None, party1_type=None):
addon_cond = " and a.party1type is NULL " 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}$ " addon_cond = " and a.party1type = ${party1type}$ "
ns['party1type'] = party1_type 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 """ \ where a.subjectid = b.id """ \
+ addon_cond + """ + addon_cond + """
and a.partytype=${partytype}$ """ and a.partytype=${partytype}$ """
@ -38,24 +45,18 @@ where a.subjectid = b.id """ \
debug(f'{r=}') debug(f'{r=}')
await openAccount(sor, accounting_orgid, orgid, r, org1id=org1id) await openAccount(sor, accounting_orgid, orgid, r, org1id=org1id)
async def _openPartyAccounts(accounting_orgid, orgid, party_type):
db = DBPools()
dbname = await rfexe('get_module_dbname', 'accounting')
async with db.sqlorContext(dbname) as sor:
await openPartyAccounts(sor, accounting_orgid, orgid, party_type)
async def openResellerAccounts(sor, accounting_orgid, orgid): async def openResellerAccounts(sor, accounting_orgid, orgid):
return await _openPartyAccounts(accounting_orgid, orgid, PARTY_RESELLER) return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_RESELLER)
async def openCustomerAccounts(sor, accounting_orgid, orgid): async def openCustomerAccounts(sor, accounting_orgid, orgid):
return await _openPartyAccounts(accounting_orgid, orgid, PARTY_CUSTOMER) return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_CUSTOMER)
async def openOwnerAccounts(sor, accounting_orgid): async def openOwnerAccounts(sor, accounting_orgid):
orgid = accounting_orgid orgid = accounting_orgid
return await _openPartyAccounts(accounting_orgid, orgid, PARTY_OWNER) return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_OWNER)
async def openProviderAccounts(sor, accounting_orgid, orgid): async def openProviderAccounts(sor, accounting_orgid, orgid):
return await _openPartyAccounts(accounting_orgid, orgid, PARTY_PROVIDER) return await openPartyAccounts(sor, accounting_orgid, orgid, PARTY_PROVIDER)
async def openAllCustomerAccounts(sor, accounting_orgid): async def openAllCustomerAccounts(sor, accounting_orgid):
rf = RegisterFunction() rf = RegisterFunction()
@ -91,13 +92,10 @@ async def openAllProviderAccounts(sor, accounting_orgid):
await openProviderAccounts(sor, accounting_orgid, r['id']) await openProviderAccounts(sor, accounting_orgid, r['id'])
async def openRetailRelationshipAccounts(sor, accounting_orgid, providerid, resellerid): async def openRetailRelationshipAccounts(sor, accounting_orgid, providerid, resellerid):
db = DBPools() await openPartyAccounts(sor, accounting_orgid, providerid, PARTY_PROVIDER,
dbname = await rfexe('get_module_dbname', 'accounting') org1id=resellerid,
async with db.sqlorContext(dbname) as sor: party1_type=PARTY_RESELLER)
await openPartyAccounts(sor, accounting_orgid, providerid, PARTY_PROVIDER, await openPartyAccounts(sor, accounting_orgid, resellerid, PARTY_RESELLER,
org1id=resellerid, org1id=providerid,
party1_type=PARTY_RESELLER) party1_type=PARTY_PROVIDER)
await openPartyAccounts(sor, accounting_orgid, resellerid, PARTY_RESELLER,
org1id=providerid,
party1_type=PARTY_PROVIDER)

View File

@ -1,7 +1,4 @@
{ {
"models_dir": "${HOME}$/py/accounting/models",
"output_dir": "${HOME}$/py/sage/wwwroot/accounting_config",
"dbname": "sage",
"tblname": "accounting_config", "tblname": "accounting_config",
"title":"账务设置", "title":"账务设置",
"params": { "params": {

3
json/build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/bash
xls2ui -m ../models -o ../wwwroot accounting *.json

8
script/roleperm.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/bash
python ~/py/rbac/script/roleperm.py sage accounting owner superuser account_config accounting_config subject
python ~/py/rbac/script/roleperm.py sage accounting reseller operator account acc_detail acc_balance accounting_log bill bill_detail ledger
python ~/py/rbac/script/roleperm.py sage accounting reseller sale account acc_detail acc_balance accounting_log bill bill_detail ledger
python ~/py/rbac/script/roleperm.py sage accounting reseller accountant account acc_detail acc_balance accounting_log bill bill_detail ledger
python ~/py/rbac/script/roleperm.py sage accounting customer customer account acc_detail acc_balance accounting_log bill bill_detail ledger