#
Junjie
2025-06-18 c7221d56da7bf4efa1672a15d2f1b66adbca20fc
src/main/java/com/zy/core/thread/LedThread.java
@@ -205,7 +205,7 @@
    private void write7(List<LedCommand> list) {
        commandList = list;
        this.ledMk = false;
        StringBuilder sb = new StringBuilder();
        for (LedCommand command : list) {
            sb.append(command.getTitle()).append("(").append(command.getWorkNo()).append(")").append("\n");
@@ -215,6 +215,7 @@
                for (MatDto matDto : command.getMatDtos()) {
                    sb.append("物料编码:").append(matDto.getMatnr()).append("\n");
                    sb.append("数量:").append(matDto.getCount()).append("\n");
                    sb.append("规格:").append(matDto.getSpecs()).append("\n");
                }
            }
            sb.append("\n");
@@ -228,14 +229,15 @@
    private void reset7() {
        commandList = null;
        stringBuffer.delete(0, stringBuffer.length());
        errorMsg.delete(0, errorMsg.length());
    }
    private void error(String msg) {
        errorMsg.delete(0, errorMsg.length());
        errorMsg.append(msg);
        this.ledMk = false;
    }
    public void errorReset() {