Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Function CalcDisplayStatus 
 | 
{ 
 | 
  TextBody: 
 | 
  [* 
 | 
    value := SWF_Translation::TRANSLATE_Completed(); 
 | 
     
 | 
    if ( this.IsCompleted() ) 
 | 
    { 
 | 
      value := SWF_Translation::TRANSLATE_Completed(); 
 | 
    } 
 | 
    else if( this.HasLateness() ) 
 | 
    { 
 | 
      value := SWF_Translation::TRANSLATE_DayLate( this.Lateness() ); 
 | 
    } 
 | 
    else if( this.Status() = SWF_Step::STATUS_Incomplete() ) 
 | 
    { 
 | 
      value := SWF_Translation::TRANSLATE_OnTime(); 
 | 
    } 
 | 
     
 | 
    this.DisplayStatus( value ); 
 | 
  *] 
 | 
} 
 |