| | |
| | | |
| | | StringBuilder sb = new StringBuilder(); |
| | | for (LedCommand command : list) { |
| | | sb.append(command.getTitle() +"("+command.getWorkNo()+")"); |
| | | sb.append("源库位:"+command.getSourceLocNo()); |
| | | sb.append("目标站:"+command.getStaNo()); |
| | | sb.append(command.getTitle() +"("+command.getWorkNo()+")").append("\n"); |
| | | sb.append("源库位:"+command.getSourceLocNo()).append("\n"); |
| | | sb.append("目标站:"+command.getStaNo()).append("\n"); |
| | | if (!command.isEmptyMk()) { |
| | | for (MatDto matDto : command.getMatDtos()) { |
| | | sb.append(matDto.getMaknx() + "【数量" + matDto.getCount() +"】"); |
| | | sb.append(matDto.getMaknx() + "【数量" + matDto.getCount() +"】").append("\n"); |
| | | } |
| | | } |
| | | sb.append("\n"); |
| | | } |
| | | stringBuffer.delete(0, stringBuffer.length()); |
| | | stringBuffer.append(sb.toString()); |
| | | resetStatus = false; |
| | | } |
| | | |
| | | private void reset() throws Bx5GException { |