As of 16.0, preview image support has been implemented for core Part
s and is no longer exclusive to DsPart
s.
The system for generating preview images is:
cmWritable("tmp/partPreviewImageCache/")
str->Url
map is stored in Space cacheData
for easy access cm/core/part/hooks.cm
)renderPartPreviewImagesTask
task begins (cm/core/part/tasks.cm
)Part
completeSpecifiedValue()
for returning the value of what complete means.New: extend public str completeSpecifiedValue()
Default return values were moved to constants in cm.core.part.cm
.
New: public const str completeSpecYes = "Y"; public const str completeSpecNo = "N";
completedSpec()
for indicating whether there is a completed specification of this part.New: extend public bool completedSpec()
completedSpec()
needs to return true or false in order to get the default complete values 'Y' or 'N' in the Complete column in Calculations. completedSpec()
will also drive the output for Status column and Error Description in Spec PMX export.
The following functions have been added to PartInfoTree
s:
Added: extend public bool containsSpecial() {} Added: extend public PartSpecial special() {} Added: extend public str code() {} Added: extend public str description() {} Added: extend public double price() {} Added: extend public str groupDescription() {}
The following functions on Part
account for PartSpecial
information now.
// adds specialFlattenableKey() to tail of key extend public str flattenableKey() {} // returns PartSpecial part number if found extend public str articleCode() {} // returns PartSpecial description if found extend public str description(Space space=null) {} // returns PartSpecial price if found extend public double customListPrice(bool includeChildren=false, str currency=null, Space space=null) {