As of 16.5, a new interface for lead time and PartAnnotation
s have been added to core Part
.
These values are now exported with PMX exports leading to the following additions in ItemData
.
In cm/abstract/pmx/itemData.cm New: public AttributeData[] attributes; /** * Instantiate ItemData (this) fields from Part. */ extend public void generateItemDataFromPart(Part part) { ... New: this.leadtime = part.leadTime; if (part as ProdPart) { ... New: part.generateAttributeData(this); ... } ... }