From e6128e7da6554d2f98e611be61faa40bd8d8d655 Mon Sep 17 00:00:00 2001 From: Julin Date: Tue, 25 Apr 2023 10:49:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/pep-stats-report/config.ini | 2 +- code/pep-stats-report/main.py | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/code/pep-stats-report/config.ini b/code/pep-stats-report/config.ini index a742da8..1439b05 100644 --- a/code/pep-stats-report/config.ini +++ b/code/pep-stats-report/config.ini @@ -3,7 +3,7 @@ host = 10.8.30.161 port = 30900 username = default password = -database = pepca8 +database = pepca_m [qiniu] access-key=5XrM4wEB9YU6RQwT64sPzzE6cYFKZgssdP5Kj3uu diff --git a/code/pep-stats-report/main.py b/code/pep-stats-report/main.py index e4a7d9b..1bb5be6 100644 --- a/code/pep-stats-report/main.py +++ b/code/pep-stats-report/main.py @@ -267,11 +267,11 @@ def generate_word_report(): set_title_format(h, r) # 添加段落 - p1 = doc.add_paragraph( + p_first = doc.add_paragraph( '为了提升公司整体工作效率,确保跨部门工作高效推进,充分发挥我司自研平台的优势,现基于项企系统数据,利用Superset工具打造了项企流程效能分析平台,能够对我司项企平台的数据进行分析,进而通过量化数据发现我司办公流程流转中的问题,' \ '现将{}年{}月公司员工处理流程平均响应时长(响应时长为从流程流转到当前节点到当前节点处理完成的耗时,单位:小时)情况结果进行公示如下:' .format(last_year, last_month)) - set_paragraph_format(p1) + set_paragraph_format(p_first) # 一、公司各部门横向比较情况 add_chapter_1(doc) @@ -279,6 +279,10 @@ def generate_word_report(): # 二、各部门成员详情 add_chapter_2(doc) + p_last = doc.add_paragraph( + '现项企业流程效能分析是公司管理工具逐步完善尝试和摸索的阶段,只是单一评估维度,大家若对评估维度有相应意见,欢迎积极提出,共同促进项企流程效能分析不断完善,进而提升公司整体效率!') + set_paragraph_format(p_last) + # 保存文档 report_path = '{}/项企流程效能分析结果公示(全员)-{}年{}月.docx'.format(REPORT_DIR, last_year, last_month) doc.save(report_path)