Merge branch 'SCADA系统测试'

This commit is contained in:
geht
2026-05-18 12:20:02 +08:00
20 changed files with 1744 additions and 126 deletions

View File

@@ -670,7 +670,7 @@ public class MesXslDesktopAnonController {
if (tpl == null) return Result.error("绑定的打印模板不存在"); if (tpl == null) return Result.error("绑定的打印模板不存在");
ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson()); ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = objectMapper.valueToTree(card); JsonNode bizRoot = objectMapper.valueToTree(card);
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping); ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tpl.getTemplateJson());
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson()); PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson());
Map<String, Object> out = new HashMap<>(8); Map<String, Object> out = new HashMap<>(8);
out.put("cardId", card.getId()); out.put("cardId", card.getId());
@@ -697,7 +697,7 @@ public class MesXslDesktopAnonController {
if (tpl == null) return Result.error("绑定的打印模板不存在"); if (tpl == null) return Result.error("绑定的打印模板不存在");
ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson()); ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = objectMapper.valueToTree(entry); JsonNode bizRoot = objectMapper.valueToTree(entry);
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping); ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tpl.getTemplateJson());
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson()); PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson());
Map<String, Object> out = new HashMap<>(8); Map<String, Object> out = new HashMap<>(8);
out.put("entryId", entry.getId()); out.put("entryId", entry.getId());

View File

@@ -228,7 +228,7 @@ public class MesXslRawMaterialCardController extends JeecgController<MesXslRawMa
ArrayNode mapping = ArrayNode mapping =
PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson()); PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = objectMapper.valueToTree(card); JsonNode bizRoot = objectMapper.valueToTree(card);
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping); ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tpl.getTemplateJson());
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson()); PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson());
Map<String, Object> out = new HashMap<>(8); Map<String, Object> out = new HashMap<>(8);
out.put("cardId", card.getId()); out.put("cardId", card.getId());

View File

@@ -218,7 +218,7 @@ public class MesXslRawMaterialEntryController extends JeecgController<MesXslRawM
} }
ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson()); ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = objectMapper.valueToTree(entry); JsonNode bizRoot = objectMapper.valueToTree(entry);
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping); ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tpl.getTemplateJson());
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson()); PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson());
Map<String, Object> out = new HashMap<>(8); Map<String, Object> out = new HashMap<>(8);
out.put("entryId", entry.getId()); out.put("entryId", entry.getId());

View File

@@ -0,0 +1,15 @@
package org.jeecg.modules.mes.material.constant;
/**
* 原材料检验标准等 MES 物料模块的打印业务编码:与「业务打印绑定」中 biz_code、print_biz_perm_entity.perm_id 一致。
*/
public final class MesMaterialPrintConstants {
/** 原材料检验标准列表页菜单sys_permission.id见 Flyway V3.9.2_62 */
public static final String RAW_MATERIAL_INSPECT_STD_MENU_PERM_ID = "1900000000000000730";
/** 历史或手工绑定时可能使用的语义型 biz_code服务端 prepareNativePrint 会作为次选查询) */
public static final String RAW_MATERIAL_INSPECT_STD_SEMANTIC_BIZ_CODE = "MES_RAW_MATERIAL_INSPECT_STD";
private MesMaterialPrintConstants() {}
}

View File

@@ -3,22 +3,40 @@ package org.jeecg.modules.mes.material.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpServletResponse;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.shiro.authz.annotation.Logical;
import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog; import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController; import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.query.QueryGenerator; import org.jeecg.common.system.query.QueryGenerator;
import org.jeecg.modules.mes.material.constant.MesMaterialPrintConstants;
import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStd; import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStd;
import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStdLine; import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStdLine;
import org.jeecg.modules.mes.material.service.IMesRawMaterialInspectStdService; import org.jeecg.modules.mes.material.service.IMesRawMaterialInspectStdService;
import org.jeecg.modules.mes.material.vo.MesRawMaterialInspectStdPage; import org.jeecg.modules.mes.material.vo.MesRawMaterialInspectStdPage;
import org.jeecg.modules.print.entity.PrintBizPermEntity;
import org.jeecg.modules.print.entity.PrintBizTemplateBind;
import org.jeecg.modules.print.entity.PrintTemplate;
import org.jeecg.modules.print.service.IPrintBizPermEntityService;
import org.jeecg.modules.print.service.IPrintBizTemplateBindService;
import org.jeecg.modules.print.service.IPrintTemplateService;
import org.jeecg.modules.print.support.PrintServerEnvironmentService;
import org.jeecg.modules.print.support.PrintServerPdfJobService;
import org.jeecg.modules.print.util.PrintBizDataMappingUtil;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@@ -31,6 +49,12 @@ import org.springframework.web.servlet.ModelAndView;
public class MesRawMaterialInspectStdController extends JeecgController<MesRawMaterialInspectStd, IMesRawMaterialInspectStdService> { public class MesRawMaterialInspectStdController extends JeecgController<MesRawMaterialInspectStd, IMesRawMaterialInspectStdService> {
@Autowired private IMesRawMaterialInspectStdService mesRawMaterialInspectStdService; @Autowired private IMesRawMaterialInspectStdService mesRawMaterialInspectStdService;
@Autowired private PrintServerEnvironmentService printServerEnvironmentService;
@Autowired private PrintServerPdfJobService printServerPdfJobService;
@Autowired private IPrintBizTemplateBindService printBizTemplateBindService;
@Autowired private IPrintBizPermEntityService printBizPermEntityService;
@Autowired private IPrintTemplateService printTemplateService;
@Autowired private ObjectMapper objectMapper;
@GetMapping("/list") @GetMapping("/list")
public Result<IPage<MesRawMaterialInspectStd>> queryPageList( public Result<IPage<MesRawMaterialInspectStd>> queryPageList(
@@ -114,6 +138,136 @@ public class MesRawMaterialInspectStdController extends JeecgController<MesRawMa
return Result.OK(flag == 1 ? "已启用" : "已停用"); return Result.OK(flag == 1 ? "已启用" : "已停用");
} }
/**
* 查询可用打印机(与原材料卡片 {@code MesXslRawMaterialCardController#queryPrinters} 一致)。
*/
@Operation(summary = "MES-原材料检验标准-查询可用打印机")
@GetMapping("/queryPrinters")
@RequiresPermissions(
value = {"mes:mes_raw_material_inspect_std:edit", "mes:mes_raw_material_inspect_std:exportXls"},
logical = Logical.OR)
public Result<Map<String, Object>> queryPrinters() {
return Result.OK(printServerEnvironmentService.buildPrinterQueryResult());
}
/**
* 根据业务打印绑定生成模板 JSON + 映射后的 printData供前端生成 PDF 后调用 printPdf与原材料卡片 prepareNativePrint 一致)。
*/
@Operation(summary = "MES-原材料检验标准-准备原生打印数据")
@GetMapping("/prepareNativePrint")
@RequiresPermissions("mes:mes_raw_material_inspect_std:edit")
public Result<Map<String, Object>> prepareNativePrint(@RequestParam(name = "id") String id) {
try {
MesRawMaterialInspectStd main = mesRawMaterialInspectStdService.getById(id);
if (main == null) {
return Result.error("未找到原材料检验标准");
}
PrintBizTemplateBind bind = resolveInspectStdPrintBind();
if (bind == null) {
return Result.error(
"请先在「业务打印绑定」中配置原材料检验标准与打印模板;业务编码需为当前列表菜单的权限 id或与 print_biz_perm_entity 中该业务实体一致");
}
PrintTemplate tpl = printTemplateService.getById(bind.getTemplateId());
if (tpl == null) {
return Result.error("绑定的打印模板不存在");
}
List<MesRawMaterialInspectStdLine> lines = mesRawMaterialInspectStdService.selectLinesByStdId(id);
MesRawMaterialInspectStdPage pageVo = new MesRawMaterialInspectStdPage();
BeanUtils.copyProperties(main, pageVo);
pageVo.setLineList(lines);
ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = objectMapper.valueToTree(pageVo);
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tpl.getTemplateJson());
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson());
Map<String, Object> out = new HashMap<>(8);
out.put("stdId", main.getId());
out.put("templateCode", bind.getTemplateCode());
out.put("templateJson", tpl.getTemplateJson());
out.put("paperWidthMm", tpl.getPaperWidthMm());
out.put("paperHeightMm", tpl.getPaperHeightMm());
out.put("paperOrientation", tpl.getPaperOrientation());
out.put("printData", objectMapper.convertValue(printData, Map.class));
return Result.OK(out);
} catch (Exception e) {
log.error("原材料检验标准准备打印数据失败 id={}", id, e);
return Result.error("准备打印数据失败: " + e.getMessage());
}
}
/**
* 将前端生成的 PDF Base64 提交到服务器打印机(与原材料卡片 printPdf 一致)。
*/
@AutoLog(value = "MES-原材料检验标准-PDF后端打印")
@Operation(summary = "MES-原材料检验标准-PDF后端打印")
@PostMapping("/printPdf")
@RequiresPermissions("mes:mes_raw_material_inspect_std:edit")
public Result<String> printPdf(@RequestBody Map<String, Object> body) {
String sid = String.valueOf(body.getOrDefault("id", "")).trim();
String printerName = String.valueOf(body.getOrDefault("printerName", "")).trim();
String pdfBase64 = String.valueOf(body.getOrDefault("pdfBase64", "")).trim();
String fileName = String.valueOf(body.getOrDefault("fileName", "")).trim();
if (StringUtils.isBlank(sid)) {
return Result.error("id 不能为空");
}
MesRawMaterialInspectStd std = mesRawMaterialInspectStdService.getById(sid);
if (std == null) {
return Result.error("未找到原材料检验标准");
}
String prefix =
StringUtils.isNotBlank(std.getStandardNo()) ? std.getStandardNo() : std.getId();
String fn =
StringUtils.isNotBlank(fileName) ? fileName : ("原材料检验标准-" + prefix + ".pdf");
return printServerPdfJobService.submitPdfBase64(
printerName, pdfBase64, fn, "RAW_INSPECT_STD_" + prefix);
}
private PrintBizTemplateBind resolveInspectStdPrintBind() {
PrintBizTemplateBind bind =
printBizTemplateBindService.getByBizCode(MesMaterialPrintConstants.RAW_MATERIAL_INSPECT_STD_MENU_PERM_ID);
if (bind != null) {
return bind;
}
bind =
printBizTemplateBindService.getByBizCode(MesMaterialPrintConstants.RAW_MATERIAL_INSPECT_STD_SEMANTIC_BIZ_CODE);
if (bind != null) {
return bind;
}
// 不同环境菜单 id 不一致:按 print_biz_perm_entity 中指向本实体的任意 perm_id 解析绑定
String entityFqn = MesRawMaterialInspectStd.class.getName();
List<PrintBizPermEntity> permRows =
printBizPermEntityService.lambdaQuery().eq(PrintBizPermEntity::getEntityClass, entityFqn).list();
for (PrintBizPermEntity row : permRows) {
if (StringUtils.isBlank(row.getPermId())) {
continue;
}
bind = printBizTemplateBindService.getByBizCode(row.getPermId());
if (bind != null) {
return bind;
}
}
// 最后兜底:业务名称与绑定页一致(避免 perm 映射表未同步时仍找不到)
List<PrintBizTemplateBind> byName =
printBizTemplateBindService
.lambdaQuery()
.eq(PrintBizTemplateBind::getBizName, "原材料检验标准")
.orderByDesc(PrintBizTemplateBind::getCreateTime)
.last("LIMIT 8")
.list();
if (byName.isEmpty()) {
return null;
}
if (byName.size() == 1) {
return byName.get(0);
}
for (PrintBizTemplateBind b : byName) {
PrintBizPermEntity pe = printBizPermEntityService.getByPermId(b.getBizCode());
if (pe != null && entityFqn.equals(StringUtils.trimToEmpty(pe.getEntityClass()))) {
return b;
}
}
return byName.get(0);
}
@RequiresPermissions("mes:mes_raw_material_inspect_std:exportXls") @RequiresPermissions("mes:mes_raw_material_inspect_std:exportXls")
@RequestMapping("/exportXls") @RequestMapping("/exportXls")
public ModelAndView exportXls(HttpServletRequest request, MesRawMaterialInspectStd model) { public ModelAndView exportXls(HttpServletRequest request, MesRawMaterialInspectStd model) {

View File

@@ -1,12 +1,14 @@
package org.jeecg.modules.mes.material.entity; package org.jeecg.modules.mes.material.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
import java.util.List;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors; import lombok.experimental.Accessors;
@@ -71,4 +73,9 @@ public class MesRawMaterialInspectStd implements Serializable {
private Date updateTime; private Date updateTime;
private Integer delFlag; private Integer delFlag;
/** 检验标准明细(子表 mes_raw_material_inspect_std_line通过 stdId 关联本表 id不参与主表入库映射 */
@TableField(exist = false)
@Schema(description = "MES原材料检验标准-检验项明细列表")
private List<MesRawMaterialInspectStdLine> lineList;
} }

View File

@@ -1,14 +1,10 @@
package org.jeecg.modules.mes.material.vo; package org.jeecg.modules.mes.material.vo;
import java.util.List;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStd; import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStd;
import org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStdLine;
/** 主子保存/编辑页 VO继承主表实体含 {@link MesRawMaterialInspectStd#lineList} 明细)。 */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
public class MesRawMaterialInspectStdPage extends MesRawMaterialInspectStd { public class MesRawMaterialInspectStdPage extends MesRawMaterialInspectStd {}
private List<MesRawMaterialInspectStdLine> lineList;
}

View File

@@ -38,6 +38,7 @@ import org.jeecg.modules.print.vo.PrintBizDetailSlotVO;
import org.jeecg.modules.print.vo.PrintBizFieldItemVO; import org.jeecg.modules.print.vo.PrintBizFieldItemVO;
import org.jeecg.modules.print.vo.PrintBizTypeVO; import org.jeecg.modules.print.vo.PrintBizTypeVO;
import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO; import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO;
import org.jeecg.modules.print.vo.PrintTemplateStructureVO;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.messaging.simp.SimpMessagingTemplate; import org.springframework.messaging.simp.SimpMessagingTemplate;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@@ -182,6 +183,23 @@ public class PrintBizTemplateBindController extends JeecgController<PrintBizTemp
return Result.OK(fields); return Result.OK(fields);
} }
@Operation(summary = "解析原生模板占位结构:主表参数 + 按明细表分组(供多标签映射)")
@GetMapping("/parseTemplateStructure")
@RequiresPermissions("print:bizBind:list")
public Result<PrintTemplateStructureVO> parseTemplateStructure(
@RequestParam(name = "templateId") String templateId) {
if (StringUtils.isBlank(templateId)) {
return Result.error("templateId 不能为空");
}
PrintTemplate tpl = printTemplateService.getById(templateId);
if (tpl == null) {
return Result.error("模板不存在");
}
PrintTemplateStructureVO structure =
PrintNativeTemplateFieldExtractor.extractStructure(tpl.getTemplateJson());
return Result.OK(structure);
}
@Operation(summary = "主实体上的明细槽位List&lt;明细实体&gt; / 明细数组 / 嵌套对象),用于先选明细再反射明细字段") @Operation(summary = "主实体上的明细槽位List&lt;明细实体&gt; / 明细数组 / 嵌套对象),用于先选明细再反射明细字段")
@GetMapping("/detailSlots") @GetMapping("/detailSlots")
@RequiresPermissions("print:bizBind:list") @RequiresPermissions("print:bizBind:list")
@@ -258,12 +276,15 @@ public class PrintBizTemplateBindController extends JeecgController<PrintBizTemp
return Result.error("未配置该业务的打印绑定"); return Result.error("未配置该业务的打印绑定");
} }
try { try {
PrintTemplate tpl = printTemplateService.getById(bind.getTemplateId());
ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson()); ArrayNode mapping = PrintBizDataMappingUtil.parseMappingArray(bind.getFieldMappingJson());
JsonNode bizRoot = PrintBizDataMappingUtil.parseBizJson(body.getBizDataJson()); JsonNode bizRoot = PrintBizDataMappingUtil.parseBizJson(body.getBizDataJson());
ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping); String tplJson = tpl != null ? tpl.getTemplateJson() : null;
PrintTemplate tpl = printTemplateService.getById(bind.getTemplateId()); ObjectNode printData = PrintBizDataMappingUtil.mapBizToPrintData(bizRoot, mapping, tplJson);
if (tpl != null && StringUtils.isNotBlank(tpl.getTemplateJson())) { if (tpl != null && StringUtils.isNotBlank(tpl.getTemplateJson())) {
PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson()); PrintBizDataMappingUtil.fillMissingDataBindingParamKeys(printData, tpl.getTemplateJson(), true);
PrintBizDataMappingUtil.fillPreviewDetailPlaceholderRowValues(
printData, bizRoot, mapping, tpl.getTemplateJson());
} }
Map<String, Object> res = new HashMap<>(4); Map<String, Object> res = new HashMap<>(4);
res.put("templateCode", bind.getTemplateCode()); res.put("templateCode", bind.getTemplateCode());

View File

@@ -3,19 +3,35 @@ package org.jeecg.modules.print.util;
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.ObjectNode; import com.fasterxml.jackson.databind.node.ObjectNode;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO; import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO;
/** 按映射规则把业务 JSON 转为模板打印数据(键为模板 bindField */ /**
* 按映射规则把业务 JSON 转为模板打印数据(键为模板 bindField。支持业务数组字段映射到模板明细表如 List2.Field1
*
* <p>模板 {@code dataBinding.detailTables} 中明细列统一为 {@code tableKey.fieldKey}(如 List1.Field1无双缀旧映射仍可借助
* {@link #resolveSyntheticDetailTemplateField} 参与列表展开。
*/
public final class PrintBizDataMappingUtil { public final class PrintBizDataMappingUtil {
private static final ObjectMapper MAPPER = new ObjectMapper(); private static final ObjectMapper MAPPER = new ObjectMapper();
private static final JsonNodeFactory NF = MAPPER.getNodeFactory();
private PrintBizDataMappingUtil() {} private PrintBizDataMappingUtil() {}
public static ObjectNode mapBizToPrintData(JsonNode bizRoot, ArrayNode mappingRules) { public static ObjectNode mapBizToPrintData(JsonNode bizRoot, ArrayNode mappingRules) {
return mapBizToPrintData(bizRoot, mappingRules, null);
}
/**
* @param templateJson 原生模板 JSON非空时可为无双缀明细列绑定补齐 tableKey生成正确的明细数组结构
*/
public static ObjectNode mapBizToPrintData(JsonNode bizRoot, ArrayNode mappingRules, String templateJson) {
ObjectNode printData = MAPPER.createObjectNode(); ObjectNode printData = MAPPER.createObjectNode();
if (bizRoot == null || mappingRules == null) { if (bizRoot == null || mappingRules == null) {
return printData; return printData;
@@ -26,21 +42,109 @@ public final class PrintBizDataMappingUtil {
} }
String templateField = text(rule, "templateField"); String templateField = text(rule, "templateField");
String bizField = text(rule, "bizField"); String bizField = text(rule, "bizField");
// 仅要求模板字段名;业务字段为空表示「不参与取数」,仍向 printData 写入空字符串,避免模板占位符缺键
if (StringUtils.isBlank(templateField)) { if (StringUtils.isBlank(templateField)) {
continue; continue;
} }
// 模板明细列多为「tableKey.columnKey」如 List2.Field1业务字段为「数组字段.列」(如 lineList.inspectItemId
if (qualifiesForListExpansion(bizRoot, templateField, bizField)) {
continue;
}
// 无双缀占位Field1+ 业务侧为明细数组:交由列表展开写入 printData.List1[],避免落在根上导致表格 source 读不到
if (shouldDeferShortDetailFieldForListExpansion(bizRoot, templateField, bizField, templateJson)) {
continue;
}
JsonNode val; JsonNode val;
if (StringUtils.isBlank(bizField)) { if (StringUtils.isBlank(bizField)) {
val = MAPPER.getNodeFactory().textNode(""); val = NF.textNode("");
} else { } else {
val = resolvePath(bizRoot, bizField); val = resolvePath(bizRoot, bizField);
} }
setPath(printData, templateField, val); setPath(printData, templateField, val);
} }
applyListExpandedMappings(bizRoot, mappingRules, printData, templateJson);
return printData; return printData;
} }
/**
* 在 {@code dataBinding.detailTables} 中按声明顺序查找首个包含 {@code fieldKey} 的明细表,返回 {@code tableKey.fieldKey}。
*
* <p>与同模块抽取器中「明细列统一为 tableKey.fieldKey」一致仍兼容历史绑定里保存的短键。
*/
private static String resolveSyntheticDetailTemplateField(String templateJson, String shortFieldKey) {
if (StringUtils.isAnyBlank(templateJson, shortFieldKey)) {
return null;
}
try {
JsonNode root = MAPPER.readTree(templateJson);
JsonNode db = root.get("dataBinding");
if (db == null || !db.isObject()) {
return null;
}
JsonNode tables = db.get("detailTables");
if (tables == null || !tables.isArray()) {
return null;
}
for (JsonNode t : tables) {
if (t == null || !t.isObject()) {
continue;
}
String tableKey = text(t, "tableKey").trim();
if (StringUtils.isBlank(tableKey)) {
continue;
}
JsonNode fields = t.get("fields");
if (fields == null || !fields.isArray()) {
continue;
}
for (JsonNode f : fields) {
if (f != null && f.isObject() && shortFieldKey.equals(text(f, "key").trim())) {
return tableKey + "." + shortFieldKey;
}
}
}
return null;
} catch (Exception ignored) {
return null;
}
}
private static String resolveEffectiveTemplateFieldForListExpansion(
String templateJson, String templateFieldRaw, String bizField, JsonNode bizRoot) {
if (StringUtils.isBlank(templateFieldRaw)) {
return templateFieldRaw;
}
String tf = templateFieldRaw.trim();
if (splitFirstDotPair(tf) != null) {
return tf;
}
if (StringUtils.isBlank(templateJson) || StringUtils.isBlank(bizField)) {
return tf;
}
HeadTail biz = splitFirstDotPair(bizField.trim());
if (biz == null) {
return tf;
}
JsonNode arr = bizRoot != null ? bizRoot.get(biz.head()) : null;
if (arr == null || !arr.isArray()) {
return tf;
}
String synthetic = resolveSyntheticDetailTemplateField(templateJson, tf);
return StringUtils.isNotBlank(synthetic) ? synthetic : tf;
}
private static boolean shouldDeferShortDetailFieldForListExpansion(
JsonNode bizRoot, String templateField, String bizField, String templateJson) {
if (StringUtils.isBlank(templateJson) || StringUtils.isAnyBlank(templateField, bizField)) {
return false;
}
if (splitFirstDotPair(templateField) != null) {
return false;
}
String eff =
resolveEffectiveTemplateFieldForListExpansion(templateJson, templateField, bizField, bizRoot);
return qualifiesForListExpansion(bizRoot, eff, bizField);
}
/** /**
* 按模板中已声明的绑定路径({@code dataBinding.params}、画布/表格等元素的 {@code bindField},与 * 按模板中已声明的绑定路径({@code dataBinding.params}、画布/表格等元素的 {@code bindField},与
* {@link PrintNativeTemplateFieldExtractor} 一致),向 printData 补齐缺失路径(空字符串)。 * {@link PrintNativeTemplateFieldExtractor} 一致),向 printData 补齐缺失路径(空字符串)。
@@ -48,6 +152,15 @@ public final class PrintBizDataMappingUtil {
* <p>避免字段映射未包含某键时 API 缺键,桌面端渲染把「设计稿占位 text」当成数据显示。 * <p>避免字段映射未包含某键时 API 缺键,桌面端渲染把「设计稿占位 text」当成数据显示。
*/ */
public static ObjectNode fillMissingDataBindingParamKeys(ObjectNode printData, String templateJson) { public static ObjectNode fillMissingDataBindingParamKeys(ObjectNode printData, String templateJson) {
return fillMissingDataBindingParamKeys(printData, templateJson, false);
}
/**
* @param detailPreviewPlaceholderRow 为 true 时(如绑定预览):明细数据源无行数据时用模板列生成一行 {@code null} 占位,便于 JSON 里看出字段;
* 为 false 时(真实打印):保持 {@code []},避免出现空白假行。
*/
public static ObjectNode fillMissingDataBindingParamKeys(
ObjectNode printData, String templateJson, boolean detailPreviewPlaceholderRow) {
if (printData == null) { if (printData == null) {
printData = MAPPER.createObjectNode(); printData = MAPPER.createObjectNode();
} }
@@ -60,18 +173,260 @@ public final class PrintBizDataMappingUtil {
if (item == null || StringUtils.isBlank(item.getBindField())) { if (item == null || StringUtils.isBlank(item.getBindField())) {
continue; continue;
} }
// 明细表列占位:必须由「明细数组映射」展开;不可用空串占位,否则会生成 List2 对象为 {Field1:""}
// 前端 resolveTableRows 要求 List2 为数组(见原生 TableElement
String et = StringUtils.defaultString(item.getElementType()).toLowerCase();
if ("detailfield".equals(et) || "column".equals(et)) {
continue;
}
String bf = item.getBindField().trim(); String bf = item.getBindField().trim();
if (!hasPath(printData, bf)) { if (!hasPath(printData, bf)) {
setPath(printData, bf, MAPPER.getNodeFactory().textNode("")); setPath(printData, bf, NF.textNode(""));
} }
} }
} catch (Exception ignored) { } catch (Exception ignored) {
// 模板解析异常时不阻断打印 // 模板解析异常时不阻断打印
} }
try {
normalizeNativeDetailTableShapes(printData, templateJson, detailPreviewPlaceholderRow);
} catch (Exception ignored) {
// 明细形态规整失败不阻断
}
return printData; return printData;
} }
/** 判断 printData 上是否存在该点分路径(含嵌套对象) */ /**
* 按模板 {@code dataBinding.detailTables} 将各明细数据源键规范为<strong>数组</strong>,并去掉首张明细表误落在根上的短列键。
*
* <p>无业务数据时:真实打印侧保留空数组 {@code []};预览侧可选注入一行列占位(见 {@code detailPreviewPlaceholderRow})。
*/
private static void normalizeNativeDetailTableShapes(
ObjectNode printData, String templateJson, boolean detailPreviewPlaceholderRow) {
if (printData == null || StringUtils.isBlank(templateJson)) {
return;
}
try {
JsonNode root = MAPPER.readTree(templateJson);
JsonNode db = root.get("dataBinding");
if (db == null || !db.isObject()) {
return;
}
JsonNode tables = db.get("detailTables");
if (tables == null || !tables.isArray()) {
return;
}
boolean firstTable = true;
LinkedHashSet<String> firstTableColumnKeys = new LinkedHashSet<>();
for (JsonNode t : tables) {
if (t == null || !t.isObject()) {
continue;
}
String tk = text(t, "tableKey").trim();
if (StringUtils.isBlank(tk)) {
continue;
}
JsonNode fields = t.get("fields");
LinkedHashSet<String> columnKeys = new LinkedHashSet<>();
if (fields != null && fields.isArray()) {
for (JsonNode f : fields) {
if (f != null && f.isObject()) {
String k = text(f, "key").trim();
if (StringUtils.isNotBlank(k)) {
columnKeys.add(k);
}
}
}
}
if (firstTable) {
firstTableColumnKeys.addAll(columnKeys);
firstTable = false;
}
JsonNode cur = printData.get(tk);
if (cur == null || cur.isNull()) {
printData.set(tk, emptyDetailTableArray(columnKeys, detailPreviewPlaceholderRow));
} else if (cur.isObject()) {
ObjectNode obj = (ObjectNode) cur;
if (obj.isEmpty() || objectLeavesOnlyEmptyPlaceholders(obj)) {
printData.set(tk, emptyDetailTableArray(columnKeys, detailPreviewPlaceholderRow));
} else {
ArrayNode arr = MAPPER.createArrayNode();
arr.add(obj.deepCopy());
printData.set(tk, arr);
}
} else if (cur.isArray()) {
ArrayNode arr = (ArrayNode) cur;
if (arr.size() == 0) {
printData.set(tk, emptyDetailTableArray(columnKeys, detailPreviewPlaceholderRow));
}
} else {
printData.set(tk, emptyDetailTableArray(columnKeys, detailPreviewPlaceholderRow));
}
}
for (String fk : firstTableColumnKeys) {
printData.remove(fk);
}
} catch (Exception ignored) {
// 忽略
}
}
/**
* 无明细行时的数组形态:预览用模板声明的列键生成一行 {@code null},便于看清字段;真实打印返回 {@code []}。
*/
private static ArrayNode emptyDetailTableArray(
LinkedHashSet<String> columnKeys, boolean detailPreviewPlaceholderRow) {
ArrayNode arr = MAPPER.createArrayNode();
if (!detailPreviewPlaceholderRow || columnKeys == null || columnKeys.isEmpty()) {
return arr;
}
ObjectNode row = MAPPER.createObjectNode();
for (String k : columnKeys) {
row.putNull(k);
}
arr.add(row);
return arr;
}
/**
* 预览专用:占位明细行单元格为 {@code null}/空串时,按映射从业务 JSON 取数写入(明细数组取<strong>第一行</strong>)。
*/
public static void fillPreviewDetailPlaceholderRowValues(
ObjectNode printData, JsonNode bizRoot, ArrayNode mappingRules, String templateJson) {
if (printData == null || bizRoot == null || mappingRules == null || StringUtils.isBlank(templateJson)) {
return;
}
LinkedHashSet<String> declaredTables = loadDeclaredDetailTableKeys(templateJson);
if (declaredTables.isEmpty()) {
return;
}
try {
for (JsonNode rule : mappingRules) {
if (rule == null || !rule.isObject()) {
continue;
}
String tfRaw = text(rule, "templateField").trim();
String bfRaw = text(rule, "bizField").trim();
if (StringUtils.isBlank(tfRaw)) {
continue;
}
String tfEff = tfRaw;
if (splitFirstDotPair(tfEff) == null) {
String syn = resolveSyntheticDetailTemplateField(templateJson, tfEff);
if (StringUtils.isNotBlank(syn)) {
tfEff = syn;
}
}
HeadTail tpl = splitFirstDotPair(tfEff);
if (tpl == null || StringUtils.isAnyBlank(tpl.head(), tpl.tail())) {
continue;
}
if (!declaredTables.contains(tpl.head())) {
continue;
}
JsonNode arrNode = printData.get(tpl.head());
if (!(arrNode instanceof ArrayNode arr) || arr.size() != 1) {
continue;
}
JsonNode rowNode = arr.get(0);
if (!(rowNode instanceof ObjectNode row)) {
continue;
}
String col = tpl.tail();
if (!row.has(col)) {
continue;
}
if (!cellNeedsPreviewFill(row.get(col))) {
continue;
}
JsonNode val = resolveBizFieldPreviewCell(bizRoot, bfRaw);
putLeaf(row, col, val);
}
} catch (Exception ignored) {
// 预览填充失败不阻断
}
}
private static LinkedHashSet<String> loadDeclaredDetailTableKeys(String templateJson) {
LinkedHashSet<String> out = new LinkedHashSet<>();
try {
JsonNode root = MAPPER.readTree(templateJson);
JsonNode db = root.get("dataBinding");
if (db == null || !db.isObject()) {
return out;
}
JsonNode tables = db.get("detailTables");
if (tables == null || !tables.isArray()) {
return out;
}
for (JsonNode t : tables) {
if (t != null && t.isObject()) {
String tk = text(t, "tableKey").trim();
if (StringUtils.isNotBlank(tk)) {
out.add(tk);
}
}
}
} catch (Exception ignored) {
// 忽略
}
return out;
}
private static boolean cellNeedsPreviewFill(JsonNode cur) {
if (cur == null || cur.isNull()) {
return true;
}
return cur.isTextual() && cur.asText("").isEmpty();
}
private static JsonNode resolveBizFieldPreviewCell(JsonNode bizRoot, String bizField) {
if (bizRoot == null || StringUtils.isBlank(bizField)) {
return mappingValueOrEmptyText(null);
}
String bf = bizField.trim();
HeadTail biz = splitFirstDotPair(bf);
if (biz != null) {
JsonNode arr = bizRoot.get(biz.head());
if (arr != null && arr.isArray() && arr.size() > 0) {
JsonNode row = arr.get(0);
if (row != null && row.isObject()) {
JsonNode v = resolvePath(row, biz.tail());
return mappingValueOrEmptyText(v);
}
}
}
JsonNode v = resolvePath(bizRoot, bf);
return mappingValueOrEmptyText(v);
}
/** 对象仅含空占位null / 空串),视为无明细行 */
private static boolean objectLeavesOnlyEmptyPlaceholders(ObjectNode obj) {
if (obj == null || obj.isEmpty()) {
return true;
}
Iterator<JsonNode> it = obj.elements();
while (it.hasNext()) {
JsonNode v = it.next();
if (v == null || v.isNull()) {
continue;
}
if (v.isTextual() && v.asText("").isEmpty()) {
continue;
}
if (v.isObject()) {
if (!objectLeavesOnlyEmptyPlaceholders((ObjectNode) v)) {
return false;
}
continue;
}
return false;
}
return true;
}
private static boolean hasPath(ObjectNode root, String path) { private static boolean hasPath(ObjectNode root, String path) {
if (StringUtils.isBlank(path)) { if (StringUtils.isBlank(path)) {
return false; return false;
@@ -173,6 +528,105 @@ public final class PrintBizDataMappingUtil {
} }
} }
/** 第一段为 JSON 对象的键路径;余下段落(可含多级)相对该对象的 field 路径。 */
private record HeadTail(String head, String tail) {}
private static HeadTail splitFirstDotPair(String path) {
if (StringUtils.isBlank(path)) {
return null;
}
int dot = path.indexOf('.');
if (dot <= 0 || dot >= path.length() - 1) {
return null;
}
String h = path.substring(0, dot).trim();
String t = path.substring(dot + 1).trim();
if (h.isEmpty() || t.isEmpty()) {
return null;
}
return new HeadTail(h, t);
}
/**
* 业务字段首段指向 JSON 数组,且模板字段为「明细表绑定键.列」(如 {@code List2.Field1})时,
* 需要将每行业务对象展开为模板 {@code previewData[listKey][i].列},供原生表格 {@code source=listKey}。
*/
private static boolean qualifiesForListExpansion(JsonNode bizRoot, String templateField, String bizField) {
if (bizRoot == null || StringUtils.isBlank(templateField) || StringUtils.isBlank(bizField)) {
return false;
}
HeadTail tpl = splitFirstDotPair(templateField);
HeadTail biz = splitFirstDotPair(bizField);
if (tpl == null || biz == null) {
return false;
}
JsonNode arr = bizRoot.get(biz.head());
return arr != null && arr.isArray();
}
/** 将「业务明细数组 → 模板明细键」的规则写入 {@code printData}。 */
private static void applyListExpandedMappings(
JsonNode bizRoot, ArrayNode mappingRules, ObjectNode printData, String templateJson) {
if (bizRoot == null || mappingRules == null || printData == null) {
return;
}
for (JsonNode rule : mappingRules) {
if (rule == null || !rule.isObject()) {
continue;
}
String tfRaw = text(rule, "templateField").trim();
String bf = text(rule, "bizField").trim();
String tfEff = resolveEffectiveTemplateFieldForListExpansion(templateJson, tfRaw, bf, bizRoot);
if (!qualifiesForListExpansion(bizRoot, tfEff, bf)) {
continue;
}
HeadTail tpl = splitFirstDotPair(tfEff);
HeadTail biz = splitFirstDotPair(bf);
if (tpl == null || biz == null) {
continue;
}
JsonNode srcArrNode = bizRoot.get(biz.head());
if (srcArrNode == null || !srcArrNode.isArray()) {
continue;
}
ArrayNode tgtArr = ensureRowObjectArray(printData, tpl.head(), srcArrNode.size());
for (int i = 0; i < srcArrNode.size(); i++) {
JsonNode srcRow = srcArrNode.get(i);
JsonNode val =
srcRow != null && srcRow.isObject() ? resolvePath(srcRow, biz.tail()) : null;
ObjectNode tgtRow = (ObjectNode) tgtArr.get(i);
setPath(tgtRow, tpl.tail(), mappingValueOrEmptyText(val));
}
}
}
/** 缺省占位与主映射一致:空则用空字符串。 */
private static JsonNode mappingValueOrEmptyText(JsonNode val) {
if (val == null || val.isNull()) {
return NF.textNode("");
}
return val;
}
/** 保证 printData.{tableKey} 为数组,且长度为 rowCount元素为展开行 Json 对象)。 */
private static ArrayNode ensureRowObjectArray(ObjectNode printData, String tableKey, int rowCount) {
JsonNode existed = printData.get(tableKey);
ArrayNode arr;
if (existed instanceof ArrayNode a) {
arr = a;
} else {
if (existed != null) {
printData.remove(tableKey);
}
arr = MAPPER.createArrayNode();
printData.set(tableKey, arr);
}
while (arr.size() < rowCount) {
arr.add(MAPPER.createObjectNode());
}
return arr;
}
private static String text(JsonNode n, String key) { private static String text(JsonNode n, String key) {
if (n == null || !n.isObject()) { if (n == null || !n.isObject()) {
return ""; return "";

View File

@@ -3,11 +3,16 @@ package org.jeecg.modules.print.util;
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.jeecg.modules.print.vo.PrintTemplateDetailTableVO;
import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO; import org.jeecg.modules.print.vo.PrintTemplateFieldItemVO;
import org.jeecg.modules.print.vo.PrintTemplateStructureVO;
/** /**
* 从原生打印模板 JSON 中收集所有 bindField / 表格列 field供业务字段映射使用。 * 从原生打印模板 JSON 中收集所有 bindField / 表格列 field供业务字段映射使用。
@@ -40,9 +45,206 @@ public final class PrintNativeTemplateFieldExtractor {
} catch (Exception ignored) { } catch (Exception ignored) {
return list; return list;
} }
dedupeShortDetailFieldsWhenPrefixedExists(list);
return list; return list;
} }
/**
* dataBinding 已产出 {@code List1.Field1} 时,去掉画布扫描残留的同名短键 {@code Field1},避免映射表里重复一行。
*/
private static void dedupeShortDetailFieldsWhenPrefixedExists(List<PrintTemplateFieldItemVO> list) {
HashSet<String> columnSuffixes = new HashSet<>();
for (PrintTemplateFieldItemVO vo : list) {
String bf = vo.getBindField();
if (StringUtils.isBlank(bf)) {
continue;
}
int d = bf.indexOf('.');
if (d > 0 && d < bf.length() - 1) {
columnSuffixes.add(bf.substring(d + 1).trim());
}
}
list.removeIf(
vo -> {
String bf = vo.getBindField();
if (StringUtils.isBlank(bf) || bf.indexOf('.') >= 0) {
return false;
}
String et = StringUtils.defaultString(vo.getElementType()).toLowerCase();
if (!"detailfield".equals(et) && !"column".equals(et)) {
return false;
}
return columnSuffixes.contains(bf.trim());
});
}
/**
* 将 {@link #extract(String)} 的扁平结果拆成「主表参数 + 按明细表分组」,供前端多标签映射。
*
* <p>分组规则:带 {@code tableKey.} 前缀的占位归入对应明细表;无双缀短键按 dataBinding.detailTables 中字段声明归属;
* 若模板仅声明单个明细表则将短键归入该表;否则归入 {@code __general__}(其它画布/未归类占位)。
*/
public static PrintTemplateStructureVO extractStructure(String templateJson) {
PrintTemplateStructureVO vo = new PrintTemplateStructureVO();
if (StringUtils.isBlank(templateJson)) {
return vo;
}
JsonNode root;
try {
root = MAPPER.readTree(templateJson);
} catch (Exception e) {
return vo;
}
List<DetailTableMeta> metaTables = readDetailTableMeta(root);
LinkedHashSet<String> metaKeysOrdered = new LinkedHashSet<>();
Map<String, String> tableLabels = new LinkedHashMap<>();
Map<String, String> shortFieldOwner = new LinkedHashMap<>();
for (DetailTableMeta m : metaTables) {
if (StringUtils.isNotBlank(m.tableKey)) {
metaKeysOrdered.add(m.tableKey.trim());
if (StringUtils.isNotBlank(m.label)) {
tableLabels.put(m.tableKey.trim(), m.label.trim());
}
for (String fk : m.fieldKeys) {
if (StringUtils.isNotBlank(fk)) {
shortFieldOwner.putIfAbsent(fk.trim(), m.tableKey.trim());
}
}
}
}
List<PrintTemplateFieldItemVO> flat = extract(templateJson);
List<PrintTemplateFieldItemVO> params = new ArrayList<>();
List<PrintTemplateFieldItemVO> nonParams = new ArrayList<>();
for (PrintTemplateFieldItemVO f : flat) {
if (f == null) {
continue;
}
if ("param".equalsIgnoreCase(StringUtils.defaultString(f.getElementType()))) {
params.add(f);
} else {
nonParams.add(f);
}
}
vo.setParams(params);
LinkedHashSet<String> dottedPrefixes = new LinkedHashSet<>();
for (PrintTemplateFieldItemVO f : nonParams) {
String bf = StringUtils.trimToEmpty(f.getBindField());
int dot = bf.indexOf('.');
if (dot > 0) {
String prefix = bf.substring(0, dot).trim();
if (StringUtils.isNotBlank(prefix)) {
dottedPrefixes.add(prefix);
}
}
}
String soleMetaKey = metaKeysOrdered.size() == 1 ? metaKeysOrdered.iterator().next() : null;
Map<String, List<PrintTemplateFieldItemVO>> groups = new LinkedHashMap<>();
for (String k : metaKeysOrdered) {
groups.put(k, new ArrayList<>());
}
for (String p : dottedPrefixes) {
groups.computeIfAbsent(p, key -> new ArrayList<>());
}
final String generalKey = "__general__";
for (PrintTemplateFieldItemVO f : nonParams) {
String bf = StringUtils.trimToEmpty(f.getBindField());
String groupKey;
int dot = bf.indexOf('.');
if (dot > 0) {
groupKey = bf.substring(0, dot).trim();
} else if (soleMetaKey != null) {
groupKey = soleMetaKey;
} else if (StringUtils.isNotBlank(bf) && shortFieldOwner.containsKey(bf)) {
groupKey = shortFieldOwner.get(bf);
} else if (metaKeysOrdered.isEmpty() && dottedPrefixes.size() == 1) {
groupKey = dottedPrefixes.iterator().next();
} else {
groupKey = generalKey;
}
groups.computeIfAbsent(groupKey, key -> new ArrayList<>());
groups.get(groupKey).add(f);
}
List<PrintTemplateDetailTableVO> tables = new ArrayList<>();
Set<String> emitted = new LinkedHashSet<>();
for (DetailTableMeta m : metaTables) {
String tk = StringUtils.trimToEmpty(m.tableKey);
if (StringUtils.isBlank(tk)) {
continue;
}
emitted.add(tk);
List<PrintTemplateFieldItemVO> fields = groups.getOrDefault(tk, List.of());
tables.add(new PrintTemplateDetailTableVO(tk, tableLabels.get(tk), new ArrayList<>(fields)));
}
List<String> extras = new ArrayList<>();
for (String g : groups.keySet()) {
if (!emitted.contains(g) && !groups.get(g).isEmpty()) {
extras.add(g);
}
}
extras.sort(String::compareTo);
for (String g : extras) {
String lbl =
generalKey.equals(g) ? "其它(未归类画布/明细占位)" : null;
tables.add(new PrintTemplateDetailTableVO(g, lbl, new ArrayList<>(groups.get(g))));
}
vo.setDetailTables(tables);
return vo;
}
private static final class DetailTableMeta {
String tableKey = "";
String label = "";
List<String> fieldKeys = new ArrayList<>();
}
private static List<DetailTableMeta> readDetailTableMeta(JsonNode root) {
List<DetailTableMeta> out = new ArrayList<>();
if (root == null || !root.isObject()) {
return out;
}
JsonNode db = root.get("dataBinding");
if (db == null || !db.isObject()) {
return out;
}
JsonNode detailTables = db.get("detailTables");
if (detailTables == null || !detailTables.isArray()) {
return out;
}
for (JsonNode t : detailTables) {
if (t == null || !t.isObject()) {
continue;
}
DetailTableMeta m = new DetailTableMeta();
m.tableKey = text(t, "tableKey").trim();
m.label = firstNonBlank(text(t, "label"), text(t, "title")).trim();
JsonNode fields = t.get("fields");
if (fields != null && fields.isArray()) {
for (JsonNode f : fields) {
if (f != null && f.isObject()) {
String k = text(f, "key").trim();
if (StringUtils.isNotBlank(k)) {
m.fieldKeys.add(k);
}
}
}
}
if (StringUtils.isNotBlank(m.tableKey)) {
out.add(m);
}
}
return out;
}
/** 解析 schema.dataBindingparams参数键、detailTables明细字段 */ /** 解析 schema.dataBindingparams参数键、detailTables明细字段 */
private static void collectDataBinding(JsonNode root, Set<String> seen, List<PrintTemplateFieldItemVO> list) { private static void collectDataBinding(JsonNode root, Set<String> seen, List<PrintTemplateFieldItemVO> list) {
JsonNode db = root.get("dataBinding"); JsonNode db = root.get("dataBinding");
@@ -81,11 +283,8 @@ public final class PrintNativeTemplateFieldExtractor {
if (StringUtils.isBlank(fk)) { if (StringUtils.isBlank(fk)) {
continue; continue;
} }
// 与画布列 bindField 一致时多为短 key多表明细同字段再加 tableKey 前缀消歧 // 统一使用 tableKey.fieldKey与多表明细、列表展开、预览占位一致避免首张表仍用短键 Field1
String bindKey = fk; String bindKey = StringUtils.isNotBlank(tableKey) ? tableKey + "." + fk : fk;
if (seen.contains(bindKey) && StringUtils.isNotBlank(tableKey)) {
bindKey = tableKey + "." + fk;
}
if (seen.contains(bindKey) || !seen.add(bindKey)) { if (seen.contains(bindKey) || !seen.add(bindKey)) {
continue; continue;
} }

View File

@@ -0,0 +1,26 @@
package org.jeecg.modules.print.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/** 原生模板中单个明细表(对应 dataBinding.detailTables[].tableKey及其占位字段 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@Schema(description = "打印模板明细表分组")
public class PrintTemplateDetailTableVO implements Serializable {
@Schema(description = "明细表绑定键,与画布表格 source、占位前缀一致如 List1、List2")
private String tableKey;
@Schema(description = "设计器中配置的明细表显示名(可选)")
private String label;
@Schema(description = "该明细表下的模板占位字段bindField 已与全局解析逻辑一致)")
private List<PrintTemplateFieldItemVO> fields = new ArrayList<>();
}

View File

@@ -0,0 +1,21 @@
package org.jeecg.modules.print.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import lombok.Data;
/**
* 原生打印模板占位结构的结构化视图:主表参数 + 按明细表分组,供「业务打印绑定」弹窗标签页展示。
*/
@Data
@Schema(description = "打印模板占位结构(参数 + 多明细表)")
public class PrintTemplateStructureVO implements Serializable {
@Schema(description = "主表参数dataBinding.params")
private List<PrintTemplateFieldItemVO> params = new ArrayList<>();
@Schema(description = "明细表分组(顺序与模板 dataBinding.detailTables 一致,含画布推断的补充分组)")
private List<PrintTemplateDetailTableVO> detailTables = new ArrayList<>();
}

View File

@@ -0,0 +1,88 @@
-- 原材料检验标准菜单与前端 mes/rawmaterialinspectstd/index 一致+ 打印实体映射 + 可选纳入打印白名单
-- 若环境已存在同名菜单不同 id不会覆盖打印绑定时请使用本脚本中的列表页 id 作为 biz_code或沿用语义码 MES_RAW_MATERIAL_INSPECT_STD后端支持双查询
-- ===================== 1. 菜单权限父菜单MES XSL 1900000000000000300=====================
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000730', '1900000000000000300', '原材料检验标准', '/mes/rawMaterialInspectStd', 'mes/rawmaterialinspectstd/index', 1, NULL, NULL, 1, NULL, '0', 11.30, 0, 'ant-design:safety-outlined', 0, 1, 0, 0, 'MES原材料检验标准', 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000730');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000731', '1900000000000000730', '添加', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:add', '1', 1.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000731');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000732', '1900000000000000730', '编辑', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:edit', '1', 2.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000732');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000733', '1900000000000000730', '删除', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:delete', '1', 3.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000733');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000734', '1900000000000000730', '批量删除', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:deleteBatch', '1', 4.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000734');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000735', '1900000000000000730', '启用停用', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:enable', '1', 5.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000735');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000736', '1900000000000000730', '导出', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:exportXls', '1', 6.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000736');
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`)
SELECT '1900000000000000737', '1900000000000000730', '导入', NULL, NULL, 0, NULL, NULL, 2, 'mes:mes_raw_material_inspect_std:importExcel', '1', 7.00, 0, NULL, 1, 0, 0, 0, NULL, 'admin', NOW(), 'admin', NOW(), 0, 0, '1', 0
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM `sys_permission` WHERE `id` = '1900000000000000737');
-- ===================== 2. 角色菜单授权admin=====================
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000730', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000730');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000731', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000731');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000732', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000732');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000733', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000733');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000734', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000734');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000735', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000735');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000736', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000736');
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`)
SELECT REPLACE(UUID(), '-', ''), r.id, '1900000000000000737', NULL, NOW(), '127.0.0.1'
FROM `sys_role` r WHERE r.`role_code` = 'admin'
AND NOT EXISTS (SELECT 1 FROM `sys_role_permission` rp WHERE rp.`role_id` = r.id AND rp.`permission_id` = '1900000000000000737');
-- ===================== 3. 打印业务菜单关联实体含主子 lineList=====================
INSERT INTO `print_biz_perm_entity` (`perm_id`, `entity_class`)
SELECT '1900000000000000730', 'org.jeecg.modules.mes.material.entity.MesRawMaterialInspectStd'
FROM DUAL
WHERE NOT EXISTS (SELECT 1 FROM `print_biz_perm_entity` WHERE `perm_id` = '1900000000000000730');
-- ===================== 4. 纳入业务打印绑定可选范围若表存在且尚未包含=====================
INSERT INTO `print_biz_bind_perm_whitelist` (`perm_id`)
SELECT '1900000000000000730'
FROM DUAL
WHERE NOT EXISTS (SELECT 1 FROM `print_biz_bind_perm_whitelist` WHERE `perm_id` = '1900000000000000730');

View File

@@ -12,6 +12,9 @@ enum Api {
queryById = '/mes/material/rawMaterialInspectStd/queryById', queryById = '/mes/material/rawMaterialInspectStd/queryById',
queryLineList = '/mes/material/rawMaterialInspectStd/queryLineListByStdId', queryLineList = '/mes/material/rawMaterialInspectStd/queryLineListByStdId',
setEnable = '/mes/material/rawMaterialInspectStd/setEnable', setEnable = '/mes/material/rawMaterialInspectStd/setEnable',
queryPrinters = '/mes/material/rawMaterialInspectStd/queryPrinters',
prepareNativePrint = '/mes/material/rawMaterialInspectStd/prepareNativePrint',
printPdf = '/mes/material/rawMaterialInspectStd/printPdf',
} }
export const getExportUrl = Api.exportXls; export const getExportUrl = Api.exportXls;
@@ -37,3 +40,15 @@ export const batchDelete = (params, handleSuccess) => {
export const saveOrUpdate = (params, isUpdate) => defHttp.post({ url: isUpdate ? Api.edit : Api.save, params }); export const saveOrUpdate = (params, isUpdate) => defHttp.post({ url: isUpdate ? Api.edit : Api.save, params });
export const setEnable = (params) => defHttp.post({ url: Api.setEnable, params }); export const setEnable = (params) => defHttp.post({ url: Api.setEnable, params });
export const queryPrinters = () => defHttp.get({ url: Api.queryPrinters });
export const prepareNativePrint = (id: string) =>
defHttp.get({
url: Api.prepareNativePrint,
params: { id, _t: Date.now() },
});
/** id + 前端生成的 pdfBase64printerName 空则用默认队列(与原材料卡片一致) */
export const printPdf = (data: { id: string; printerName?: string; pdfBase64: string; fileName?: string }) =>
defHttp.post({ url: Api.printPdf, data, timeout: 3 * 60 * 1000 });

View File

@@ -2,32 +2,107 @@
<div> <div>
<BasicTable @register="registerTable" :rowSelection="rowSelection"> <BasicTable @register="registerTable" :rowSelection="rowSelection">
<template #tableTitle> <template #tableTitle>
<a-button type="primary" v-auth="'mes:mes_raw_material_inspect_std:add'" @click="handleAdd" preIcon="ant-design:plus-outlined" <a-button type="primary" v-auth="'mes:mes_raw_material_inspect_std:add'" @click="handleAdd" preIcon="ant-design:plus-outlined">
>新增</a-button 新增
</a-button>
<JDictSelectTag
v-model:value="printDotWsUrl"
dictCode="xslmes_print_dot_ws"
:showChooseOption="false"
style="width: 280px; margin-left: 8px"
placeholder="选择 PrintDot 地址"
@change="onPrintDotWsUrlChange"
/>
<a-button v-if="!printDotConnected" style="margin-left: 8px" @click="downloadPrintPlugin">下载打印插件</a-button>
<a-select
v-model:value="selectedPrinterName"
:options="printerOptions"
style="width: 220px; margin-left: 8px"
allow-clear
show-search
option-filter-prop="label"
:placeholder="printerSelectPlaceholder"
/>
<a-button style="margin-left: 8px" @click="() => refreshPrinterOptions(true)">刷新打印机</a-button>
<a-button
type="primary"
ghost
v-auth="'mes:mes_raw_material_inspect_std:edit'"
:loading="printLoading"
:disabled="selectedRowKeys.length === 0"
@click="handlePrintSelected"
> >
<Icon icon="ant-design:printer-outlined" />
打印选中
</a-button>
</template> </template>
<template #action="{ record }"> <template #action="{ record }">
<TableAction <TableAction
:actions="[ :actions="getTableAction(record)"
{ label: '编辑', onClick: handleEdit.bind(null, record), auth: 'mes:mes_raw_material_inspect_std:edit' },
]"
:dropDownActions="getDropDownAction(record)" :dropDownActions="getDropDownAction(record)"
/> />
</template> </template>
</BasicTable> </BasicTable>
<MesRawMaterialInspectStdModal @register="registerModal" @success="reload" /> <MesRawMaterialInspectStdModal @register="registerModal" @success="reload" />
<MesRawMaterialInspectStdPrintPreviewModal
v-model:open="printPreviewOpen"
:std-id="printPreviewStdId"
:standard-no="printPreviewStandardNo"
/>
</div> </div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { onMounted, ref, watch } from 'vue';
import { Icon } from '/@/components/Icon';
import { BasicTable, TableAction } from '/@/components/Table'; import { BasicTable, TableAction } from '/@/components/Table';
import { useModal } from '/@/components/Modal'; import { useModal } from '/@/components/Modal';
import { useListPage } from '/@/hooks/system/useListPage'; import { useListPage } from '/@/hooks/system/useListPage';
import { initDictOptions } from '/@/utils/dict';
import { JDictSelectTag } from '/@/components/Form';
import MesRawMaterialInspectStdModal from './modules/MesRawMaterialInspectStdModal.vue'; import MesRawMaterialInspectStdModal from './modules/MesRawMaterialInspectStdModal.vue';
import MesRawMaterialInspectStdPrintPreviewModal from './modules/MesRawMaterialInspectStdPrintPreviewModal.vue';
import { columns, searchFormSchema } from './MesRawMaterialInspectStd.data'; import { columns, searchFormSchema } from './MesRawMaterialInspectStd.data';
import { list, deleteOne, setEnable } from './MesRawMaterialInspectStd.api'; import { list, deleteOne, setEnable, prepareNativePrint } from './MesRawMaterialInspectStd.api';
import { useMessage } from '/@/hooks/web/useMessage'; import { useMessage } from '/@/hooks/web/useMessage';
import {
PRINT_TEMPLATE_SELECTED_PRINTER_KEY,
printNativeSchemaViaPrintDot,
} from '/@/views/print/template/utils/printNativeViaPrintDot';
import { normalizeImportedNativeSchema } from '/@/views/print/template/native/core/nativeSchemaNormalize';
import {
fetchPrintDotPrinters,
getPrintDotBridgeConfig,
setPrintDotBridgeConfig,
} from '/@/views/print/template/utils/printDotBridge';
const { createMessage } = useMessage(); const { createMessage } = useMessage();
const PRINT_DOT_WS_DICT = 'xslmes_print_dot_ws';
const printDotWsUrl = ref('');
const printDotConnected = ref(false);
function persistPrintDotConfig() {
setPrintDotBridgeConfig(String(printDotWsUrl.value || '').trim(), '');
void refreshPrinterOptions(false);
}
function onPrintDotWsUrlChange() {
printDotConnected.value = false;
persistPrintDotConfig();
}
function downloadPrintPlugin() {
const base = import.meta.env.BASE_URL || '/';
const normalizedBase = base.endsWith('/') ? base : `${base}/`;
const url = `${normalizedBase}print-plugin/XSL-PrintDot.exe`;
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'XSL-PrintDot.exe');
link.rel = 'noopener';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
const [registerModal, { openModal }] = useModal(); const [registerModal, { openModal }] = useModal();
const { tableContext } = useListPage({ const { tableContext } = useListPage({
tableProps: { tableProps: {
@@ -36,10 +111,208 @@
columns, columns,
canResize: true, canResize: true,
formConfig: { labelWidth: 100, schemas: searchFormSchema, autoSubmitOnEnter: true }, formConfig: { labelWidth: 100, schemas: searchFormSchema, autoSubmitOnEnter: true },
actionColumn: { width: 200 }, actionColumn: { width: 280, fixed: 'right' },
}, },
}); });
const [registerTable, { reload }, { rowSelection }] = tableContext; const [registerTable, { reload }, { rowSelection, selectedRowKeys, selectedRows }] = tableContext;
const printPreviewOpen = ref(false);
const printPreviewStdId = ref<string | null>(null);
const printPreviewStandardNo = ref<string | undefined>(undefined);
function handlePrintPreview(record: Recordable) {
printPreviewStdId.value = record.id as string;
printPreviewStandardNo.value = record.standardNo as string | undefined;
printPreviewOpen.value = true;
}
const printerOptions = ref<Array<{ label: string; value: string }>>([]);
const selectedPrinterName = ref<string>('__system_default__');
const printLoading = ref(false);
const PRINT_ROW_LOADING_KEY = 'mesRawMaterialInspectStd-print-row';
const PRINT_BATCH_LOADING_KEY = 'mesRawMaterialInspectStd-print-batch';
const printerSelectPlaceholder = '选择打印机PrintDot 桥接)';
watch(selectedPrinterName, (v) => {
if (v) {
localStorage.setItem(PRINT_TEMPLATE_SELECTED_PRINTER_KEY, v);
}
});
async function refreshPrinterOptions(showMessage = true) {
const optionMap = new Map<string, { label: string; value: string }>();
optionMap.set('__system_default__', { label: '系统默认打印机', value: '__system_default__' });
try {
const dotList = await fetchPrintDotPrinters();
printDotConnected.value = true;
dotList.forEach((p) => {
const name = String(p.name || '').trim();
if (!name) return;
const defMark = p.isDefault ? '(默认)' : '';
optionMap.set(name, { label: `${name}${defMark}`, value: name });
});
printerOptions.value = Array.from(optionMap.values());
if (showMessage) {
if (dotList.length) {
createMessage.success(`已从 PrintDot 桥接识别 ${dotList.length} 台打印机`);
} else {
createMessage.warning('PrintDot 已连接但未返回打印机列表');
}
}
} catch (e: unknown) {
printDotConnected.value = false;
printerOptions.value = Array.from(optionMap.values());
if (showMessage) {
createMessage.warning(`PrintDot${e instanceof Error ? e.message : String(e)}`);
}
}
}
async function executePrint(record: Recordable, options?: { silentSuccess?: boolean }) {
try {
const prep = (await prepareNativePrint(record.id as string)) as Record<string, unknown>;
const templateJsonRaw = prep.templateJson as string;
const printData = prep.printData as Record<string, unknown>;
const paperWidthMm = Number((prep as any).paperWidthMm ?? 0);
const paperHeightMm = Number((prep as any).paperHeightMm ?? 0);
const paperOrientation = String((prep as any).paperOrientation || '').toLowerCase();
if (!templateJsonRaw) {
throw new Error('模板 JSON 为空');
}
let raw: unknown;
try {
raw = typeof templateJsonRaw === 'string' ? JSON.parse(templateJsonRaw) : templateJsonRaw;
} catch {
throw new Error('模板 JSON 格式错误');
}
const schema = normalizeImportedNativeSchema(raw);
if (paperWidthMm > 0 && paperHeightMm > 0) {
const orient = paperOrientation === 'landscape' ? 'landscape' : paperOrientation === 'portrait' ? 'portrait' : '';
const normalized =
orient === 'landscape'
? {
width: Math.max(paperWidthMm, paperHeightMm),
height: Math.min(paperWidthMm, paperHeightMm),
}
: orient === 'portrait'
? {
width: Math.min(paperWidthMm, paperHeightMm),
height: Math.max(paperWidthMm, paperHeightMm),
}
: {
width: paperWidthMm,
height: paperHeightMm,
};
schema.page.width = normalized.width;
schema.page.height = normalized.height;
}
const no = String(record.standardNo || '').trim();
await printNativeSchemaViaPrintDot({
schema,
data: printData as Record<string, unknown>,
jobName: `原材料检验标准-${no || record.id}.pdf`,
printerSelection:
selectedPrinterName.value ||
localStorage.getItem(PRINT_TEMPLATE_SELECTED_PRINTER_KEY) ||
'__system_default__',
});
if (!options?.silentSuccess) {
createMessage.success('已通过 PrintDot 提交打印');
}
} catch (e: unknown) {
throw new Error(e instanceof Error ? e.message : String(e));
}
}
function handlePrintSelected() {
const rows = selectedRows.value || [];
if (!rows.length) {
createMessage.warning('请至少勾选一条记录后再点击「打印选中」');
return;
}
printLoading.value = true;
createMessage.destroy(PRINT_BATCH_LOADING_KEY);
createMessage.loading({
content: `正在打印 ${rows.length} 条记录,请稍候…`,
key: PRINT_BATCH_LOADING_KEY,
duration: 0,
});
(async () => {
try {
let ok = 0;
let firstError = '';
for (const row of rows) {
try {
await executePrint(row, { silentSuccess: true });
ok += 1;
} catch (e: unknown) {
if (!firstError) {
firstError = e instanceof Error ? e.message : String(e);
}
}
}
if (ok === rows.length) {
createMessage.success(`已通过 PrintDot 提交 ${ok} 条打印任务`);
} else {
createMessage.warning(
`打印完成:成功 ${ok},失败 ${rows.length - ok}${firstError ? `。首条错误:${firstError}` : ''}`,
);
}
} finally {
createMessage.destroy(PRINT_BATCH_LOADING_KEY);
printLoading.value = false;
}
})();
}
async function handlePrintRow(record: Recordable) {
printLoading.value = true;
createMessage.destroy(PRINT_ROW_LOADING_KEY);
createMessage.loading({
content: '正在生成 PDF 并提交打印,版面复杂时可能需数十秒,请稍候…',
key: PRINT_ROW_LOADING_KEY,
duration: 0,
});
try {
await executePrint(record, { silentSuccess: true });
createMessage.success('已通过 PrintDot 提交打印');
} catch (e: unknown) {
createMessage.error(e instanceof Error ? e.message : String(e));
} finally {
createMessage.destroy(PRINT_ROW_LOADING_KEY);
printLoading.value = false;
}
}
onMounted(async () => {
const cfg = getPrintDotBridgeConfig();
setPrintDotBridgeConfig(cfg.wsUrl, '');
printDotWsUrl.value = cfg.wsUrl || '';
try {
const raw = await initDictOptions(PRINT_DOT_WS_DICT);
const items = Array.isArray(raw) ? raw : [];
const values = items
.map((it: Recordable) => String(it.value ?? it.itemValue ?? '').trim())
.filter(Boolean);
const valueSet = new Set(values);
if (valueSet.size && printDotWsUrl.value && !valueSet.has(String(printDotWsUrl.value).trim())) {
printDotWsUrl.value = values[0];
setPrintDotBridgeConfig(printDotWsUrl.value, '');
} else if (valueSet.size && !printDotWsUrl.value.trim()) {
printDotWsUrl.value = values[0];
setPrintDotBridgeConfig(printDotWsUrl.value, '');
}
} catch {
/* 字典未配置时沿用 localStorage */
}
const savedPrinter = localStorage.getItem(PRINT_TEMPLATE_SELECTED_PRINTER_KEY);
if (savedPrinter) {
selectedPrinterName.value = savedPrinter;
}
await refreshPrinterOptions(false);
});
function handleAdd() { function handleAdd() {
openModal(true, { isUpdate: false, showFooter: true }); openModal(true, { isUpdate: false, showFooter: true });
@@ -63,7 +336,28 @@
createMessage.success('已停用'); createMessage.success('已停用');
reload(); reload();
} }
function getDropDownAction(record) {
function getTableAction(record: Recordable) {
return [
{
label: '编辑',
onClick: handleEdit.bind(null, record),
auth: 'mes:mes_raw_material_inspect_std:edit',
},
{
label: '打印预览',
onClick: handlePrintPreview.bind(null, record),
auth: 'mes:mes_raw_material_inspect_std:edit',
},
{
label: '打印',
onClick: handlePrintRow.bind(null, record),
auth: 'mes:mes_raw_material_inspect_std:edit',
},
];
}
function getDropDownAction(record: Recordable) {
const actions: any[] = [ const actions: any[] = [
{ label: '详情', onClick: handleDetail.bind(null, record) }, { label: '详情', onClick: handleDetail.bind(null, record) },
{ {

View File

@@ -0,0 +1,203 @@
<template>
<a-modal
v-model:open="innerOpen"
:title="modalTitle"
width="960px"
:footer="null"
destroy-on-close
wrap-class-name="mes-raw-material-inspect-std-print-preview-modal"
@cancel="onClose"
>
<a-spin :spinning="loading">
<div v-if="errorText" class="preview-error">{{ errorText }}</div>
<div v-else class="preview-body">
<iframe
v-if="previewHtml"
class="preview-iframe"
title="原材料检验标准打印预览"
:srcdoc="previewHtml"
/>
<a-empty v-else-if="!loading" description="暂无预览内容" />
</div>
</a-spin>
<div class="preview-footer">
<a-space>
<a-button @click="innerOpen = false">关闭</a-button>
<a-button type="primary" :disabled="!previewHtml || !!errorText" @click="handleBrowserPrint">
<Icon icon="ant-design:printer-outlined" />
浏览器打印
</a-button>
</a-space>
</div>
</a-modal>
</template>
<script lang="ts" setup>
import { computed, ref, watch } from 'vue';
import { Icon } from '/@/components/Icon';
import { useMessage } from '/@/hooks/web/useMessage';
import { prepareNativePrint } from '../MesRawMaterialInspectStd.api';
import { renderNativePrintHtml } from '/@/views/print/template/native/core/printRenderer';
import { normalizeImportedNativeSchema } from '/@/views/print/template/native/core/nativeSchemaNormalize';
const props = defineProps<{
open: boolean;
/** 检验标准主键 */
stdId: string | null;
/** 展示在标题(如标准编号) */
standardNo?: string;
}>();
const emit = defineEmits<{
(e: 'update:open', v: boolean): void;
}>();
const { createMessage } = useMessage();
const innerOpen = computed({
get: () => props.open,
set: (v: boolean) => emit('update:open', v),
});
const modalTitle = computed(() => {
const b = String(props.standardNo || '').trim();
return b ? `原材料检验标准打印预览(标准编号:${b}` : '原材料检验标准打印预览';
});
const loading = ref(false);
const errorText = ref('');
const previewHtml = ref('');
async function loadPreview(id: string) {
loading.value = true;
errorText.value = '';
previewHtml.value = '';
try {
const prep = (await prepareNativePrint(id)) as Record<string, unknown>;
const templateJsonRaw = prep.templateJson as string;
const printData = prep.printData as Record<string, unknown>;
if (!templateJsonRaw) {
throw new Error('模板 JSON 为空,请检查「业务打印绑定」是否已配置');
}
let raw: unknown;
try {
raw = typeof templateJsonRaw === 'string' ? JSON.parse(templateJsonRaw) : templateJsonRaw;
} catch {
throw new Error('模板 JSON 格式错误');
}
const schema = normalizeImportedNativeSchema(raw);
previewHtml.value = await renderNativePrintHtml(schema, printData as Record<string, unknown>);
} catch (e: unknown) {
errorText.value = e instanceof Error ? e.message : String(e);
} finally {
loading.value = false;
}
}
function handleBrowserPrint() {
const html = previewHtml.value;
if (!html?.trim()) {
createMessage.warning('预览未就绪,请稍后再试');
return;
}
const iframe = document.createElement('iframe');
iframe.setAttribute(
'style',
'position:fixed;left:0;top:0;width:0;height:0;border:0;opacity:0;pointer-events:none;',
);
document.body.appendChild(iframe);
const doc = iframe.contentDocument;
if (!doc) {
document.body.removeChild(iframe);
createMessage.error('无法创建打印文档');
return;
}
try {
doc.open();
doc.write(html);
doc.close();
} catch {
document.body.removeChild(iframe);
createMessage.error('写入打印内容失败');
return;
}
const cleanup = () => {
try {
if (iframe.parentNode) {
document.body.removeChild(iframe);
}
} catch {
// ignore
}
};
const runPrint = () => {
try {
const w = iframe.contentWindow;
if (!w) {
createMessage.error('无法唤起打印窗口');
cleanup();
return;
}
w.focus();
w.print();
w.addEventListener('afterprint', cleanup, { once: true });
window.setTimeout(cleanup, 120000);
} catch {
createMessage.error('无法唤起打印,请检查浏览器弹窗/打印权限');
cleanup();
}
};
window.setTimeout(runPrint, 100);
}
function onClose() {
errorText.value = '';
previewHtml.value = '';
}
watch(
() => [props.open, props.stdId] as const,
([isOpen, id]) => {
if (isOpen && id) {
void loadPreview(id);
}
if (!isOpen) {
onClose();
}
},
);
</script>
<style lang="less" scoped>
.preview-error {
color: #cf1322;
padding: 8px 0;
}
.preview-body {
min-height: 420px;
max-height: 72vh;
overflow: auto;
border: 1px solid #f0f0f0;
border-radius: 4px;
background: #fafafa;
}
.preview-iframe {
display: block;
width: 100%;
min-height: 400px;
border: 0;
background: #fff;
}
.preview-footer {
margin-top: 16px;
padding-top: 12px;
border-top: 1px solid #f0f0f0;
text-align: right;
}
</style>

View File

@@ -9,6 +9,7 @@ enum Api {
bizTypesForBinding = '/print/bizTemplateBind/bizTypesForBinding', bizTypesForBinding = '/print/bizTemplateBind/bizTypesForBinding',
permWhitelist = '/print/bizTemplateBind/permWhitelist', permWhitelist = '/print/bizTemplateBind/permWhitelist',
parseTemplateFields = '/print/bizTemplateBind/parseTemplateFields', parseTemplateFields = '/print/bizTemplateBind/parseTemplateFields',
parseTemplateStructure = '/print/bizTemplateBind/parseTemplateStructure',
previewMappedData = '/print/bizTemplateBind/previewMappedData', previewMappedData = '/print/bizTemplateBind/previewMappedData',
detailSlots = '/print/bizTemplateBind/detailSlots', detailSlots = '/print/bizTemplateBind/detailSlots',
bizFieldsForDetailSlot = '/print/bizTemplateBind/bizFieldsForDetailSlot', bizFieldsForDetailSlot = '/print/bizTemplateBind/bizFieldsForDetailSlot',
@@ -36,6 +37,16 @@ export const parseTemplateFields = (templateId: string) =>
params: { templateId, _t: Date.now() }, params: { templateId, _t: Date.now() },
}); });
/** 主表参数 + 按模板明细表分组(多标签映射) */
export const parseTemplateStructure = (templateId: string) =>
defHttp.get<{
params: { bindField: string; elementType?: string; titleHint?: string }[];
detailTables: { tableKey: string; label?: string; fields: { bindField: string; elementType?: string; titleHint?: string }[] }[];
}>({
url: Api.parseTemplateStructure,
params: { templateId, _t: Date.now() },
});
/** 预览映射后的打印数据 */ /** 预览映射后的打印数据 */
export const previewMappedData = (data: { bizCode: string; bizDataJson: Record<string, unknown> }) => export const previewMappedData = (data: { bizCode: string; bizDataJson: Record<string, unknown> }) =>
defHttp.post({ url: Api.previewMappedData, data }); defHttp.post({ url: Api.previewMappedData, data });

View File

@@ -47,7 +47,7 @@
show-icon show-icon
class="bind-alert" class="bind-alert"
message="配置说明" message="配置说明"
description="按卡片顺序操作:先选业务与模板 → 若模板含明细占位,在「明细数据来源」中选择主实体上的集合/嵌套对象 → 点击「解析模板占位字段」→ 在下方「主表参数」「明细与表格」中分别为每个占位选择业务字段业务字段下拉第一项为「空占位符」,表示不参与业务 JSON 取值(等同输出空)。主表参数一般映射主实体字段;明细占位可选带「明细前缀」的路径(如 lines.qty。支持 lines.qty首行或 lines.0.qty。" description="按卡片顺序操作:先选业务与模板 → 点击「解析模板占位字段」→ 主表参数映射主实体字段 → 若模板含多个明细表,在「明细与表格」标签页中逐表选择与模板明细键对应的业务明细集合,再映射列字段业务字段下拉第一项为「空占位符」,表示不参与业务 JSON明细占位多为「模板明细键.列」(如 List2.Field1业务侧选「明细属性.列」(如 lineList.qty打印时会按数组展开。"
/> />
<a-card title="基础信息" size="small" :bordered="true" class="bind-card"> <a-card title="基础信息" size="small" :bordered="true" class="bind-card">
@@ -89,30 +89,6 @@
</a-form> </a-form>
</a-card> </a-card>
<a-card size="small" :bordered="true" class="bind-card">
<template #title>
<span class="bind-card-head">明细数据来源</span>
<span class="bind-card-head-extra">可选</span>
</template>
<template #extra>
<span class="bind-card-sub">有明细/表格占位时需配置</span>
</template>
<p class="bind-card-desc">
选择主实体类上的明细集合属性 List&lt;明细实体&gt;或嵌套对象系统将明细类字段并入下方明细与表格中的业务字段下拉
</p>
<a-select
v-model:value="selectedDetailProperty"
allow-clear
show-search
option-filter-prop="label"
placeholder="无需明细请留空"
:options="detailSlotSelectOptions"
:loading="detailFieldsLoading"
style="width: 100%"
@change="onDetailSlotChange"
/>
</a-card>
<a-card size="small" :bordered="true" class="bind-card bind-card--mapping"> <a-card size="small" :bordered="true" class="bind-card bind-card--mapping">
<template #title> <template #title>
<span class="bind-card-head">字段映射</span> <span class="bind-card-head">字段映射</span>
@@ -125,7 +101,7 @@
<a-button <a-button
size="small" size="small"
@click="autoMatchFields" @click="autoMatchFields"
:disabled="(!bizFields.length && !detailBizFields.length) || !tplFields.length" :disabled="(!bizFields.length && !hasAnyDetailBizFields()) || !tplFields.length"
> >
同名自动匹配 同名自动匹配
</a-button> </a-button>
@@ -170,35 +146,59 @@
<div class="bind-map-section bind-map-section--detail"> <div class="bind-map-section bind-map-section--detail">
<div class="bind-section-bar"> <div class="bind-section-bar">
<span class="bind-section-title"> 明细与表格列</span> <span class="bind-section-title"> 明细与表格列</span>
<span class="bind-section-hint">对应明细字段表格列等可选主表字段或上方明细来源生成的前缀字段</span> <span class="bind-section-hint">
按模板明细表tableKey分页配置每个标签页先选业务明细集合再映射列多表明细互不影响
</span>
</div> </div>
<a-table <template v-if="detailTablesStructure.length">
v-if="mappingRowsDetail.length" <a-tabs v-model:activeKey="detailTabKey" type="card" size="small" class="bind-detail-tabs">
size="small" <a-tab-pane v-for="dt in detailTablesStructure" :key="dt.tableKey" :tab="detailTabTitle(dt)">
row-key="templateField" <p class="bind-card-desc">
:pagination="false" 模板明细键 <code>{{ dt.tableKey }}</code>
:columns="mapTableColumnsDetail" 对应画布表格等组件的数据源请选择主实体上要绑定到该明细表的业务集合或嵌套对象
:data-source="mappingRowsDetail" </p>
bordered
class="bind-map-table"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'tplKind'">
{{ templateFieldKindLabel(record.elementType) }}
</template>
<template v-if="column.key === 'bizField'">
<a-select <a-select
v-model:value="record.bizField" v-model:value="detailSlotByTable[dt.tableKey]"
:options="bizFieldOptions"
allow-clear allow-clear
show-search show-search
option-filter-prop="label" option-filter-prop="label"
style="width: 100%" placeholder="选择业务明细属性(如 lineList"
placeholder="选择业务字段" :options="detailSlotSelectOptions"
:loading="!!detailFieldsLoadingMap[dt.tableKey]"
style="width: 100%; margin-bottom: 12px"
@change="(v) => onDetailSlotChangeForTable(dt.tableKey, v as string | undefined)"
/> />
</template> <a-table
</template> v-if="mappingRowsForDetailTable(dt).length"
</a-table> size="small"
row-key="templateField"
:pagination="false"
:columns="mapTableColumnsDetail"
:data-source="mappingRowsForDetailTable(dt)"
bordered
class="bind-map-table"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'tplKind'">
{{ templateFieldKindLabel(record.elementType) }}
</template>
<template v-if="column.key === 'bizField'">
<a-select
v-model:value="record.bizField"
:options="bizFieldOptionsForTable(dt.tableKey)"
allow-clear
show-search
option-filter-prop="label"
style="width: 100%"
placeholder="选择业务字段"
/>
</template>
</template>
</a-table>
<a-empty v-else class="bind-empty" description="该模板明细表下暂无占位字段(可在设计器中维护 dataBinding.detailTables" />
</a-tab-pane>
</a-tabs>
</template>
<a-empty v-else class="bind-empty" description="本模板未解析到明细/表格列占位" /> <a-empty v-else class="bind-empty" description="本模板未解析到明细/表格列占位" />
</div> </div>
</template> </template>
@@ -269,7 +269,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { computed, ref, unref } from 'vue'; import { computed, reactive, ref, unref } from 'vue';
import { BasicTable, TableAction, useTable } from '/@/components/Table'; import { BasicTable, TableAction, useTable } from '/@/components/Table';
import { BasicModal, useModal } from '/@/components/Modal'; import { BasicModal, useModal } from '/@/components/Modal';
import { BasicTree, TreeItem } from '/@/components/Tree'; import { BasicTree, TreeItem } from '/@/components/Tree';
@@ -313,6 +313,12 @@
label: string; label: string;
} }
interface TemplateDetailTableItem {
tableKey: string;
label?: string;
fields: TplFieldItem[];
}
const bizTypesRef = ref<BizTypeItem[]>([]); const bizTypesRef = ref<BizTypeItem[]>([]);
const tplListRef = ref<{ id: string; templateCode: string; templateName: string }[]>([]); const tplListRef = ref<{ id: string; templateCode: string; templateName: string }[]>([]);
/** 弹窗内:业务列表 + 模板下拉并行加载中(不再阻塞 openModal避免点按钮好几秒才出框 */ /** 弹窗内:业务列表 + 模板下拉并行加载中(不再阻塞 openModal避免点按钮好几秒才出框 */
@@ -335,9 +341,12 @@
const bizFields = ref<BizTypeItem['fields']>([]); const bizFields = ref<BizTypeItem['fields']>([]);
const mappingRows = ref<MappingRow[]>([]); const mappingRows = ref<MappingRow[]>([]);
const detailSlots = ref<DetailSlotItem[]>([]); const detailSlots = ref<DetailSlotItem[]>([]);
const selectedDetailProperty = ref<string | undefined>(undefined); const detailTablesStructure = ref<TemplateDetailTableItem[]>([]);
const detailBizFields = ref<BizTypeItem['fields']>([]); const detailTabKey = ref('');
const detailFieldsLoading = ref(false); /** 每个模板明细表键对应选中的业务明细属性名 */
const detailSlotByTable = reactive<Record<string, string | undefined>>({});
const detailBizFieldsMap = reactive<Record<string, BizTypeItem['fields']>>({});
const detailFieldsLoadingMap = reactive<Record<string, boolean>>({});
const isEditMode = ref(false); const isEditMode = ref(false);
const modalTitle = computed(() => (unref(isEditMode) ? '编辑业务打印绑定' : '新增业务打印绑定')); const modalTitle = computed(() => (unref(isEditMode) ? '编辑业务打印绑定' : '新增业务打印绑定'));
@@ -372,19 +381,125 @@
return [...head, ...rest]; return [...head, ...rest];
}); });
/** 主表 + 明细前缀字段(用于明细/表格占位) */ /** 某一模板明细表标签页:主表字段 + 该表选中的业务明细前缀字段 */
const bizFieldOptions = computed(() => { function bizFieldOptionsForTable(tableKey: string) {
const head = [{ label: '— 空占位符(不参与业务 JSON—', value: EMPTY_BIZ_FIELD_SENTINEL }]; const head = [{ label: '— 空占位符(不参与业务 JSON—', value: EMPTY_BIZ_FIELD_SENTINEL }];
const main = unref(bizFields).map((f) => ({ const main = unref(bizFields).map((f) => ({
label: f.label ? `${f.label}${f.fieldKey}` : f.fieldKey, label: f.label ? `${f.label}${f.fieldKey}` : f.fieldKey,
value: f.fieldKey, value: f.fieldKey,
})); }));
const detail = unref(detailBizFields).map((f) => ({ const detail = (detailBizFieldsMap[tableKey] || []).map((f) => ({
label: f.label ? `${f.label}${f.fieldKey}` : f.fieldKey, label: f.label ? `${f.label}${f.fieldKey}` : f.fieldKey,
value: f.fieldKey, value: f.fieldKey,
})); }));
return [...head, ...main, ...detail]; return [...head, ...main, ...detail];
}); }
function hasAnyDetailBizFields(): boolean {
for (const k in detailBizFieldsMap) {
if ((detailBizFieldsMap[k] || []).length) {
return true;
}
}
return false;
}
function detailTabTitle(dt: TemplateDetailTableItem) {
const hint = dt.label || '';
return hint ? `${hint}${dt.tableKey}` : dt.tableKey;
}
/** 属于某一模板明细表的映射行(与后端分组一致) */
function mappingRowsForDetailTable(dt: TemplateDetailTableItem): MappingRow[] {
const keys = new Set((dt.fields || []).map((f) => (f.bindField || '').trim()).filter(Boolean));
return unref(mappingRows).filter((r) => keys.has((r.templateField || '').trim()));
}
/** 根据已保存映射推断业务明细属性(编辑时用) */
function inferDetailSlotForTable(tableKey: string): string | undefined {
const dt = unref(detailTablesStructure).find((d) => d.tableKey === tableKey);
if (!dt?.fields?.length) {
return undefined;
}
const keySet = new Set(dt.fields.map((f) => (f.bindField || '').trim()).filter(Boolean));
const counts = new Map<string, number>();
for (const r of unref(mappingRows)) {
if (!keySet.has((r.templateField || '').trim())) {
continue;
}
const bf = r.bizField;
if (!bf || bf === EMPTY_BIZ_FIELD_SENTINEL) {
continue;
}
const s = String(bf);
const dot = s.indexOf('.');
if (dot <= 0) {
continue;
}
const head = s.slice(0, dot);
counts.set(head, (counts.get(head) || 0) + 1);
}
let best: string | undefined;
let bestN = 0;
counts.forEach((n, h) => {
if (n > bestN) {
bestN = n;
best = h;
}
});
return best;
}
async function loadBizFieldsForTableSlot(tableKey: string, propertyName: string | undefined) {
if (!propertyName || !form.value.bizCode) {
detailBizFieldsMap[tableKey] = [];
return;
}
const slot = unref(detailSlots).find((s) => s.propertyName === propertyName);
const kind = slot?.slotKind || 'LIST';
detailFieldsLoadingMap[tableKey] = true;
try {
const list = await Api.bizFieldsForDetailSlot({
bizCode: form.value.bizCode,
detailProperty: propertyName,
slotKind: kind,
});
detailBizFieldsMap[tableKey] = (list || []) as BizTypeItem['fields'];
} catch {
detailBizFieldsMap[tableKey] = [];
} finally {
detailFieldsLoadingMap[tableKey] = false;
}
}
async function onDetailSlotChangeForTable(tableKey: string, propertyName: string | undefined) {
detailSlotByTable[tableKey] = propertyName;
await loadBizFieldsForTableSlot(tableKey, propertyName);
}
async function restoreDetailSlotsFromMapping() {
for (const dt of unref(detailTablesStructure)) {
const tk = dt.tableKey;
const existing = detailSlotByTable[tk];
if (existing) {
await loadBizFieldsForTableSlot(tk, existing);
continue;
}
const inferred = inferDetailSlotForTable(tk);
if (inferred && unref(detailSlots).some((s) => s.propertyName === inferred)) {
detailSlotByTable[tk] = inferred;
await loadBizFieldsForTableSlot(tk, inferred);
}
}
}
function resetDetailTableUiState() {
detailTablesStructure.value = [];
detailTabKey.value = '';
Object.keys(detailSlotByTable).forEach((k) => delete detailSlotByTable[k]);
Object.keys(detailBizFieldsMap).forEach((k) => delete detailBizFieldsMap[k]);
Object.keys(detailFieldsLoadingMap).forEach((k) => delete detailFieldsLoadingMap[k]);
}
/** 已保存的空字符串映射为下拉哨兵,便于展示「空占位符」项 */ /** 已保存的空字符串映射为下拉哨兵,便于展示「空占位符」项 */
function normalizeBizFieldForUi(raw?: string) { function normalizeBizFieldForUi(raw?: string) {
@@ -407,11 +522,6 @@
unref(mappingRows).filter((r) => (r.elementType || '') === 'param'), unref(mappingRows).filter((r) => (r.elementType || '') === 'param'),
); );
/** 非参数占位(明细字段、表格列、其它画布元素) */
const mappingRowsDetail = computed(() =>
unref(mappingRows).filter((r) => (r.elementType || '') !== 'param'),
);
function templateFieldKindLabel(t?: string) { function templateFieldKindLabel(t?: string) {
const m: Record<string, string> = { const m: Record<string, string> = {
param: '主表·参数', param: '主表·参数',
@@ -545,8 +655,6 @@
async function refreshDetailSlots(code: string | undefined) { async function refreshDetailSlots(code: string | undefined) {
detailSlots.value = []; detailSlots.value = [];
selectedDetailProperty.value = undefined;
detailBizFields.value = [];
if (!code) { if (!code) {
return; return;
} }
@@ -557,37 +665,20 @@
} }
} }
async function onDetailSlotChange(propertyName: string | undefined) {
selectedDetailProperty.value = propertyName;
if (!propertyName || !form.value.bizCode) {
detailBizFields.value = [];
return;
}
const slot = unref(detailSlots).find((s) => s.propertyName === propertyName);
const kind = slot?.slotKind || 'LIST';
detailFieldsLoading.value = true;
try {
const list = await Api.bizFieldsForDetailSlot({
bizCode: form.value.bizCode,
detailProperty: propertyName,
slotKind: kind,
});
detailBizFields.value = (list || []) as BizTypeItem['fields'];
} catch {
detailBizFields.value = [];
} finally {
detailFieldsLoading.value = false;
}
}
async function onBizCodeChange(code: string) { async function onBizCodeChange(code: string) {
const hit = unref(bizTypesRef).find((b) => b.bizCode === code); const hit = unref(bizTypesRef).find((b) => b.bizCode === code);
bizFields.value = hit?.fields ?? []; bizFields.value = hit?.fields ?? [];
form.value.bizName = hit?.bizName; form.value.bizName = hit?.bizName;
Object.keys(detailSlotByTable).forEach((k) => delete detailSlotByTable[k]);
Object.keys(detailBizFieldsMap).forEach((k) => delete detailBizFieldsMap[k]);
await refreshDetailSlots(code); await refreshDetailSlots(code);
if (form.value.templateId && unref(detailTablesStructure).length) {
await restoreDetailSlotsFromMapping();
}
} }
async function onTemplateChange() { async function onTemplateChange() {
resetDetailTableUiState();
tplFields.value = []; tplFields.value = [];
mappingRows.value = []; mappingRows.value = [];
await reloadTemplateFields(); await reloadTemplateFields();
@@ -598,13 +689,20 @@
if (!tid) { if (!tid) {
tplFields.value = []; tplFields.value = [];
mappingRows.value = []; mappingRows.value = [];
detailTablesStructure.value = [];
detailTabKey.value = '';
return; return;
} }
parseLoading.value = true; parseLoading.value = true;
try { try {
const list = (await Api.parseTemplateFields(tid)) as TplFieldItem[]; const structure = await Api.parseTemplateStructure(tid);
tplFields.value = list || []; detailTablesStructure.value = structure?.detailTables ?? [];
const params = structure?.params ?? [];
const flatDetail = (structure?.detailTables ?? []).flatMap((d) => d.fields ?? []);
tplFields.value = [...params, ...flatDetail];
detailTabKey.value = detailTablesStructure.value[0]?.tableKey ?? '';
rebuildMappingRows(); rebuildMappingRows();
await restoreDetailSlotsFromMapping();
} finally { } finally {
parseLoading.value = false; parseLoading.value = false;
} }
@@ -648,7 +746,10 @@
const savedMappingRef = ref<{ templateField: string; bizField?: string }[]>([]); const savedMappingRef = ref<{ templateField: string; bizField?: string }[]>([]);
function autoMatchFields() { function autoMatchFields() {
const merged = [...unref(bizFields), ...unref(detailBizFields)]; const merged = [...unref(bizFields)];
for (const k in detailBizFieldsMap) {
merged.push(...(detailBizFieldsMap[k] || []));
}
const set = new Map(merged.map((f) => [f.fieldKey, f.fieldKey])); const set = new Map(merged.map((f) => [f.fieldKey, f.fieldKey]));
for (const row of unref(mappingRows)) { for (const row of unref(mappingRows)) {
if (set.has(row.templateField)) { if (set.has(row.templateField)) {
@@ -676,8 +777,7 @@
bizFields.value = []; bizFields.value = [];
mappingRows.value = []; mappingRows.value = [];
detailSlots.value = []; detailSlots.value = [];
selectedDetailProperty.value = undefined; resetDetailTableUiState();
detailBizFields.value = [];
previewBizJson.value = ''; previewBizJson.value = '';
previewResult.value = ''; previewResult.value = '';
openModal(true); openModal(true);
@@ -709,8 +809,7 @@
mappingRows.value = []; mappingRows.value = [];
bizFields.value = []; bizFields.value = [];
detailSlots.value = []; detailSlots.value = [];
selectedDetailProperty.value = undefined; resetDetailTableUiState();
detailBizFields.value = [];
openModal(true); openModal(true);
modalDataLoading.value = true; modalDataLoading.value = true;
try { try {
@@ -853,6 +952,14 @@
border-top: 1px dashed #f0f0f0; border-top: 1px dashed #f0f0f0;
} }
.bind-detail-tabs {
margin-top: 4px;
}
.bind-detail-tabs :deep(.ant-tabs-nav) {
margin-bottom: 10px;
}
.bind-section-bar { .bind-section-bar {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@@ -0,0 +1,7 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
echo Running build-installer.ps1 ...
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0build-installer.ps1"
echo.
pause