chenqinghong
2024-05-07 3ec06a830367465068963156dcc1d8e522571c13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Quintiq file version 2.0
#parent: #root
Method MPSyncOperationInputSet (
  Boolean isoverwritemanualconfig,
  IOOperationInputSets iooperationinputsets
)
{
  Description: 'Synchronization of OperationInputSet for MPSync'
  TextBody:
  [*
    
    existing := selectset( this, Unit.Operation.OperationInputSet, item, true );
    updates := construct( OperationInputSets );
    
    traverse( iooperationinputsets, Elements, io, io.IsValid() )
    {
      inputsetname := io.Name();
      opid := io.OperationID();
      objectinstance := OperationInputSet::FindOperationInputSetTypeIndex( inputsetname, opid );
      operation := Operation::FindOperationTypeIndex( opid ); 
      if( isnull( objectinstance ) )
      {
        if( not isnull( operation ) )
        {
          objectinstance := OperationInputSet::Create( operation,
                                                       inputsetname,
                                                       io.MinQuantity(),
                                                       io.MaxQuantity(),
                                                       true /*isfromdb*/ );
        }
      }
      else if( not objectinstance.IsManuallyConfigured() or isoverwritemanualconfig )
      {
        //perform update here
        objectinstance.Update( inputsetname, io.MinQuantity(), io.MaxQuantity(), true /*isfromdb*/ );
        updates.Add( objectinstance );
      }
      
      if( not isnull( objectinstance ) )
      {
        // Extended method
        objectinstance.CustomUpdate( io, isoverwritemanualconfig );
      }
    }
    
    tobedeleteset := existing.Difference( updates );
    
    traverse( tobedeleteset, Elements, ele, not ele.IsManuallyConfigured() or isoverwritemanualconfig)
    {
      ele.Delete();
    }
  *]
}