From 793f818a455b20b2a06bc017f7247b6018be7920 Mon Sep 17 00:00:00 2001 From: rogersun Date: Wed, 10 Jun 2026 16:32:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=BE=93=E5=87=BA=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E7=9A=84=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ai/utils/show_process.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ai/utils/show_process.py b/ai/utils/show_process.py index aa9f5fc..d766dd5 100644 --- a/ai/utils/show_process.py +++ b/ai/utils/show_process.py @@ -30,6 +30,9 @@ def show_main_process(): # 获取排片数据 _show = next((s for s in result.split('------') if s.startswith('\n影厅别名,影厅id')), '') _show = _show.strip() + if _show == '': + _show = next((s for s in result.split('------') if s.startswith('\n```csv\n影厅别名,')), '') + _show = _show.replace('```', '').replace('csv', '').strip() print('_show:', _show) # 获取销售额 _sales = next((s for s in result.split('\n') if re.search('预估销售数据', s)), '')