流程手册步骤竖表 绩效指标table 多指标展示
This commit is contained in:
parent
e172ef4465
commit
7732f03930
Binary file not shown.
@ -171,22 +171,20 @@ public class Report2Gener {
|
|||||||
PALRepositoryModel repositoryModel = PALRepositoryQueryAPIManager.getInstance().queryPalRepositoryModelByPalId(repositoryId);
|
PALRepositoryModel repositoryModel = PALRepositoryQueryAPIManager.getInstance().queryPalRepositoryModelByPalId(repositoryId);
|
||||||
|
|
||||||
//流程绩效
|
//流程绩效
|
||||||
dataMap.put("pl_Name_process_performance_indicator", "");
|
JSONArray processKpi = new JSONArray();
|
||||||
dataMap.put("pl_set_the_purpose", "");
|
|
||||||
dataMap.put("pl_Index_definition", "");
|
|
||||||
dataMap.put("pl_computational_formula", "");
|
|
||||||
dataMap.put("pl_data_sources", "");
|
|
||||||
dataMap.put("pl_unit_measurement", "");
|
|
||||||
dataMap.put("pl_statistical_period", "");
|
|
||||||
dataMap.put("pl_explain", "");
|
|
||||||
List<DesignerShapeRelationModel> metrics = DesignerShapeRelationCache.getListByAttrId(repositoryModel.getId(), "", "Process_performance_metrics");
|
List<DesignerShapeRelationModel> metrics = DesignerShapeRelationCache.getListByAttrId(repositoryModel.getId(), "", "Process_performance_metrics");
|
||||||
if (metrics.size() != 0) {
|
if (metrics.size() != 0) {
|
||||||
for (DesignerShapeRelationModel relation : metrics) {
|
for (DesignerShapeRelationModel relation : metrics) {
|
||||||
|
JSONObject processObj = new JSONObject();
|
||||||
String relationFileId = relation.getRelationFileId();// 支持或相关文件的ID
|
String relationFileId = relation.getRelationFileId();// 支持或相关文件的ID
|
||||||
String relationShapeId = relation.getRelationShapeId();//实例ID
|
String relationShapeId = relation.getRelationShapeId();//实例ID
|
||||||
//System.out.println(relationFileId + "/" + relationShapeId);//输出响应ID
|
//System.out.println(relationFileId + "/" + relationShapeId);//输出响应ID
|
||||||
List<Map<String, Object>> relations = CoeDesignerUtil.getShapeMessageJson4(relationFileId); //流程文件内容
|
List<Map<String, Object>> relations = CoeDesignerUtil.getShapeMessageJson4(relationFileId); //流程文件内容
|
||||||
for (Map<String, Object> entry : relations) {
|
for (Map<String, Object> entry : relations) {
|
||||||
|
String id = (String)entry.get("id");
|
||||||
|
if (id == null || !id.equals(relationShapeId)){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
Object attributes = entry.get("attributes");
|
Object attributes = entry.get("attributes");
|
||||||
String resultJson = attributes.toString();
|
String resultJson = attributes.toString();
|
||||||
JSONArray object= JSONArray.parseArray(resultJson);
|
JSONArray object= JSONArray.parseArray(resultJson);
|
||||||
@ -195,33 +193,35 @@ public class Report2Gener {
|
|||||||
//if (key.equals("explain") || key.equals("statistical_period") || key.equals("unit_measurement") || key.equals("data_sources") || key.equals("computational_formula") || key.equals("Index_definition") || key.equals("objective") || key.equals("Name_process_performance_indicator")) {
|
//if (key.equals("explain") || key.equals("statistical_period") || key.equals("unit_measurement") || key.equals("data_sources") || key.equals("computational_formula") || key.equals("Index_definition") || key.equals("objective") || key.equals("Name_process_performance_indicator")) {
|
||||||
if (key.equals("Name_process_performance_indicator")){//指标名称 Name_process_performance_indicator
|
if (key.equals("Name_process_performance_indicator")){//指标名称 Name_process_performance_indicator
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_Name_process_performance_indicator", value);
|
processObj.put("pl_Name_process_performance_indicator", value);
|
||||||
}else if (key.equals("set_the_purpose")){//设置目的 set_the_purpose
|
}else if (key.equals("set_the_purpose")){//设置目的 set_the_purpose
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_set_the_purpose", value);
|
processObj.put("pl_set_the_purpose", value);
|
||||||
}else if (key.equals("Index_definition")){//指标定义 Index_definition
|
}else if (key.equals("Index_definition")){//指标定义 Index_definition
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_Index_definition", value);
|
processObj.put("pl_Index_definition", value);
|
||||||
}else if (key.equals("computational_formula")){//计算公式 computational_formula
|
}else if (key.equals("computational_formula")){//计算公式 computational_formula
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_computational_formula", value);
|
processObj.put("pl_computational_formula", value);
|
||||||
}else if (key.equals("data_sources")){//数据来源 data_sources
|
}else if (key.equals("data_sources")){//数据来源 data_sources
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_data_sources", value);
|
processObj.put("pl_data_sources", value);
|
||||||
}else if (key.equals("unit_measurement")){//计量单位 unit_measurement
|
}else if (key.equals("unit_measurement")){//计量单位 unit_measurement
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_unit_measurement", value);
|
processObj.put("pl_unit_measurement", value);
|
||||||
}else if (key.equals("statistical_period")){//统计周期 statistical_period
|
}else if (key.equals("statistical_period")){//统计周期 statistical_period
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_statistical_period", value);
|
processObj.put("pl_statistical_period", value);
|
||||||
}else if (key.equals("explain")){//说 明 explain
|
}else if (key.equals("explain")){//说 明 explain
|
||||||
String value = object.getJSONObject(i).getString("value");
|
String value = object.getJSONObject(i).getString("value");
|
||||||
dataMap.put("pl_explain", value);
|
processObj.put("pl_explain", value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
processKpi.add(processObj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
dataMap.put("pl_process_kpi_list",processKpi);
|
||||||
dataMap.put("organizationType", "涉及部门及岗位\\角色");
|
dataMap.put("organizationType", "涉及部门及岗位\\角色");
|
||||||
if (repositoryModel == null) {
|
if (repositoryModel == null) {
|
||||||
return null;
|
return null;
|
||||||
@ -482,33 +482,6 @@ public class Report2Gener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//System.out.println(relations+"==========relations");
|
|
||||||
/*if (wizardJsonData.getBoolean("orderNuberFirst")) { // 根据页面选择进行排序
|
|
||||||
OutputWordUtil.orderByNumber(relations);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 2张表
|
|
||||||
// 文件属性内容(文本内容)表
|
|
||||||
// 文件属性内容关联表
|
|
||||||
|
|
||||||
// 根据绩效所属模型查询绩效形状的详细信息
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 流程文件属性术语与定义(表格类型)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 流程文件属性绩效形状的信息
|
|
||||||
|
|
||||||
// 流程文件属性相关文件和支持文件
|
|
||||||
|
|
||||||
//术语
|
//术语
|
||||||
dataMap.put("term_table", termTable);//table4
|
dataMap.put("term_table", termTable);//table4
|
||||||
dataMap.put("term_table_count", termTable.size());//table4
|
dataMap.put("term_table_count", termTable.size());//table4
|
||||||
|
|||||||
@ -5748,7 +5748,7 @@ y7fdOgAAAABJRU5ErkJggk==
|
|||||||
<aml:annotation aml:id="5" w:type="Word.Bookmark.End"/>
|
<aml:annotation aml:id="5" w:type="Word.Bookmark.End"/>
|
||||||
</w:p>
|
</w:p>
|
||||||
<#if (metrics_count ==0 )>
|
<#if (metrics_count ==0 )>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:pPr>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:rPr>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rFonts w:hint="fareast"/>
|
||||||
@ -5765,486 +5765,488 @@ y7fdOgAAAABJRU5ErkJggk==
|
|||||||
</w:r>
|
</w:r>
|
||||||
</w:p>
|
</w:p>
|
||||||
<#else>
|
<#else>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
<#list pl_process_kpi_list as proKpis>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:spacing w:line="360" w:line-rule="auto"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:spacing w:line="360" w:line-rule="auto"/>
|
||||||
<w:rStyle w:val="a7"/>
|
<w:rPr>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rStyle w:val="a7"/>
|
||||||
<w:i w:val="off"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:i-cs w:val="off"/>
|
<w:i w:val="off"/>
|
||||||
<w:color w:val="FF0000"/>
|
<w:i-cs w:val="off"/>
|
||||||
</w:rPr>
|
<w:color w:val="FF0000"/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
</w:p>
|
</w:pPr>
|
||||||
<w:tbl>
|
</w:p>
|
||||||
<w:tblPr>
|
<w:tbl>
|
||||||
<w:tblW w:w="0" w:type="auto"/>
|
<w:tblPr>
|
||||||
<w:tblInd w:w="121" w:type="dxa"/>
|
<w:tblW w:w="0" w:type="auto"/>
|
||||||
<w:tblLayout w:type="Fixed"/>
|
<w:tblInd w:w="121" w:type="dxa"/>
|
||||||
<w:tblCellMar>
|
<w:tblLayout w:type="Fixed"/>
|
||||||
<w:top w:w="57" w:type="dxa"/>
|
<w:tblCellMar>
|
||||||
<w:bottom w:w="57" w:type="dxa"/>
|
<w:top w:w="57" w:type="dxa"/>
|
||||||
</w:tblCellMar>
|
<w:bottom w:w="57" w:type="dxa"/>
|
||||||
</w:tblPr>
|
</w:tblCellMar>
|
||||||
<w:tblGrid>
|
</w:tblPr>
|
||||||
<w:gridCol w:w="1830"/>
|
<w:tblGrid>
|
||||||
<w:gridCol w:w="6450"/>
|
<w:gridCol w:w="1830"/>
|
||||||
</w:tblGrid>
|
<w:gridCol w:w="6450"/>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tblGrid>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>指标名称</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>指标名称</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:rPr>
|
<w:pPr>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
<w:t>${pl_Name_process_performance_indicator}</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_Name_process_performance_indicator}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>设置目的</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>设置目的</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:rPr>
|
<w:pPr>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:t>${pl_set_the_purpose}</w:t>
|
<w:r>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_set_the_purpose}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>指标定义</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>指标定义</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:r>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:t>${pl_Index_definition}</w:t>
|
<w:r>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_Index_definition}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>计算公式</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>计算公式</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:r>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:t>${pl_computational_formula}</w:t>
|
<w:r>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_computational_formula}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>数据来源</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>数据来源</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:rPr>
|
<w:pPr>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
<w:t>${pl_data_sources}</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_data_sources}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>计量单位</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>计量单位</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:rPr>
|
<w:pPr>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:hint="fareast"/>
|
<w:rPr>
|
||||||
</w:rPr>
|
<w:rFonts w:hint="fareast"/>
|
||||||
<w:t>${pl_unit_measurement}</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_unit_measurement}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>统计周期</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>统计周期</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:r>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:t>${pl_statistical_period}</w:t>
|
<w:r>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_statistical_period}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
<w:tr wsp:rsidR="00000000">
|
</w:tr>
|
||||||
<w:trPr>
|
<w:tr wsp:rsidR="00000000">
|
||||||
<w:trHeight w:val="300"/>
|
<w:trPr>
|
||||||
</w:trPr>
|
<w:trHeight w:val="300"/>
|
||||||
<w:tc>
|
</w:trPr>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="1830" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="1830" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:pPr>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:jc w:val="center"/>
|
<w:pPr>
|
||||||
<w:rPr>
|
<w:jc w:val="center"/>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
</w:pPr>
|
</w:rPr>
|
||||||
<w:r>
|
</w:pPr>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>说</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>说</w:t>
|
||||||
<w:r>
|
</w:r>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
<w:rPr>
|
||||||
<w:b/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t></w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t></w:t>
|
||||||
<w:r>
|
</w:r>
|
||||||
<w:rPr>
|
<w:r>
|
||||||
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
<w:rPr>
|
||||||
<wx:font wx:val="宋体"/>
|
<w:rFonts w:h-ansi="宋体" w:cs="Arial" w:hint="fareast"/>
|
||||||
<w:b/>
|
<wx:font wx:val="宋体"/>
|
||||||
</w:rPr>
|
<w:b/>
|
||||||
<w:t>明</w:t>
|
</w:rPr>
|
||||||
</w:r>
|
<w:t>明</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
<w:tc>
|
</w:tc>
|
||||||
<w:tcPr>
|
<w:tc>
|
||||||
<w:tcW w:w="6450" w:type="dxa"/>
|
<w:tcPr>
|
||||||
<w:tcBorders>
|
<w:tcW w:w="6450" w:type="dxa"/>
|
||||||
<w:top w:val="nil"/>
|
<w:tcBorders>
|
||||||
<w:left w:val="nil"/>
|
<w:top w:val="nil"/>
|
||||||
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:left w:val="nil"/>
|
||||||
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
</w:tcBorders>
|
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
|
||||||
<w:vAlign w:val="center"/>
|
</w:tcBorders>
|
||||||
</w:tcPr>
|
<w:vAlign w:val="center"/>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
</w:tcPr>
|
||||||
<w:r>
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
<w:t>${pl_explain}</w:t>
|
<w:r>
|
||||||
</w:r>
|
<w:t>${proKpis.pl_explain}</w:t>
|
||||||
</w:p>
|
</w:r>
|
||||||
</w:tc>
|
</w:p>
|
||||||
</w:tr>
|
</w:tc>
|
||||||
</w:tbl>
|
</w:tr>
|
||||||
</#if>
|
</w:tbl>
|
||||||
|
</#list>
|
||||||
|
</#if>
|
||||||
</wx:sub-section>
|
</wx:sub-section>
|
||||||
<wx:sub-section>
|
<wx:sub-section>
|
||||||
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
<w:p wsp:rsidR="00000000" wsp:rsidRDefault="00000000">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user