Print the manufacturer and part number of the preset component in the bill of materials.
This commit is contained in:
parent
8babd54f4f
commit
a2ad986a2f
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user