Quintiq file version 2.0
|
#parent: #root
|
Method GetHasFulfilledDependentDemand (
|
output Strings feedback_o,
|
output Strings sanitycheckfeedback_o
|
) declarative remote as Boolean
|
{
|
Description: 'Check if PISPIP has fulfilled dependent demands'
|
TextBody:
|
[*
|
// desmondt Jul-15-2015 (created)
|
isvalid := not this.IsLeafPlanning() or this.HasFulfilledDependentDemand();
|
|
if( not isnull( feedback_o ) and not isvalid )
|
{
|
gp := this.MacroPlan().GlobalParameters_MP();
|
isexcludefromoptimization:= this.ProductInStockingPoint_MP().Product_MP().IsExcludedFromOptimization();
|
|
instance := ProductInStockingPointInPeriod::GetInstanceText( this );
|
message := this.GetBalanceViolationMessage( gp.NumberOfDecimals(), isexcludefromoptimization );
|
categorylevel := ifexpr( isexcludefromoptimization, SanityCheckCategoryLevel::GetSanityCheckCategoryPlanningWarning(), SanityCheckCategoryLevel::GetSanityCheckCategoryPlanningIssue() );
|
|
feedback_o.Add( SanityCheckMessage::GetFormattedMessage( instance, message ) );
|
// refer to Sanity check table
|
sanitycheckfeedback_o.Add( categorylevel );
|
}
|
|
return isvalid;
|
*]
|
}
|