制度手册提交

This commit is contained in:
zhal 2023-07-20 23:37:30 +08:00
parent db1ef96d41
commit 9f41b03788
8 changed files with 4104 additions and 711 deletions

View File

@ -175,16 +175,31 @@ public class ReportPrController {
* @return * @return
*/ */
@Mapping("com.awspaas.user.apps.coe.pal.output.zd_systemManualTextExport") @Mapping("com.awspaas.user.apps.coe.pal.output.zd_systemManualTextExport")
public String systemManualTextExport(UserContext me, String id, String teamId, String wsid) { public String systemManualTextExport(UserContext me) {
ResponseObject ro = null; ResponseObject ro = null;
try { ro = ResponseObject.newOkResponse();
ro = ResponseObject.newOkResponse(); InstitutionalTextWeb institutionalTextWeb = new InstitutionalTextWeb(me);
InstitutionalTextWeb institutionalTextWeb = new InstitutionalTextWeb(me); String result = institutionalTextWeb.systemManualTextExport();
institutionalTextWeb.systemManualTextExport();
} catch (Exception e) { ro.put("result", result);
ro = ResponseObject.newErrResponse(); return ro.toString();
e.printStackTrace(); }
}
/**
* 制度手册正文导出
*
* @param me
* @param teamId
* @param wsid
* @return
*/
@Mapping("com.awspaas.user.apps.coe.pal.output.zd_systemManualTextExportoOnce")
public String systemManualTextExportoOnce(UserContext me, String targetFileId) {
ResponseObject ro = null;
ro = ResponseObject.newOkResponse();
InstitutionalTextWeb institutionalTextWeb = new InstitutionalTextWeb(me);
String result = institutionalTextWeb.systemManualTextExportoOnce(targetFileId);
ro.put("result", result);
return ro.toString(); return ro.toString();
} }

View File

@ -165,7 +165,7 @@ public class Report1Gener {
} }
JSONObject dataMap = getData2(repositoryId, wizardJsonData, docPath, fileName); JSONObject dataMap = getData2(repositoryId, wizardJsonData, docPath, fileName);
if (dataMap != null) { if (dataMap != null) {
OutputWordUtil.createDoc2(dataMap, tempPath, tempName, docName); OutputWordUtil.createZdDoc2(dataMap, tempPath, tempName, docName, wizardJsonData, repositoryId, docPath);
} }
} }
} }

File diff suppressed because it is too large Load Diff