فهرست منبع

freemarker模板文档导出功能调整

user5 1 سال پیش
والد
کامیت
708c720792

+ 4 - 4
jeeplus-api/jeeplus-system-api/src/main/java/com/jeeplus/flowable/feign/IFlowableApi.java

@@ -17,11 +17,11 @@ import java.util.Map;
 @FeignClient(contextId = "flowableApi", name = AppNameConstants.APP_FLOWABLE_SERVICE, fallbackFactory = FlowableApiFallbackFactory.class)
 public interface IFlowableApi {
 
-    @GetMapping("/flowable/task/historicTaskList3")
-    Map historicTaskList3(String procInsId);
+    @RequestMapping(value = "/flowable/task/historicTaskList3", method = RequestMethod.POST)
+    Map historicTaskList3(@RequestParam(value = "procInsId")String procInsId);
 
-    @GetMapping("/flowable/task/historicTaskList2")
-    Map historicTaskList2(String procInsId);
+    @RequestMapping(value = "/flowable/task/historicTaskList2", method = RequestMethod.POST)
+    Map historicTaskList2(@RequestParam(value = "procInsId")String procInsId);
 
     /**
      * 根据通知信息查询数据

+ 134 - 42
jeeplus-modules/jeeplus-assess/src/main/java/com/jeeplus/assess/program/configuration/projectList/controller/ProjectListController.java

@@ -332,8 +332,16 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
+
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -346,12 +354,21 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"一级校审.doc");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"一级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"一级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
 
@@ -370,8 +387,15 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -384,12 +408,20 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"二级校审.doc");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"二级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"二级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
 
@@ -408,8 +440,15 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -422,12 +461,20 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"三级校审.doc");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"三级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"三级校审.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
 
@@ -446,8 +493,15 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -460,12 +514,20 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"资产评估项目(校对)审核记录表.xls");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"资产评估项目(校对)审核记录表.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"资产评估项目(校对)审核记录表.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
 
@@ -484,8 +546,15 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -498,12 +567,20 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"评估报告装订后浏览审核记录表.xls");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"评估报告装订后浏览审核记录表.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"评估报告装订后浏览审核记录表.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
     }
@@ -521,8 +598,15 @@ public class ProjectListController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -535,12 +619,20 @@ public class ProjectListController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"报告签发单.doc");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"报告签发单.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"报告签发单.doc");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
     }

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 1034
jeeplus-modules/jeeplus-assess/src/main/resources/freemarker/cwAudit.ftl


+ 22 - 7
jeeplus-modules/jeeplus-finance/src/main/java/com/jeeplus/finance/projectReport/controller/CwProjectReportController.java

@@ -207,8 +207,15 @@ public class CwProjectReportController {
 
         //模板对象
         Template template=null;
+        //下载文件地址
+        String filePath = null;
+        if(System.getProperty("os.name").toLowerCase().contains("win")){
+            filePath = this.getClass().getResource("/").getPath()+"/freemarker";
+        }else{
+            filePath = "/mnt/project/cloud/freemarker";
+        }
         //freemaker模板路径
-        File path = new File(this.getClass().getResource("/").getPath()+"/freemarker");
+        File path = new File(filePath);
         Configuration cfg = new Configuration();
         try {
             cfg.setDirectoryForTemplateLoading(path);
@@ -221,12 +228,20 @@ public class CwProjectReportController {
         } catch (IOException e) {
             e.printStackTrace();
         }finally {
-            //获取tomcat的路径
-            String tomcatFilePath=System.getProperty("catalina.home");
-            //删除tomcat目录下的处理后的文件信息
-            File tomcatFile = new File(tomcatFilePath+"/bin/"+"报告审核单.xls");
-            if (tomcatFile.isFile()) {
-                tomcatFile.delete();
+            if(System.getProperty("os.name").toLowerCase().contains("win")){
+                //获取tomcat的路径
+                String tomcatFilePath=System.getProperty("catalina.home");
+                //删除tomcat目录下的处理后的文件信息
+                File tomcatFile = new File(tomcatFilePath+"/bin/"+"报告审核单.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
+            }else{
+                //删除目录下的处理后的文件信息
+                File tomcatFile = new File("/mnt/project/cloud/"+"报告审核单.xls");
+                if (tomcatFile.isFile()) {
+                    tomcatFile.delete();
+                }
             }
         }
 

+ 3 - 1
jeeplus-modules/jeeplus-finance/src/main/java/com/jeeplus/finance/projectReport/service/CwProjectReportService.java

@@ -1335,7 +1335,9 @@ public class CwProjectReportService extends ServiceImpl<CwProjectReportMapper, C
 
 
                 Map dataMap = flowTaskService.historicTaskList2(reportData.getProcInsId3());
-                data.putAll(dataMap);
+                if(null != dataMap){
+                    data.putAll(dataMap);
+                }
 //                for (Flow flow : flows) {
 //                    HistoricActivityInstance histIns = flow.getHistIns();
 //                    if(StringUtils.isNotBlank(histIns.getActivityName())){

+ 0 - 631
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/auditRecordFormAfterBinding.ftl

@@ -1,631 +0,0 @@
-<?xml version="1.0"?>
-<?mso-application progid="Excel.Sheet"?>
-<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
-		  xmlns:o="urn:schemas-microsoft-com:office:office"
-		  xmlns:x="urn:schemas-microsoft-com:office:excel"
-		  xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-		  xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-		  xmlns:html="http://www.w3.org/TR/REC-html40">
-	<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
-		<Author>徐滕</Author>
-		<LastAuthor>徐滕</LastAuthor>
-		<Created>2022-10-20T05:33:45Z</Created>
-		<LastSaved>2022-10-20T05:53:46Z</LastSaved>
-		<Version>16.00</Version>
-	</DocumentProperties>
-	<CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
-		<ICV dt:dt="string">416D7A18A3A947CA8F5937DF8CC0B323</ICV>
-		<KSOProductBuildVer dt:dt="string">2052-11.1.0.12132</KSOProductBuildVer>
-	</CustomDocumentProperties>
-	<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
-		<AllowPNG/>
-	</OfficeDocumentSettings>
-	<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
-		<WindowHeight>17790</WindowHeight>
-		<WindowWidth>19200</WindowWidth>
-		<WindowTopX>32767</WindowTopX>
-		<WindowTopY>32767</WindowTopY>
-		<ProtectStructure>False</ProtectStructure>
-		<ProtectWindows>False</ProtectWindows>
-	</ExcelWorkbook>
-	<Styles>
-		<Style ss:ID="Default" ss:Name="Normal">
-			<Alignment ss:Vertical="Center"/>
-											<Borders/>
-													 <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																															<Interior/>
-																																	  <NumberFormat/>
-																																					<Protection/>
-		</Style>
-		<Style ss:ID="m1443364801392">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   </Borders>
-																																																																								 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																						   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364799376">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																						<Interior/>
-		</Style>
-		<Style ss:ID="m1443364799396">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364799416">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						  </Borders>
-																																																							<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																								 <Interior/>
-		</Style>
-		<Style ss:ID="m1443364799436">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   </Borders>
-																																																																								 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																						   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364799456">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						  </Borders>
-																																																							<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																								 <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792656">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-		<Style ss:ID="m1443364792696">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792716">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792736">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792320">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792340">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792360">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792380">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364792400">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364791312">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364791332">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364791352">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364791372">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-		<Style ss:ID="m1443364790976">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364790996">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364791016">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-		<Style ss:ID="m1443364791056">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						  <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							</Borders>
-																																																																							  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																								   <Interior/>
-		</Style>
-		<Style ss:ID="m1443364786332">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-		<Style ss:ID="s66">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																												 <Interior/>
-		</Style>
-		<Style ss:ID="s67">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																									  <Interior/>
-		</Style>
-		<Style ss:ID="s68">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																														   <Interior/>
-																																	 <NumberFormat ss:Format="yyyy&quot;年&quot;m&quot;月&quot;d&quot;日&quot;;@"/>
-		</Style>
-		<Style ss:ID="s69">
-			<Alignment ss:Horizontal="Justify" ss:Vertical="Center"/>
-																	<Borders/>
-																			 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																				  <Interior/>
-		</Style>
-		<Style ss:ID="s70">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Borders/>
-																		  <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																	<Interior/>
-																																			  <NumberFormat ss:Format="yyyy&quot;年&quot;m&quot;月&quot;d&quot;日&quot;;@"/>
-		</Style>
-		<Style ss:ID="s71">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																	  <Interior/>
-		</Style>
-		<Style ss:ID="s72">
-			<Alignment ss:Horizontal="Justify" ss:Vertical="Center"/>
-																	<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																		 <Interior/>
-		</Style>
-		<Style ss:ID="s73">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																												 <Interior/>
-		</Style>
-		<Style ss:ID="s81">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																						 <Interior/>
-		</Style>
-		<Style ss:ID="s82">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																						 <Interior/>
-		</Style>
-		<Style ss:ID="s83">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																						<Interior/>
-		</Style>
-		<Style ss:ID="s86">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																																																																																																						  <Interior/>
-		</Style>
-		<Style ss:ID="s87">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																																																																																																						  <Interior/>
-		</Style>
-		<Style ss:ID="s89">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																										<Interior/>
-		</Style>
-		<Style ss:ID="s91">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																					  </Borders>
-																																						<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																							 <Interior/>
-		</Style>
-		<Style ss:ID="s92">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																						<Interior/>
-		</Style>
-		<Style ss:ID="s93">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders/>
-																							<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																								 <Interior/>
-		</Style>
-		<Style ss:ID="s94">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																					   </Borders>
-																																						 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																							  <Interior/>
-		</Style>
-		<Style ss:ID="s103">
-			<Alignment ss:Horizontal="Right" ss:Vertical="Center"/>
-																  <Borders/>
-																		   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																	 <Interior/>
-		</Style>
-		<Style ss:ID="s104">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Font ss:FontName="黑体" x:CharSet="134" x:Family="Modern" ss:Size="16"
-			ss:Color="#000000" ss:Bold="1"/>
-										   <Interior/>
-		</Style>
-		<Style ss:ID="s111">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-	</Styles>
-	<Worksheet ss:Name="Sheet1">
-		<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="35" x:FullColumns="1"
-			   x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="13.5">
-			<Column ss:AutoFitWidth="0" ss:Width="39"/>
-			<Column ss:AutoFitWidth="0" ss:Width="28.5"/>
-			<Column ss:AutoFitWidth="0" ss:Width="314.25"/>
-			<Column ss:AutoFitWidth="0" ss:Width="100.5" ss:Span="1"/>
-			<Row ss:AutoFitHeight="0" ss:Height="15">
-				<Cell ss:MergeAcross="4" ss:StyleID="s103"><Data ss:Type="String">索引号:G-1-6-7</Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="30">
-				<Cell ss:MergeAcross="4" ss:StyleID="s104"><Data ss:Type="String">评估报告装订后浏览审核记录表</Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:StyleID="s66"><ss:Data ss:Type="String"
-												xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																							  html:Color="#000000">项目名称:</Font></ss:Data></Cell>
-				<Cell ss:StyleID="s66"/>
-				<Cell ss:MergeAcross="2" ss:StyleID="s67"><Data ss:Type="String">${projectName}</Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:StyleID="s66"><ss:Data ss:Type="String"
-												xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																							  html:Color="#000000">评估基准日:</Font></ss:Data></Cell>
-				<Cell ss:StyleID="s66"/>
-				<Cell ss:StyleID="s68"><Data ss:Type="String">${assessBaseMessage}</Data></Cell>
-				<Cell ss:StyleID="s66"><ss:Data ss:Type="String"
-												xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																							  html:Color="#000000">项目负责人:</Font></ss:Data></Cell>
-				<Cell ss:StyleID="s67"><Data ss:Type="String">${projectMaster}</Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:StyleID="s66"><ss:Data ss:Type="String"
-												xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																							  html:Color="#000000">项目审核人:</Font></ss:Data></Cell>
-				<Cell ss:StyleID="s66"/>
-				<Cell ss:StyleID="s67"><Data ss:Type="String">${projectauditor}</Data></Cell>
-				<Cell ss:StyleID="s69"><ss:Data ss:Type="String"
-												xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																							  html:Color="#000000">审核日期:</Font></ss:Data></Cell>
-				<Cell ss:StyleID="s70"><Data ss:Type="String">${projectAuditDate}</Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:StyleID="s71"/>
-				<Cell ss:StyleID="s71"/>
-				<Cell ss:StyleID="s71"/>
-				<Cell ss:StyleID="s72"/>
-				<Cell ss:StyleID="s73"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="27">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364786332"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																															   x:CharSet="134" html:Color="#000000">一、报告、说明、明细表一致性</Font></B></ss:Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="2" ss:StyleID="s111"><ss:Data ss:Type="String"
-																	xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																													 x:CharSet="134" html:Color="#000000">审核要点</Font></B></ss:Data></Cell>
-				<Cell ss:StyleID="s81"><Data ss:Type="String">审核情况(√/×)</Data></Cell>
-				<Cell ss:StyleID="s82"><Data ss:Type="String">改正情况(√/×)</Data></Cell>
-			</Row>
-
-			<#list assessmentList as assessment>
-				<Row ss:AutoFitHeight="0" ss:Height="18">
-					<Cell ss:StyleID="s83"><Data ss:Type="Number">${assessment.serialNumber}</Data></Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="m1443364790976"><ss:Data ss:Type="String"
-																				  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																																html:Color="#000000">${assessment.typeName}</Font></ss:Data></Cell>
-					<Cell ss:StyleID="s86"><Data ss:Type="String">${assessment.reviewComments}</Data></Cell>
-					<Cell ss:StyleID="s87"><Data ss:Type="String">${assessment.replyComments}</Data></Cell>
-				</Row>
-			</#list>
-
-
-			<Row ss:AutoFitHeight="0" ss:Height="27">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364791016"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																															   x:CharSet="134" html:Color="#000000">二、评估报告</Font></B></ss:Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="2" ss:StyleID="s111"><ss:Data ss:Type="String"
-																	xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																													 x:CharSet="134" html:Color="#000000">审核要点</Font></B></ss:Data></Cell>
-				<Cell ss:StyleID="s81"><Data ss:Type="String">审核情况(√/×)</Data></Cell>
-				<Cell ss:StyleID="s82"><Data ss:Type="String">改正情况(√/×)</Data></Cell>
-			</Row>
-
-			<#list assessmentReportList as assessmentReport>
-				<Row ss:AutoFitHeight="0" ss:Height="18">
-					<Cell ss:StyleID="s83"><Data ss:Type="Number">${assessmentReport.serialNumber}</Data></Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="m1443364791056"><ss:Data ss:Type="String"
-																				  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																																html:Color="#000000">${assessmentReport.typeName}</Font></ss:Data></Cell>
-					<Cell ss:StyleID="s86"><Data ss:Type="String">${assessmentReport.reviewComments}</Data></Cell>
-					<Cell ss:StyleID="s87"><Data ss:Type="String">${assessmentReport.replyComments}</Data></Cell>
-				</Row>
-			</#list>
-
-
-			<Row ss:AutoFitHeight="0" ss:Height="27">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364791372"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																															   x:CharSet="134" html:Color="#000000">三、评估说明</Font></B></ss:Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="2" ss:StyleID="s111"><ss:Data ss:Type="String"
-																	xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																													 x:CharSet="134" html:Color="#000000">审核要点</Font></B></ss:Data></Cell>
-				<Cell ss:StyleID="s81"><Data ss:Type="String">审核情况(√/×)</Data></Cell>
-				<Cell ss:StyleID="s82"><Data ss:Type="String">改正情况(√/×)</Data></Cell>
-			</Row>
-
-			<#list assessmentExplainList as assessmentExplain>
-				<Row ss:AutoFitHeight="0" ss:Height="18">
-					<Cell ss:StyleID="s83"><Data ss:Type="Number">${assessmentExplain.serialNumber}</Data></Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="m1443364792320"><ss:Data ss:Type="String"
-																				  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																																html:Color="#000000">${assessmentExplain.typeName}</Font></ss:Data></Cell>
-					<Cell ss:StyleID="s86"><Data ss:Type="String">${assessmentExplain.reviewComments}</Data></Cell>
-					<Cell ss:StyleID="s87"><Data ss:Type="String">${assessmentExplain.replyComments}</Data></Cell>
-				</Row>
-			</#list>
-
-
-			<Row ss:AutoFitHeight="0" ss:Height="27">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364792656"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																															   x:CharSet="134" html:Color="#000000">四、评估明细表</Font></B></ss:Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="2" ss:StyleID="s111"><ss:Data ss:Type="String"
-																	xmlns="http://www.w3.org/TR/REC-html40"><B><Font html:Face="宋体"
-																													 x:CharSet="134" html:Color="#000000">审核要点</Font></B></ss:Data></Cell>
-				<Cell ss:StyleID="s81"><Data ss:Type="String">审核情况(√/×)</Data></Cell>
-				<Cell ss:StyleID="s82"><Data ss:Type="String">改正情况(√/×)</Data></Cell>
-			</Row>
-
-			<#list assessmentDetailList as assessmentDetail>
-				<Row ss:AutoFitHeight="0" ss:Height="18">
-					<Cell ss:StyleID="s83"><Data ss:Type="Number">${assessmentDetail.serialNumber}</Data></Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="m1443364792320"><ss:Data ss:Type="String"
-																				  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Face="宋体" x:CharSet="134"
-																																html:Color="#000000">${assessmentDetail.typeName}</Font></ss:Data></Cell>
-					<Cell ss:StyleID="s86"><Data ss:Type="String">${assessmentDetail.reviewComments}</Data></Cell>
-					<Cell ss:StyleID="s87"><Data ss:Type="String">${assessmentDetail.replyComments}</Data></Cell>
-				</Row>
-			</#list>
-
-
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:StyleID="s91"/>
-				<Cell ss:StyleID="s92"/>
-				<Cell ss:StyleID="s93"/>
-				<Cell ss:StyleID="s93"/>
-				<Cell ss:StyleID="s94"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364799416"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364799436"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">审核人员签字:${auditPersonnel}</Font><Font
-								html:Face="Arial Narrow" x:Family="Swiss" html:Color="#000000">                                                                                             </Font>
-						<Font html:Color="#000000">${correctDate}</Font></ss:Data></Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364799456"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18">
-				<Cell ss:MergeAcross="4" ss:StyleID="m1443364801392"><ss:Data ss:Type="String"
-																			  xmlns="http://www.w3.org/TR/REC-html40"><Font html:Color="#000000">改正人员签字:${correctPersonnel}</Font><Font
-								html:Face="Arial Narrow" x:Family="Swiss" html:Color="#000000">                                                                                            </Font>
-						<Font html:Color="#000000">${correctDate}</Font></ss:Data></Cell>
-			</Row>
-		</Table>
-		<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
-			<Selected/>
-			<Panes>
-				<Pane>
-					<Number>3</Number>
-					<ActiveRow>16</ActiveRow>
-					<ActiveCol>6</ActiveCol>
-				</Pane>
-			</Panes>
-			<ProtectObjects>False</ProtectObjects>
-			<ProtectScenarios>False</ProtectScenarios>
-		</WorksheetOptions>
-	</Worksheet>
-</Workbook>

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 1978
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/firstAudit.ftl


+ 0 - 807
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/proofreadAudit.ftl

@@ -1,807 +0,0 @@
-<?xml version="1.0"?>
-<?mso-application progid="Excel.Sheet"?>
-<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
-	<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
-		<Author>徐滕</Author>
-		<LastAuthor>徐滕</LastAuthor>
-		<Created>2022-10-20T07:26:00Z</Created>
-		<LastSaved>2023-01-12T01:54:05Z</LastSaved>
-		<Version>16.00</Version>
-	</DocumentProperties>
-	<CustomDocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
-		<ICV dt:dt="string">33A31C1D1F684C67A27B9367A7E4323E</ICV>
-		<KSOProductBuildVer dt:dt="string">2052-11.1.0.12132</KSOProductBuildVer>
-	</CustomDocumentProperties>
-	<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
-		<AllowPNG/>
-	</OfficeDocumentSettings>
-	<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
-		<WindowHeight>17940</WindowHeight>
-		<WindowWidth>32760</WindowWidth>
-		<WindowTopX>32760</WindowTopX>
-		<WindowTopY>32760</WindowTopY>
-		<ProtectStructure>False</ProtectStructure>
-		<ProtectWindows>False</ProtectWindows>
-		<DisplayInkNotes>False</DisplayInkNotes>
-	</ExcelWorkbook>
-	<Styles>
-		<Style ss:ID="Default" ss:Name="Normal">
-			<Alignment ss:Vertical="Center"/>
-											<Borders/>
-													 <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																															<Interior/>
-																																	  <NumberFormat/>
-																																					<Protection/>
-		</Style>
-		<Style ss:ID="s64">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																												   <Interior/>
-		</Style>
-		<Style ss:ID="s65">
-			<Alignment ss:Vertical="Center"/>
-											<Borders/>
-													 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																														  <Interior/>
-		</Style>
-		<Style ss:ID="s66">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																												 <Interior/>
-		</Style>
-		<Style ss:ID="s67">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Borders/>
-																		  <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																			   <Interior/>
-		</Style>
-		<Style ss:ID="s68">
-			<Alignment ss:Vertical="Center"/>
-											<Borders/>
-													 <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																															<Interior/>
-		</Style>
-		<Style ss:ID="s69">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders/>
-																			<Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																																				   <Interior/>
-		</Style>
-		<Style ss:ID="s72">
-			<Alignment ss:Vertical="Center" ss:WrapText="1"/>
-															<Borders/>
-																	 <Font ss:FontName="黑体" x:CharSet="134" x:Family="Modern" ss:Size="12" ss:Color="#000000"/>
-																																							  <Interior/>
-		</Style>
-		<Style ss:ID="s76">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Borders/>
-																		  <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																	<Interior/>
-																																			  <NumberFormat ss:Format="Long Date"/>
-		</Style>
-		<Style ss:ID="s78">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																	  <Interior/>
-		</Style>
-		<Style ss:ID="s79">
-			<Alignment ss:Vertical="Center"/>
-											<Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																									  <Interior/>
-		</Style>
-		<Style ss:ID="s81">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																		<Interior/>
-		</Style>
-		<Style ss:ID="s85">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																									<Interior/>
-		</Style>
-		<Style ss:ID="s86">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			 </Borders>
-																																																																			   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																					 <Interior/>
-		</Style>
-		<Style ss:ID="s87">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																									<Interior/>
-		</Style>
-		<Style ss:ID="s88">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																						<Interior/>
-		</Style>
-		<Style ss:ID="s90">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																																			 <Interior/>
-		</Style>
-		<Style ss:ID="s91">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			 </Borders>
-																																																																			   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																		 <Interior/>
-		</Style>
-		<Style ss:ID="s92">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																																																																																			 <Interior/>
-		</Style>
-		<Style ss:ID="s95">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																						 <Interior/>
-		</Style>
-		<Style ss:ID="s97">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
-																   <Borders>
-																   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																		<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																		   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																				 </Borders>
-																																																																																				   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																						 <Interior/>
-		</Style>
-		<Style ss:ID="s98">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																										<Interior/>
-		</Style>
-		<Style ss:ID="s100">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																										 <Interior/>
-		</Style>
-		<Style ss:ID="s101">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							 </Borders>
-																																																																							   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																									 <Interior/>
-		</Style>
-		<Style ss:ID="s102">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																										 <Interior/>
-		</Style>
-		<Style ss:ID="s107">
-			<Alignment ss:Horizontal="Right" ss:Vertical="Center"/>
-																  <Borders/>
-																		   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																	 <Interior/>
-		</Style>
-		<Style ss:ID="s108">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders/>
-																							<Font ss:FontName="黑体" x:CharSet="134" x:Family="Modern" ss:Size="16" ss:Color="#000000" ss:Bold="1"/>
-																																																 <Interior/>
-		</Style>
-		<Style ss:ID="s109">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																					  <Interior/>
-		</Style>
-		<Style ss:ID="s110">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																																		   <Interior/>
-		</Style>
-		<Style ss:ID="s111">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																	  <Interior/>
-																																				<NumberFormat ss:Format="Long Date"/>
-		</Style>
-		<Style ss:ID="s112">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																														   <Interior/>
-		</Style>
-		<Style ss:ID="s114">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000"/>
-																														   <Interior/>
-																																	 <NumberFormat ss:Format="yyyy&quot;年&quot;m&quot;月&quot;d&quot;日&quot;;@"/>
-		</Style>
-		<Style ss:ID="s115">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																									   <Interior/>
-		</Style>
-		<Style ss:ID="s116">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																												  <Interior/>
-		</Style>
-		<Style ss:ID="s117">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																													<Interior/>
-		</Style>
-		<Style ss:ID="s118">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																									  <Interior/>
-		</Style>
-		<Style ss:ID="s119">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																									   <Interior/>
-		</Style>
-		<Style ss:ID="s120">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																										 <Interior/>
-		</Style>
-		<Style ss:ID="s121">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="宋体" x:CharSet="134" ss:Color="#000000" ss:Bold="1"/>
-																																																																																																									   <Interior/>
-		</Style>
-		<Style ss:ID="s122">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
-																 <Borders>
-																 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																	  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																		 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																			 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																			   </Borders>
-																																																																																				 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																					  <Interior/>
-		</Style>
-		<Style ss:ID="s123">
-			<Alignment ss:Horizontal="Center" ss:Vertical="Center" ss:WrapText="1"/>
-																				   <Borders>
-																				   <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																						<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						   <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							   <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																								 </Borders>
-																																																																																								   <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																										<Interior/>
-		</Style>
-		<Style ss:ID="s124">
-			<Alignment ss:Horizontal="Left" ss:Vertical="Center" ss:WrapText="1"/>
-																				 <Borders>
-																				 <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																					  <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																						 <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="2"/>
-																																																																							 <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
-																																																																																							   </Borders>
-																																																																																								 <Font ss:FontName="Arial Narrow" x:Family="Swiss" ss:Color="#000000"/>
-																																																																																																									  <Interior/>
-		</Style>
-		<Style ss:ID="s125">
-			<Alignment ss:Vertical="Center" ss:WrapText="1"/>
-															<Borders/>
-																	 <Font ss:FontName="宋体" x:CharSet="134" ss:Size="11" ss:Color="#000000"/>
-																																			<Interior/>
-																																					  <NumberFormat/>
-																																									<Protection/>
-		</Style>
-	</Styles>
-	<Worksheet ss:Name="Sheet1">
-		<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="80" x:FullColumns="1" x:FullRows="1" ss:StyleID="s68" ss:DefaultColumnWidth="51.75" ss:DefaultRowHeight="13.5">
-			<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="32.25"/>
-			<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="34.5"/>
-			<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="369.75"/>
-			<Column ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="71.25" ss:Span="1"/>
-			<Column ss:Index="6" ss:StyleID="s69" ss:AutoFitWidth="0" ss:Width="76.5"/>
-			<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="90.75"/>
-			<Row ss:AutoFitHeight="0" ss:Height="15" ss:StyleID="s64">
-				<Cell ss:MergeAcross="5" ss:StyleID="s107">
-					<Data ss:Type="String">索引号:G-1-6-5</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="30">
-				<Cell ss:MergeAcross="5" ss:StyleID="s108">
-					<Data ss:Type="String">资产评估项目(校对)审核记录表</Data>
-				</Cell>
-				<Cell ss:StyleID="s72"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="1" ss:StyleID="s109">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">项目名称:</Font>
-					</ss:Data>
-				</Cell>
-				<Cell ss:MergeAcross="3" ss:StyleID="s110">
-					<Data ss:Type="String">${projectName}</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="1" ss:StyleID="s111">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">评估基准日:</Font>
-					</ss:Data>
-				</Cell>
-				<Cell ss:StyleID="s76">
-					<Data ss:Type="String">${assessBaseMessage}</Data>
-				</Cell>
-				<Cell ss:StyleID="s67">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">项目负责人:</Font>
-					</ss:Data>
-				</Cell>
-				<Cell ss:MergeAcross="1" ss:StyleID="s112">
-					<Data ss:Type="String">${projectMaster}</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="1" ss:StyleID="s78">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">项目审核人</Font>
-						<Font html:Color="#000000"> </Font>
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">:</Font>
-					</ss:Data>
-				</Cell>
-				<Cell ss:StyleID="s79">
-					<Data ss:Type="String">${projectauditor}</Data>
-				</Cell>
-				<Cell ss:StyleID="s67">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">审核日期:</Font>
-					</ss:Data>
-				</Cell>
-				<Cell ss:MergeAcross="1" ss:StyleID="s114">
-					<Data ss:Type="String">${projectAuditDate}</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="9.9375" ss:StyleID="s66">
-				<Cell ss:StyleID="s78"/>
-				<Cell ss:StyleID="s78"/>
-				<Cell ss:StyleID="s78"/>
-				<Cell ss:StyleID="s81"/>
-				<Cell ss:StyleID="s81"/>
-				<Cell ss:StyleID="s81"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="26.0625" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s115">
-					<Data ss:Type="String">一、明细表</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s116">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<B>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">资产基础法</Font>
-							<Font html:Color="#000000">/</Font>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">成本法评估明细表</Font>
-						</B>
-					</ss:Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="2" ss:StyleID="s117">
-					<Data ss:Type="String">审核要点</Data>
-				</Cell>
-				<Cell ss:StyleID="s85">
-					<Data ss:Type="String">审核意见</Data>
-				</Cell>
-				<Cell ss:StyleID="s86">
-					<Data ss:Type="String">是否适用</Data>
-				</Cell>
-				<Cell ss:StyleID="s87">
-					<Data ss:Type="String">回复意见</Data>
-				</Cell>
-			</Row>
-			<#list detailedStatementList as detailedStatement>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s67">
-					<Cell ss:StyleID="s88">
-						<Data ss:Type="Number">${detailedStatement.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-
-						<Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${detailedStatement.typeName}</Font>
-						</Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${detailedStatement.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${detailedStatement.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${detailedStatement.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="26.0625" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s119">
-					<Data ss:Type="String">二、评估说明</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="2" ss:StyleID="s120">
-					<Data ss:Type="String">审核要点</Data>
-				</Cell>
-				<Cell ss:StyleID="s95">
-					<Data ss:Type="String">审核意见</Data>
-				</Cell>
-				<Cell ss:StyleID="s86">
-					<Data ss:Type="String">是否适用</Data>
-				</Cell>
-				<Cell ss:StyleID="s97">
-					<Data ss:Type="String">回复意见</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s116">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<B>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">(一)封面至评估范围 </Font>
-						</B>
-					</ss:Data>
-				</Cell>
-			</Row>
-
-			<#list assessmentInstructions1List as assessmentInstructions1>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentInstructions1.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentInstructions1.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentInstructions1.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentInstructions1.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentInstructions1.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s116">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<B>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">(二)资产核实情况总体说明</Font>
-						</B>
-					</ss:Data>
-				</Cell>
-			</Row>
-
-			<#list assessmentInstructions2List as assessmentInstructions2>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentInstructions2.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentInstructions2.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentInstructions2.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentInstructions2.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentInstructions2.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s116">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<B>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">(三)资产基础法</Font>
-							<Font html:Color="#000000">/</Font>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">成本法评估技术说明</Font>
-						</B>
-					</ss:Data>
-				</Cell>
-			</Row>
-
-			<#list assessmentInstructions3List as assessmentInstructions3>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentInstructions3.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentInstructions3.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentInstructions3.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentInstructions3.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentInstructions3.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s116">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<B>
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">(四)评估结论及分析 </Font>
-						</B>
-					</ss:Data>
-				</Cell>
-			</Row>
-
-			<#list assessmentInstructions4List as assessmentInstructions4>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentInstructions4.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentInstructions4.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentInstructions4.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentInstructions4.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentInstructions4.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s119">
-					<Data ss:Type="String">(五)关于评估有关事项的说明</Data>
-				</Cell>
-			</Row>
-
-			<#list assessmentInstructions5List as assessmentInstructions5>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentInstructions5.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentInstructions5.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentInstructions5.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentInstructions5.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentInstructions5.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="2" ss:StyleID="s121">
-					<Data ss:Type="String">(六)其他问题</Data>
-				</Cell>
-				<Cell ss:StyleID="s100"/>
-				<Cell ss:StyleID="s101"/>
-				<Cell ss:StyleID="s102"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="26.0625" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s119">
-					<Data ss:Type="String">三、评估报告</Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="2" ss:StyleID="s117">
-					<Data ss:Type="String">审核要点</Data>
-				</Cell>
-				<Cell ss:StyleID="s85">
-					<Data ss:Type="String">审核意见</Data>
-				</Cell>
-				<Cell ss:StyleID="s86">
-					<Data ss:Type="String">是否适用</Data>
-				</Cell>
-				<Cell ss:StyleID="s87">
-					<Data ss:Type="String">回复意见</Data>
-				</Cell>
-
-			</Row>
-
-			<#list assessmentReportList as assessmentReport>
-				<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-					<Cell ss:StyleID="s98">
-						<Data ss:Type="Number">${assessmentReport.serialNumber}</Data>
-					</Cell>
-					<Cell ss:MergeAcross="1" ss:StyleID="s118">
-						<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-							<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">${assessmentReport.typeName}</Font>
-						</ss:Data>
-					</Cell>
-					<Cell ss:StyleID="s90">
-						<Data ss:Type="String">${assessmentReport.reviewComments}</Data>
-					</Cell>
-					<Cell ss:StyleID="s91">
-						<Data ss:Type="String">${assessmentReport.isApply}</Data>
-					</Cell>
-					<Cell ss:StyleID="s92">
-						<Data ss:Type="String">${assessmentReport.replyComments}</Data>
-					</Cell>
-				</Row>
-			</#list>
-
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s122">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">经确认,执行人员已按审核意见全部修改处理。</Font>
-					</ss:Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:MergeDown="3" ss:StyleID="s125">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Color="#000000">对下列意见保留:</Font>
-						<Font>       </Font>
-						<Font html:Color="#000000">&#10;${qualifiedOpinion}</Font>
-						<Font>       </Font>
-						<Font html:Color="#000000">&#10;                                     执行人员签字:${executor}              ${executorDate}</Font>
-					</ss:Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65" ss:Span="2"/>
-			<Row ss:Index="75" ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s123"/>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:StyleID="s124">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Face="宋体" x:CharSet="134" html:Color="#000000">经确认,执行人员已按审核意见检查并处理。</Font>
-					</ss:Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65">
-				<Cell ss:MergeAcross="5" ss:MergeDown="3" ss:StyleID="s125">
-					<ss:Data ss:Type="String" xmlns="http://www.w3.org/TR/REC-html40">
-						<Font html:Color="#000000">对下列意见未修改:</Font>
-						<Font html:Face="Arial Narrow" x:Family="Swiss" html:Color="#000000">&#10;${notModifiedOpinion}</Font>
-						<Font html:Color="#000000">&#10;                                     审核人员签字:${executor}               ${executorDate}</Font>
-					</ss:Data>
-				</Cell>
-			</Row>
-			<Row ss:AutoFitHeight="0" ss:Height="18" ss:StyleID="s65" ss:Span="2"/>
-		</Table>
-		<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
-			<Unsynced/>
-			<PageBreakZoom>60</PageBreakZoom>
-			<Selected/>
-			<Panes>
-				<Pane>
-					<Number>3</Number>
-					<ActiveRow>17</ActiveRow>
-					<ActiveCol>8</ActiveCol>
-				</Pane>
-			</Panes>
-			<ProtectObjects>False</ProtectObjects>
-			<ProtectScenarios>False</ProtectScenarios>
-		</WorksheetOptions>
-	</Worksheet>
-</Workbook>

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 4317
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/reportAusstellung.ftl


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 1978
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/secondAuditFtl.ftl


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 1978
jeeplus-modules/jeeplus-finance/src/main/resources/freemarker/thirdlyAudit.ftl


+ 2 - 2
jeeplus-modules/jeeplus-flowable/src/main/java/com/jeeplus/flowable/controller/FlowableTaskController.java

@@ -534,7 +534,7 @@ public class FlowableTaskController {
      *
      * @param procInsId 流程实例
      */
-    @GetMapping("historicTaskList2")
+    @PostMapping("historicTaskList2")
     public Map historicTaskList2(String procInsId) throws Exception {
         return flowTaskService.historicTaskList2(procInsId);
     }
@@ -544,7 +544,7 @@ public class FlowableTaskController {
      *
      * @param procInsId 流程实例
      */
-    @GetMapping("historicTaskList3")
+    @PostMapping("historicTaskList3")
     public Map historicTaskList3(String procInsId) throws Exception {
         return flowTaskService.historicTaskList3(procInsId);
     }