Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method MPSyncRoutingStep ( 
 | 
  Boolean isoverwritemanualconfig, 
 | 
  IORouting iorouting, 
 | 
  Routing mprouting 
 | 
) 
 | 
{ 
 | 
  Description: 'Synchronization of RoutingStep for MPSync' 
 | 
  TextBody: 
 | 
  [* 
 | 
    // Select a set of existing RoutingStep 
 | 
    existing := selectset( mprouting, RoutingStep, item, true ); 
 | 
    updates := construct( RoutingSteps ); 
 | 
     
 | 
    // Traverse the new set of valid RoutingStep 
 | 
    traverse( iorouting , IORoutingStep, io, io.IsValid() ) 
 | 
    { 
 | 
      routingstepname := io.Name();  
 | 
      routingsteptool := io.Tool(); 
 | 
      // Find existing RoutingStep 
 | 
      objectinstance := RoutingStep::FindRoutingStepTypeIndex( mprouting.ID(), routingstepname ); 
 | 
       
 | 
      // If no existing RoutingStep is found, and there's valid Routing, create one 
 | 
      if( not isnull( mprouting ) ) 
 | 
      { 
 | 
        if( isnull( objectinstance ) ) 
 | 
        { 
 | 
            objectinstance := RoutingStep::Create( mprouting, routingstepname, routingsteptool, true ); 
 | 
            objectinstance.SequenceNumberForExcel( io.SequenceNumberForExcel() ); 
 | 
        } 
 | 
        // Else if the RoutingStep is not manually configured or the imported instance should overwrite manual configuration, 
 | 
        // update the existing RoutingStep 
 | 
        else if( not objectinstance.IsManuallyConfigured() or isoverwritemanualconfig ) 
 | 
        { 
 | 
          // Update RoutingStep 
 | 
          objectinstance.Update( io.Name(), io.Tool(), true ); 
 | 
          objectinstance.SequenceNumberForExcel( io.SequenceNumberForExcel() ); 
 | 
           
 | 
          updates.Add( objectinstance ); 
 | 
        } 
 | 
         
 | 
        if( not isnull( objectinstance ) ) 
 | 
        { 
 | 
          // CustomUpdate method is extended 
 | 
          objectinstance.CustomUpdate( io, isoverwritemanualconfig ); 
 | 
        } 
 | 
      } 
 | 
    } 
 | 
     
 | 
    // Get the set of old RoutingStep to be deleted 
 | 
    tobedeleteset := existing.Difference( updates ); 
 | 
     
 | 
    // Traverse the set of RoutingStep to be deleted 
 | 
    // Only delete RoutingStep that is not manually configured or the imported instance should overwrite manual configuration 
 | 
    traverse( tobedeleteset, Elements, ele, 
 | 
              not ele.IsManuallyConfigured() or isoverwritemanualconfig ) 
 | 
    { 
 | 
      ele.Delete(); 
 | 
    } 
 | 
  *] 
 | 
} 
 |