69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
|
||
ns = params_kw.copy()
|
||
|
||
# 会话当前项目强制过滤(2026-09-11 用户要求):会话级解析(session→全局兜底+产线隔离+悬空自愈),
|
||
# 无项目报错提示;强制覆盖前端 project_id 传值(含搜索框),列表只显示当前项目数据。
|
||
_uid = await get_user()
|
||
if not _uid:
|
||
_uid = 'user-01'
|
||
_sid = (params_kw or {}).get('session_id', '') or ''
|
||
_pl = (params_kw or {}).get('pipeline_id', '') or 'bidding_general'
|
||
_cur_pid = ''
|
||
try:
|
||
from pipeline_service.workspace import get_session_project_id
|
||
async with DBPools().sqlorContext(get_module_dbname('pipeline_bidding')) as _sor:
|
||
_cur_pid = await get_session_project_id(_sor, _uid, _sid, _pl) or ''
|
||
except Exception:
|
||
_cur_pid = ''
|
||
if not _cur_pid:
|
||
return {"widgettype":"Error","options":{"title":"错误","timeout":3,"cwidth":22,"cheight":9,"message":"当前会话没有项目,请先选择或新建项目"}}
|
||
ns['_cur_pid'] = _cur_pid
|
||
ns['project_id'] = _cur_pid
|
||
|
||
|
||
|
||
debug(f'get_bid_documents.dspy:{ns=}')
|
||
if not ns.get('page'):
|
||
ns['page'] = 1
|
||
if not ns.get('sort'):
|
||
|
||
|
||
ns['sort'] = json.loads('["version desc"]')
|
||
|
||
|
||
|
||
sql = '''select a.*, b.status_text
|
||
from (select * from bid_documents where project_id = ${_cur_pid}$ [[filterstr]]) a left join (select k as status,
|
||
v as status_text from appcodes_kv where parentid='bid_doc_status') b on a.status = b.status'''
|
||
|
||
|
||
filterjson = json.loads('{"AND": [{"field": "project_id", "op": "=", "var": "project_id"}, {"field": "status", "op": "=", "var": "status_input"}]}')
|
||
|
||
|
||
filterdic = ns.copy()
|
||
filterdic['filterstr'] = ''
|
||
filterdic['userorgid'] = '${userorgid}$'
|
||
filterdic['userid'] = '${userid}$'
|
||
if filterjson:
|
||
dbf = DBFilter(filterjson)
|
||
conds = dbf.gen(ns)
|
||
if conds:
|
||
ns.update(dbf.consts)
|
||
conds = f' and {conds}'
|
||
filterdic['filterstr'] = conds
|
||
ac = ArgsConvert('[[', ']]')
|
||
vars = ac.findAllVariables(sql)
|
||
NameSpace = {v:'${' + v + '}$' for v in vars if v != 'filterstr' }
|
||
filterdic.update(NameSpace)
|
||
sql = ac.convert(sql, filterdic)
|
||
|
||
debug(f'{sql=}')
|
||
db = DBPools()
|
||
dbname = get_module_dbname('pipeline_bidding')
|
||
async with db.sqlorContext(dbname) as sor:
|
||
r = await sor.sqlPaging(sql, ns)
|
||
return r
|
||
return {
|
||
"total":0,
|
||
"rows":[]
|
||
} |