From cfd0903dc0cfc7ffd39c2caa101f31a50441d39c Mon Sep 17 00:00:00 2001
From: 6c <420680616@qq.com>
Date: 星期五, 31 十月 2025 17:29:59 +0800
Subject: [PATCH] 已送审保养打印; 列表批量打印

---
 src/main/java/com/product/print/util/DynamicTableRenderPolicy.java |  339 ++++++++++++++++++++++++++++---------------------------
 1 files changed, 173 insertions(+), 166 deletions(-)

diff --git a/src/main/java/com/product/print/util/DynamicTableRenderPolicy.java b/src/main/java/com/product/print/util/DynamicTableRenderPolicy.java
index b7f20e3..0b1d9c1 100644
--- a/src/main/java/com/product/print/util/DynamicTableRenderPolicy.java
+++ b/src/main/java/com/product/print/util/DynamicTableRenderPolicy.java
@@ -2,19 +2,22 @@
 
 import com.deepoove.poi.exception.RenderException;
 import com.deepoove.poi.render.RenderContext;
+import com.deepoove.poi.template.ElementTemplate;
+import com.deepoove.poi.template.MetaTemplate;
 import com.deepoove.poi.template.run.RunTemplate;
 import com.deepoove.poi.util.TableTools;
+import com.google.common.collect.Maps;
 import com.product.common.lang.StringUtils;
 import com.product.core.exception.BaseException;
 import com.product.print.config.CmnCode;
 import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
+import org.apache.poi.util.Units;
 import org.apache.poi.xwpf.usermodel.*;
-import org.openxmlformats.schemas.wordprocessingml.x2006.main.STVerticalAlignRun;
 
 import java.io.ByteArrayInputStream;
 import java.io.IOException;
 import java.io.InputStream;
-import java.util.ArrayList;
+import java.util.Base64;
 import java.util.List;
 import java.util.Map;
 import java.util.regex.Matcher;
@@ -29,14 +32,14 @@
 
 	private String replaceKey;
 
-	private final String indexKey = "~index~";
+	private final String indexKey = "~i~";
 
 	public DynamicTableRenderPolicy(String replaceKey) {
 		this.replaceKey = replaceKey;
-
 	}
 
-	private XWPFRun run;
+	private List<MetaTemplate> metaTemplateList;
+
 
 	@Override
 	public void doRender(RenderContext<Object> context) throws Exception {
@@ -49,182 +52,186 @@
 			}
 			XWPFTableCell cell = (XWPFTableCell) ((XWPFParagraph) run.getParent()).getBody();
 			XWPFTable table = cell.getTableRow().getTable();
+			this.metaTemplateList = context.getTemplate().getElementTemplates();
+			ElementTemplate eleTemplate = context.getEleTemplate();
+			int index = metaTemplateList.indexOf(eleTemplate);
+			this.metaTemplateList = metaTemplateList.subList(index + 1, metaTemplateList.size());
 			render(table, context.getData());
 		} catch (Exception e) {
+			e.printStackTrace();
 			throw new RenderException("Dynamic render table error:" + e.getMessage(), e);
 		}
 	}
 
 	@Override
 	public void render(XWPFTable xwpfTable, Object data) throws Exception {
-		if (xwpfTable == null) {
-			return;
-		}
-		List<Map<String, Object>> subTableData = (List<Map<String, Object>>) data;
-		List<XWPFTableRow> rows = xwpfTable.getRows();
-		//璇诲彇rows涓殑鍐呭
-		String tableExpression = "{{" + this.replaceKey + "}}";
-		//鑾峰彇琛ㄦ牸璧峰琛屽拰缁撴潫琛�
-		int startRowIndex = -1;
-		rows:
-		for (int i = 0; i < rows.size(); i++) {
-			XWPFTableRow row = rows.get(i);
-			for (int j = 0; j < row.getTableCells().size(); j++) {
-				XWPFTableCell cell = row.getTableCells().get(j);
-				String text = cell.getText();
-				if (tableExpression.equals(text)) {
-					startRowIndex = i;
-					break rows;
-				}
+        try {
+            if (xwpfTable == null) {
+                return;
+            }
+            List<Map<String, Object>> subTableData = (List<Map<String, Object>>) data;
+            List<XWPFTableRow> rows = xwpfTable.getRows();
+            //璇诲彇rows涓殑鍐呭
+            String tableExpression = "{{" + this.replaceKey + "}}";
+            //鑾峰彇琛ㄦ牸璧峰琛屽拰缁撴潫琛�
+            int startRowIndex = -1;
+            outer: for (int i = 0; i < rows.size(); i++) {
+                XWPFTableRow row = rows.get(i);
+                for (int j = 0; j < row.getTableCells().size(); j++) {
+                    XWPFTableCell cell = row.getTableCells().get(j);
+                    String text = cell.getText();
+                    if (tableExpression.equals(text)) {
+                        startRowIndex = i;
+                        break outer;
+                    }
 
-			}
-		}
-		if (startRowIndex == -1) {
-			throw new BaseException(CmnCode.NOT_FIND_START_FLAG);
-		}
+                }
+            }
+            if (startRowIndex == -1) {
+                throw new BaseException(CmnCode.NOT_FIND_START_FLAG);
+            }
 
-		//鍦ㄨ〃鏍间腑鏌ユ壘瀛愯〃瀛楁浠{$寮�澶磢}浠}缁撳熬鐨勫唴瀹�
-		String regex = "\\{\\{\\$[a-zA-Z0-9_]+\\}\\}";
-		Pattern pattern = Pattern.compile(regex);
-		//瀛楁鎵�鍦ㄨ
-		XWPFTableRow fieldRow = null;
-		for (int i = startRowIndex; i < rows.size(); i++) {
-			XWPFTableRow row = rows.get(i);
-			for (int j = 0; j < row.getTableCells().size(); j++) {
-				XWPFTableCell cell = row.getTableCells().get(j);
-				String text = cell.getText();
-				Matcher matcher = pattern.matcher(text);
-				if (matcher.find()) {
-					fieldRow = row;
-					i = rows.size();
-					break;
-				}
-			}
-		}
-		if (fieldRow == null) {
-			throw new BaseException(CmnCode.NOT_FIND_CHILD_TABLE_FIELD);
-		}
+            //鍦ㄨ〃鏍间腑鏌ユ壘瀛愯〃瀛楁浠{$寮�澶磢}浠}缁撳熬鐨勫唴瀹�
+            String regex = "\\{\\{\\$[a-zA-Z0-9_]+\\}\\}";
+            Pattern pattern = Pattern.compile(regex);
+            //瀛楁鎵�鍦ㄨ
+            XWPFTableRow fieldRow = null;
+            for (int i = startRowIndex; i < rows.size(); i++) {
+                XWPFTableRow row = rows.get(i);
+                for (int j = 0; j < row.getTableCells().size(); j++) {
+                    XWPFTableCell cell = row.getTableCells().get(j);
+                    String text = cell.getText();
+                    Matcher matcher = pattern.matcher(text);
+                    if (matcher.find()) {
+                        fieldRow = row;
+                        i = rows.size();
+                        break;
+                    }
+                }
+            }
+            if (fieldRow == null) {
+                throw new BaseException(CmnCode.NOT_FIND_CHILD_TABLE_FIELD);
+            }
 
-		//璇诲彇鏈�鍚庤姣忎釜鍗曞厓鏍肩殑鍊硷紝璋冪敤getReplaceKey鏂规硶鑾峰彇琛ㄨ揪寮忎腑鐨勫��
-		String[] fieldNames = new String[fieldRow.getTableCells().size()];
-		for (int i = 0; i < fieldRow.getTableCells().size(); i++) {
-			XWPFTableCell cell = fieldRow.getTableCells().get(i);
-			String text = cell.getText();
-			String replaceKey = getReplaceKey(text);
-			//鑾峰彇琛ㄨ揪寮忎腑鐨勫��
-			if (StringUtils.isEmpty(replaceKey)) {
-				//璁剧疆鍗曞厓鏍间负绌哄��
-				replaceKey = "";
-			}
-			fieldNames[i] = replaceKey;
-		}
-		//鑾峰彇fieldRow鎵�鍦ㄧ殑涓嬫爣
-		int fieldRowIndex = xwpfTable.getRows().indexOf(fieldRow);
+            //璇诲彇鏈�鍚庤姣忎釜鍗曞厓鏍肩殑鍊硷紝璋冪敤getReplaceKey鏂规硶鑾峰彇琛ㄨ揪寮忎腑鐨勫��
+            String[] fieldNames = new String[fieldRow.getTableCells().size()];
+            for (int i = 0; i < fieldRow.getTableCells().size(); i++) {
+                XWPFTableCell cell = fieldRow.getTableCells().get(i);
+                String text = cell.getText();
+                String replaceKey = getReplaceKey(text);
+                //鑾峰彇琛ㄨ揪寮忎腑鐨勫��
+                if (StringUtils.isEmpty(replaceKey)) {
+                    //璁剧疆鍗曞厓鏍间负绌哄��
+                    replaceKey = "";
+                }
+                fieldNames[i] = replaceKey;
+            }
 
-		for (int i = 0; i < subTableData.size(); i++) {
-			Map<String, Object> map = subTableData.get(i);
-			//鍒涘缓涓�琛屽湪fieldRowIndex涓嬮潰
-			XWPFTableRow row = xwpfTable.insertNewTableRow(fieldRowIndex + 1 + i);
-			copyTableRow(row, fieldRow);
-			//璁剧疆row鐨勫睘鎬т笌fieldRow涓�鑷�
-			row.setHeight(fieldRow.getHeight());
-			//閬嶅巻瀛楁姣忎釜瀛楁鍒涘缓涓�涓崟鍏冩牸
-			for (int j = 0; j < fieldNames.length; j++) {
-				//褰撳墠鍗曞厓鏍�
-				XWPFTableCell cell;
-				//鍒ゆ柇row涓j涓崟鍏冩牸鏄惁瀛樺湪
-				if (row.getTableCells().size() > j) {
-					cell = row.getCell(j);
-				} else {
-					cell = row.createCell();
-				}
-				//璁剧疆鍗曞厓鏍肩殑鍊间粠map涓彇鍑�
-				//鍒ゆ柇鏄惁鏄簭鍙峰垪
-				if (indexKey.equals(fieldNames[j])) {
-					cell.setText(String.valueOf(i + 1));
-					continue;
-				}
-				Object value = map.get(fieldNames[j]);
-				if (value == null) {
-					value = "";
-				}
-				String text = cell.getText();
-				//鍒犻櫎鍗曞厓鏍间腑鐨勬棫鍐呭
-				if (!StringUtils.isEmpty(text)) {
-					List<XWPFParagraph> paragraphs = cell.getParagraphs();
-					if(paragraphs.size()>1){
-						cell.removeParagraph(1);
-					}
-					List<XWPFRun> runs = paragraphs.get(0).getRuns();
-					//娓呯┖鏂囧瓧
-					for (int k = 0; k < runs.size(); k++) {
-						runs.get(k).setText("", 0);
-					}
-				}
-				cell.setText(value.toString());
+            if (subTableData != null && subTableData.size() > 0) {
+                int rowCount;
+                for (int i = 0, count = 0; i < subTableData.size(); i += rowCount, count++) {
+                    rowCount = 1;
+                    Map<String, Object> map = subTableData.get(i);
+                    XWPFTableRow row;
+                    if (i == 0) {
+                        row = fieldRow;
+                    } else {
+                        int fieldRowIndex = xwpfTable.getRows().indexOf(fieldRow);
+                        //鍒涘缓涓�琛屽湪fieldRowIndex涓嬮潰
+                        row = xwpfTable.insertNewTableRow(fieldRowIndex + count);
+                        PrintPoiUtil.copyTableRow(row, fieldRow);
+                    }
+                    //閬嶅巻瀛楁姣忎釜瀛楁鍒涘缓涓�涓崟鍏冩牸
+                    for (int j = 0; j < fieldNames.length; j++) {
+                        String fieldName = fieldNames[j];
+                        if (fieldName.contains(" ")) {
+                            int curIndex = Integer.parseInt(fieldName.substring(fieldName.indexOf(" ") + 1));
+                            if (curIndex > 1 && curIndex > rowCount) {
+                                map = i + 1 == subTableData.size() ? Maps.newHashMap() : subTableData.get(i + 1);
+                                rowCount = curIndex;
+                            }
+                            fieldName = fieldName.substring(0, fieldName.indexOf(" "));
+                        }
+                        //褰撳墠鍗曞厓鏍�
+                        XWPFTableCell cell = row.getCell(j);
+                        //娓呯┖鍗曞厓鏍煎唴瀹�
+                        XWPFParagraph xwpfParagraph = cell.addParagraph();
+                        int index = cell.getParagraphs().indexOf(xwpfParagraph);
+                        PrintPoiUtil.copyParagraph(xwpfParagraph, cell.getParagraphs().get(0));
+                        //璁剧疆娈佃惤鏂囧瓧瀵归綈鏂瑰紡
+                        xwpfParagraph.setAlignment(cell.getParagraphs().get(0).getAlignment());
+                        //鍒犻櫎鎵�鏈夌殑run
+                        for (int k = xwpfParagraph.getRuns().size() - 1; k >= 0; k--) {
+                            xwpfParagraph.removeRun(k);
+                        }
+                        XWPFRun xwpfRun = xwpfParagraph.createRun();
+                        PrintPoiUtil.copyRun(xwpfRun, cell.getParagraphs().get(0).getRuns().get(0));
+                        //鍒犻櫎cell涓殑娈佃惤浣嗘帓闄ゆ柊澧炵殑娈佃惤
+                        for (int k = cell.getParagraphs().size() - 1; k >= 0; k--) {
+                            if (k < index) {
+                                cell.removeParagraph(k);
+                            }
+                        }
+                        //鍒ゆ柇鏄惁鏄簭鍙峰垪
+                        if (indexKey.equals(fieldName)) {
+                            if (map.isEmpty()) {
+                                xwpfRun.setText("", 0);
+                            } else {
+                                xwpfRun.setText(String.valueOf(i + rowCount), 0);
+                            }
+                            continue;
+                        }
+                        Object value = map.get(fieldName);
+                        if (value == null) {
+                            value = "";
+                        }
+                        xwpfRun.setText(value.toString(), 0);
+                        if ("lx_flow_opinion".equals(this.replaceKey) && "opinion".equals(fieldName)) {
+                            if (!StringUtils.isEmpty(map.get("sign_attachment_uuid"))) {
+                                //鎰忚妗� 鎻掑叆绛惧悕鍥剧墖鍒板崟鍏冩牸鍙充笅瑙掍綅缃�
+                                xwpfParagraph = cell.addParagraph();
+                                xwpfParagraph.setAlignment(ParagraphAlignment.RIGHT);
+                                XWPFRun run = xwpfParagraph.createRun();
+                                String signAttachmentBase64 = map.get("sign_attachment_uuid").toString();
+                                //灏哹ase64杞崲瀛楄妭娴�
+                                byte[] bytes = Base64.getDecoder().decode(signAttachmentBase64.split(",")[1]);
+                                //灏嗗瓧鑺傛祦杞崲涓鸿緭鍏ユ祦
+                                InputStream inputStream = new ByteArrayInputStream(bytes);
+                                try {
+                                    //鎹㈣鎻掑叆鍥剧墖
+                                    run.addPicture(inputStream, XWPFDocument.PICTURE_TYPE_PNG, "sign.png", Units.toEMU(50), Units.toEMU(20));
+                                    run.addBreak();
+                                    run.setText("" + map.get("deal_time").toString().substring(0, 16));
+                                    inputStream.close();
+                                } catch (InvalidFormatException e) {
+                                    e.printStackTrace();
+                                } catch (IOException e) {
+                                    e.printStackTrace();
+                                }
+                            } else {
+                                xwpfParagraph = cell.addParagraph();
+                                xwpfParagraph.setAlignment(ParagraphAlignment.RIGHT);
+                                XWPFRun run = xwpfParagraph.createRun();
+                                run.setText((String) map.get("actual_person"));
+                                run.addBreak();
+                                run.setText(map.get("deal_time").toString().substring(0, 16));
+                            }
 
-			}
-		}
-		//鍒犻櫎璧峰琛�
-		xwpfTable.removeRow(startRowIndex);
-		//鍒犻櫎fieldRow
-		xwpfTable.removeRow(fieldRowIndex - 1);
+                        }
 
-//		//璇诲彇瀹屾瘯鍚庡垹闄ゆ渶鍚庝竴琛�
-//		xwpfTable.removeRow(rows.size() - 1);
-		//鑾峰彇鎵�鏈夌殑琛屽垽鏂崟鍏冩牸鏄惁鏈夊�兼病鏈夊氨鍒犻櫎璇ヨ
-//		List<XWPFTableRow> tableRows = xwpfTable.getRows();
-//		List<XWPFTableRow> deleteRows = new ArrayList<>();
-//		for (int i = 0; i < tableRows.size(); i++) {
-//			XWPFTableRow row = tableRows.get(i);
-//			boolean flag = false;
-//			for (int j = 0; j < row.getTableCells().size(); j++) {
-//				XWPFTableCell cell = row.getTableCells().get(j);
-//				if (StringUtils.isNotEmpty(cell.getText())) {
-//					flag = true;
-//					break;
-//				}
-//			}
-//			if (!flag) {
-//				deleteRows.add(row);
-//			}
-//		}
-//		//閬嶅巻瑕佸垹闄ょ殑琛岃幏鍙栨墍鍦ㄧ殑涓嬫爣杩涜鍒犻櫎
-//		for (int i = 0; i < deleteRows.size(); i++) {
-//			XWPFTableRow row = deleteRows.get(i);
-//			int index = xwpfTable.getRows().indexOf(row);
-//			xwpfTable.removeRow(index);
-//		}
-//		//閬嶅巻鏁版嵁闆嗗悎锛屾瘡涓猰ap瀵瑰簲涓�琛屾暟鎹�
-//		for (int i = 0; i < subTableData.size(); i++) {
-//			Map<String, Object> map = subTableData.get(i);
-//			//鍒涘缓涓�琛�
-//			XWPFTableRow row = xwpfTable.createRow();
-//			//閬嶅巻瀛楁姣忎釜瀛楁鍒涘缓涓�涓崟鍏冩牸
-//			for (int j = 0; j < fieldNames.length; j++) {
-//				//褰撳墠鍗曞厓鏍�
-//				XWPFTableCell cell;
-//				//鍒ゆ柇row涓j涓崟鍏冩牸鏄惁瀛樺湪
-//				if (row.getTableCells().size() > j) {
-//					cell = row.getTableCells().get(j);
-//				} else {
-//					cell = row.createCell();
-//				}
-//				//璁剧疆鍗曞厓鏍肩殑鍊间粠map涓彇鍑�
-//				//鍒ゆ柇鏄惁鏄簭鍙峰垪
-//				if (indexKey.equals(fieldNames[j])) {
-//					cell.setText(String.valueOf(i + 1));
-//					continue;
-//				}
-//				Object value = map.get(fieldNames[j]);
-//				if (value == null) {
-//					value = "";
-//				}
-//				//璁剧疆鍗曞厓鏍肩殑鍊�
-//				cell.setText(value.toString());
-//			}
-//		}
+                    }
+                }
+            } else {
 
+//			鍒犻櫎fieldRow
+                int index = xwpfTable.getRows().indexOf(fieldRow);
+                xwpfTable.removeRow(index);
+            }
+            //鍒犻櫎璧峰琛�
+            xwpfTable.removeRow(startRowIndex);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
 	}
 
 	/**

--
Gitblit v1.9.2