| | |
| | | // 创建一个数据页 |
| | | TextBxPage page = new TextBxPage(); |
| | | for (LedCommand command : list) { |
| | | page.newLine("出库任务("+command.getWorkNo()+")"); |
| | | page.newLine(command.getTitle() +"("+command.getWorkNo()+")"); |
| | | page.newLine("源库位:"+command.getSourceLocNo()); |
| | | page.newLine("目标站:"+command.getStaNo()); |
| | | for (MatDto matDto : command.getMatDtos()) { |
| | | page.newLine(matDto.getMaknx() + "【数量" + matDto.getCount() +"】"); |
| | | if (!command.isEmptyMk()) { |
| | | for (MatDto matDto : command.getMatDtos()) { |
| | | page.newLine(matDto.getMaknx() + "【数量" + matDto.getCount() +"】"); |
| | | } |
| | | } |
| | | page.newLine("\n"); |
| | | } |