Compile Time Changes

init.cm

As of 16.0, preview image support has been implemented for core Parts and is no longer exclusive to DsParts.

As a result, the global constant dsPreviewColumn has been removed from cm.abstract.dataSymbol. A new constant of the column (called partPreviewColumn) has been added and is registered in cm/core/init/corePartColumns.cm.

In cm/abstract/dataSymbol/init.cm
Removed: public const DsPreviewColumn dsPreviewColumn();

In cm/core/init/corePartColumns.cm
Added: public const PartPreviewColumn partPreviewColumn();

Runtime/Behavior Changes

DsPart

The following functions on DsPart account for PartSpecial information now.

// adds specialFlattenableKey() to tail of key
public str flattenableKey() {}

// returns PartSpecial price if found
public double basePrice() {

As of 16.0, preview image support has been implemented for core Parts and is no longer exclusive to DsParts.

As a result, the following changes have been made to DsPart:

  • global constant dsPreviewColumn has been removed from DsParts overridePartColumns() function
  • previewImageUrl() function overrides the core Part version and now has an added default parameter
  • overridden interface added
Old: public PartColumn[] overridePartColumns() {
		return [PartColumn: dsPrdCatalogColumn, dsPreviewColumn, dsTagPartColumn ];
	 }
New: public PartColumn[] overridePartColumns() {
		return [PartColumn: dsPrdCatalogColumn, dsTagPartColumn ];
	 }


Old: extend public Url previewImageUrl() {}
New: public Url previewImageUrl(bool generateIfNotFound=false) {}


Added: public Image previewImage(sizeI size=cPartPreviewImageSize, bool generateIfNotFound=false, bool regenerate=false) {}
Added: public bool allowRenderPreviewImage() {}

DsPData

DsPData has undergone a change in it's public double price(SpecOption[] specOs=null) function. The function now returns a base price that does not include SpecOption prices. As of 16.0, upcharge() has been implemented in cm/abstract/part/part.cm and SpecOptions contain a price value. customListPrice now returns the base price plus the upcharge value.

The public void queryDialog(Snapper snppr) {} function has also been changed with the new QueryDialog implementation. It no longer opens the old DsQueryDialog implementation but utilizes the new QueryDialog.

The following has been changed in DsPData:

// price function
Old: extend public double price(SpecOption[] specOs=null) {
		double price;
		price = basePrice();
		if (!specOs) specOs = specOptions().:SpecOption[];
		for (DsSpecOption specOpt in specOs) price += specOpt.price;
		return price;
	 }	

New: extend public double price(SpecOption[] specOs=null) {
		return basePrice();
     }
	 
	 
	 
// queryDialog function
extend public void queryDialog(Snapper snppr) {
	if (proxy) {
		...
	}
	
	Old: DsQueryDialog(anyFrameWindow, snppr);
	New: dsOpenQueryDialog(snppr);
} 

class DsPData

The code of DsSpecOption is now constructed based on the option code instead of the option valueS to fix a bug where the dropdown selection of options in sub-features of numeric order features is not populated in the calculation dialog.

class DsPart

Added optional parameter to the constructor for partSourceId. Added new constructor for convenience.

Old:    public constructor(Snapper snapper, DsPData data, double price, double qty=1)

New:    public constructor(Snapper snapper, DsPData data, double price, double qty=1, str partSourceId=null)

New:    public constructor(Snapper snapper, DsPData data, str articleCode, str description, double listPrice,
               double quantity=1, double inPrice=0,
               bool flattenable=true, bool group=false, partStyle style=psNone,
               str flattenableKey=null, bool allowOtherParent=true, str partSourceId=null)
Removed:     private str _itemTagInfoKey;

_itemTagInfoKey has been moved to ProdPart in cm.abstract.part .

Preserve Ind. Tag customizations

User modifications to Ind. Tag are part of the flattenable key now when the user turns that setting on.

ItemTagInfo

Methods for managing Ind. Tags were moved to ProdPart .

class DsSpecOption

Remove field price

Removed: public double price;

class DsRextileLengthPartColumn is renamed to DsMaterialQtyPartColumn

MR: Rename Textile Length column to Material Quantity

Previous:    public class DsTextileLengthPartColumn extends BasicPartInfoTreeColumn


New:    public class DsMaterialQtyPartColumn extends BasicPartInfoTreeColumn

DataSymbol

With the new QueryDialog, interface has been added to DataSymbol to opt-in to utilize the new dialog. DataSymbols are defaulted to utilize the new QueryDialog. Any subclasses of DataSymbol must opt-out if the new dialog is not to be utilized.

The acceptQuery function is checked before adding the query context-menu item to a DataSymbol and the openQueryDialog function is utilized to open a QueryDialog for a DataSymbol.

The acceptQuery function returns true and openQueryDialog opens the new QueryDialog.

The following interface has been added to DataSymbol:

// QueryDialog helper functions
Added: public bool acceptQuery() {}
Added: public void openQueryDialog() {}