ns = params_kw.copy() userorgid = await get_userorgid() if not userorgid: return { "widgettype":"Error", "options":{ "title":"Authorization Error", "timeout":3, "cwidth":16, "cheight":9, "message":"Please login" } } ns['org_id'] = userorgid ns['userorgid'] = userorgid debug(f'get_pipeline_capacity.dspy:{ns=}') if not ns.get('page'): ns['page'] = 1 if not ns.get('sort'): ns['sort'] = ["pipeline_id"] sql = '''select a.*, b.pipeline_id_text, c.status_text from (select * from pipeline_capacity where 1=1 [[filterstr]]) a left join (select id as pipeline_id, name as pipeline_id_text from pipelines where 1 = 1) b on a.pipeline_id = b.pipeline_id left join (select k as status, v as status_text from appcodes_kv where parentid='capacity_status') c on a.status = c.status''' filterjson = params_kw.get('data_filter') if filterjson and isinstance(filterjson, str): try: filterjson = json.loads(filterjson) except (json.JSONDecodeError, TypeError): filterjson = None fields_str=r'''[ { "name": "id", "title": "主键", "type": "str", "length": 32, "nullable": "no" }, { "name": "pipeline_id", "title": "产线ID", "type": "str", "length": 32, "nullable": "no" }, { "name": "max_concurrent", "title": "最大并发数", "type": "int" }, { "name": "daily_limit", "title": "每日限额", "type": "int" }, { "name": "monthly_limit", "title": "每月限额", "type": "int" }, { "name": "today_usage", "title": "今日用量", "type": "int" }, { "name": "month_usage", "title": "本月用量", "type": "int" }, { "name": "status", "title": "状态", "type": "str", "length": 20, "default": "active" }, { "name": "org_id", "title": "所属组织", "type": "str", "length": 32, "default": "0" }, { "name": "updated_at", "title": "更新时间", "type": "timestamp" } ]''' ori_fields = json.loads(fields_str) if not filterjson: fields = [ f['name'] for f in ori_fields ] filterjson = default_filterjson(fields, ns) # 确保 logined 过滤条件始终生效 if filterjson: if not isinstance(filterjson, dict) or 'AND' not in filterjson: filterjson = {'AND': [filterjson] if filterjson else []} filterjson['AND'].append({'field': 'org_id', 'op': '=', 'var': '__logined_orgid__'}) ns['__logined_orgid__'] = userorgid 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_ops') async with db.sqlorContext(dbname) as sor: r = await sor.sqlPaging(sql, ns) return r return { "total":0, "rows":[] }