admin
2025-01-22 7e31442f0e9b07764e9c6a9680d3d4aeba5fe1de
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
54
55
56
57
58
59
60
61
62
63
64
Quintiq file version 2.0
#parent: #root
Method MPSyncPostponementSpecification (
  Boolean isoverwritemanualconfig,
  IOPostponementSpecifications iopostponementspecifications
)
{
  Description: 'Synchronization of PostponementSpecification for MPSync'
  TextBody:
  [*
    // Select a set of existing PostponementSpecification
    existing := selectset( this, SalesSegment_MP.PostponementSpecification, ps, true );
    updates := construct( PostponementSpecifications );
    
    // Traverse the new set of valid PostponementSpecification
    traverse( iopostponementspecifications, Elements, io, io.IsValid() )
    {
      // Find existing PostponementSpecification
      objectinstance := PostponementSpecification::FindPostponementSpecificationTypeIndex( io.SalesSegmentName() );
      // Find existing SalesSegment_MP
      salessegment := SalesSegment_MP::FindSalesSegmentTypeIndex( io.SalesSegmentName() );
      
      // Check if SalesSegment_MP is found
      if( not isnull( salessegment ) )
      {
        // If no existing PostponementSpecification is found, create one
        if( isnull( objectinstance ) )
        {
          objectinstance := PostponementSpecification::Create( salessegment,
                                                               io.HorizonTimeUnit(),
                                                               io.HorizonNrOfTimeUnit(),
                                                               io.MaxTimeUnit(),
                                                               io.MaxNrOfTimeUnit(),
                                                               true
                                                              );
        }
        // Else, update PostponementSpecification
        else
        {
          // Update PostponementSpecification
          objectinstance.Update( salessegment,
                                 io.HorizonTimeUnit(),
                                 io.HorizonNrOfTimeUnit(),
                                 io.MaxTimeUnit(),
                                 io.MaxNrOfTimeUnit(),
                                 true
                                );
        }
        objectinstance.CustomUpdate( io, isoverwritemanualconfig );
        updates.Add( objectinstance );
      }
    }
    
    // Get the set of old PostponementSpecification to be deleted
    tobedeleteset := existing.Difference( updates );
    
    // Traverse the set of PostponementSpecification to be deleted
    // Only delete PostponementSpecification that is not manually configured or the imported instance should overwrite manual configuration
    traverse( tobedeleteset, Elements, ele, not ele.IsManuallyConfigured() or isoverwritemanualconfig)
    {
      ele.Delete();
    }
  *]
}