From 35aabc2acc37c6d69e66aeb768c0866f0f58833d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 31 Aug 2026 15:50:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(bid=5Fflow):=20chapters=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E8=A1=A5section=E5=AD=97=E6=AE=B5=E2=80=94=E2=80=94=E5=88=86?= =?UTF-8?q?=E8=A7=92=E8=89=B2=E6=B4=BE=E5=8F=91=E8=AF=BB=E4=B8=8D=E5=88=B0?= =?UTF-8?q?section=E5=85=A8=E6=B4=BE=E6=8A=80=E6=9C=AF=E5=86=99=E8=80=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_bidding/bid_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline_bidding/bid_flow.py b/pipeline_bidding/bid_flow.py index e2d4a83..521aa3b 100644 --- a/pipeline_bidding/bid_flow.py +++ b/pipeline_bidding/bid_flow.py @@ -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)