Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method GetHasTotalMinInputQuantityLessThanOrEqualToQuantity ( 
 | 
  output Strings feedback_o, 
 | 
  output Strings sanitycheckfeedback_o 
 | 
) declarative remote as Boolean 
 | 
{ 
 | 
  Description: 'Returns true if the sum of min quantity of OperationInput is less than or equals to quantity.' 
 | 
  TextBody: 
 | 
  [* 
 | 
    isvalid := this.GetHasTotalMinInputQuantityLessThanOrEqualToQuantity(); 
 | 
     
 | 
    if( not isnull( feedback_o ) and not isvalid ) 
 | 
    { 
 | 
      instance := Translations::MP_OperationInputGroup_Instance( this.InputGroupID(), this.Operation().Name() ); 
 | 
      message :=  Translations::MP_OperationInputGroup_ViolateValidInputGroupQuantity_InvalidSumOfMinQuantity( this.TotalMinQuantity(), this.InputGroupQuantity() ); 
 | 
      feedback_o.Add( SanityCheckMessage::GetFormattedMessage( instance, message ) ); 
 | 
      sanitycheckfeedback_o.Add( SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ); 
 | 
    } 
 | 
     
 | 
    return isvalid 
 | 
  *] 
 | 
} 
 |