fix(bid_flow): chapters查询补section字段——分角色派发读不到section全派技术写者

This commit is contained in:
yumoqing 2026-08-31 15:50:36 +08:00
parent b40f54d63f
commit 35aabc2acc

View File

@ -205,7 +205,7 @@ async def reconcile_project(sor, project_id, project_name=""):
{"p": project_id})
chs = await sor.sqlExe(
"SELECT id, chapter_no, title, status, revise_count FROM bid_chapters "
"SELECT id, chapter_no, title, section, status, revise_count FROM bid_chapters "
"WHERE project_id=${p}$ ORDER BY order_no, chapter_no", {"p": project_id})
await sor.sqlExe("COMMIT", {})
chapters = rows_to_dicts(chs, limit=500)