Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

I observed the following PGI behavior connected to manual overrides: when the ManualPriceExpired goes 0>1 during the calculation, the manualResultPrice is not changed until the next calculation... I've checked the source code and I wonder if those two conditions should be in a reverse order?

AbstractPriceGridCalculationTask.java - public void processPGIResult
if(pgi.getManualPriceExpired()) 
   pgi.setManualResultPrice(null);

if(expireManualResult && pgi.getManualResultPrice() != null) 
   pgi.setManualPriceExpired(true);
  • No labels