Runtime/Behavior Changes

GlobalPartAdjustment

As of 15.5, a new summation type setting was added to the Summary Control Panel in the Calculations dialog. It allows the user to choose the price type that their summary Sum items display (Sell, Buy, List, Profit).

As a result, SummaryPriceInfo has been changed in the following ways:

  1. a public double profit field was added to reflect total profit
  2. sum no longer defaults to sell
  3. The constructor takes in a GlobalPartAdjustmentSum instance to get the sum price
  4. Old constructor is marked as deprecated
In SummaryPriceInfo...

Added: public double profit;
Added: public constructor(double list, double buy, double sell, double profit, GlobalPartAdjustmentSum summationType) {}