Print the manufacturer and part number of the preset component in the bill of materials.

This commit is contained in:
Kevin Ruland 2012-06-20 18:09:45 +00:00
parent 8babd54f4f
commit a2ad986a2f

View File

@ -639,7 +639,9 @@ public class PartsDetailVisitorStrategy {
para.add(new Chunk(tab1));
}
c.setFont(PrintUtilities.SMALL);
c.append(preset.toString());
StringBuffer sb = new StringBuffer();
sb.append(preset.getManufacturer()).append(" ").append(preset.getPartNo());
c.append(sb.toString());
para.add(c);
}
result.addElement(para);