Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method MPSyncUnitCalendarElement ( 
 | 
  Boolean isoverwitemanualconfig, 
 | 
  IOUnitCalendarElements iounitcalendarelements 
 | 
) 
 | 
{ 
 | 
  Description: 'Synchronization of UnitCalendarElement for MPSync' 
 | 
  TextBody: 
 | 
  [* 
 | 
    // Select a set of existing UnitCalendarElement 
 | 
    existing := selectset( this, Unit.UnitCalendarElement, item, true ); 
 | 
    updates := construct( UnitCalendarElements ); 
 | 
     
 | 
    // Traverse the new set of valid UnitCalendarElement 
 | 
    traverse( iounitcalendarelements , Elements, io, io.IsValid() ) 
 | 
    { 
 | 
      // Find existing UnitCalendarElement 
 | 
      objectinstance := UnitCalendarElement::FindUnitCalendarElementTypeIndex( io.UnitID(), io.Start(), io.End() ); 
 | 
      // Find existing Unit 
 | 
      unit := this.FindUnit( io.UnitID() ); 
 | 
       
 | 
      // If no existing UnitCalendarElement is found, create one 
 | 
      if( isnull( objectinstance ) ) 
 | 
      { 
 | 
        // Check if there's valid Unit 
 | 
        if( not isnull( unit ) ) 
 | 
        { 
 | 
          objectinstance := UnitCalendarElement::Create( unit, 
 | 
                                                         io.Start(), 
 | 
                                                         io.End(), 
 | 
                                                         io.Capacity(), 
 | 
                                                         io.Description(), 
 | 
                                                         true  );  
 | 
        } 
 | 
      } 
 | 
      // Else if the UnitCalendarElement is not manually configured or the imported instance should overwrite manual configuration, 
 | 
      // update the existing UnitCalendarElement 
 | 
      else if( not objectinstance.IsManuallyConfigured() or isoverwitemanualconfig ) 
 | 
      { 
 | 
        // Update UnitCalendarElement 
 | 
        objectinstance.Update( io.Capacity(), io.Description(),true  ); 
 | 
        updates.Add( objectinstance ); 
 | 
      } 
 | 
    } 
 | 
     
 | 
    // Get the set of old UnitCalendarElement to be deleted 
 | 
    tobedeleteset := existing.Difference( updates ); 
 | 
     
 | 
    // Traverse the set of UnitCalendarElement to be deleted 
 | 
    // Only delete UnitCalendarElement that is not manually configured or the imported instance should overwrite manual configuration 
 | 
    traverse( tobedeleteset, Elements, ele, not ele.IsManuallyConfigured() or isoverwitemanualconfig) 
 | 
    { 
 | 
      ele.Delete(); 
 | 
    } 
 | 
  *] 
 | 
} 
 |