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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Quintiq file version 2.0
#parent: #root
Method MPSyncServiceLevel (
  Boolean isoverwritemanualconfig,
  IOServiceLevels ioservicelevels
)
{
  Description: 'Synchronization of ServiceLevel for MPSync'
  TextBody:
  [*
    // Select a set of existing ServiceLevel
    existing := selectset( this, ServiceLevel, item, true );
    updates := construct( ServiceLevels );
    
    // Traverse the new set of valid ServiceLevel
    traverse( ioservicelevels , Elements, io, io.IsValid() )
    {
      id := io.ID();
      productid := io.ProductID();
      spid := io.StockingPointID();
    
      // Find existing ServiceLevel
      objectinstance := ServiceLevel::FindServiceLevelTypeIndex( id );
    
      // Find existing Product_MP
      product := Product_MP::FindProductTypeIndex( productid );
      // Find existing StockingPoint_MP
      stockingpoint := StockingPoint_MP::FindStockingPointTypeIndex( spid );
      // Find existing SalesSegment_MP
      salessegment := SalesSegment_MP::FindSalesSegmentTypeIndex( io.SalesSegmentName() );
      
      // Check if there's valid Product_MP and StockingPoint_MP
      if( not isnull( product ) 
          or not isnull( stockingpoint ) )
      {
        // If no existing ServiceLevel is found, create one
        if( isnull( objectinstance ) )
        {
          objectinstance := ServiceLevel::Create( this,
                                                  id,
                                                  io.IsEnabled(),
                                                  io.Name(),
                                                  product,
                                                  stockingpoint,
                                                  salessegment,
                                                  io.TargetPercentage(),
                                                  io.Start(),
                                                  io.End(), 
                                                  io.IsUsedForSafetyStockCalculation(),
                                                  io.IsUsedForPlanningFulfillment(),
                                                  true )
        }
        // Else if the ServiceLevel is not manually configured or the imported instance should overwrite manual configuration,
        // update the existing ServiceLevel
        else if( not objectinstance.IsManuallyConfigured() or isoverwritemanualconfig )
        {
          // Update ServiceLevel
          objectinstance.Update( io.IsEnabled(),
                                 io.Name(),
                                 product,
                                 stockingpoint,
                                 salessegment,
                                 io.TargetPercentage(),
                                 io.Start(),
                                 io.End(),
                                 io.IsUsedForSafetyStockCalculation(),
                                 io.IsUsedForPlanningFulfillment(),
                                 true );
          updates.Add( objectinstance );
        }
        
        if( not isnull( objectinstance ) )
        {
          objectinstance.CustomUpdate( io, isoverwritemanualconfig );  
        }
      }
    }
    
    // Get the set of old ServiceLevel to be deleted
    tobedeleteset := existing.Difference( updates );
    
    // Traverse the set of ServiceLevel to be deleted
    // Only delete ServiceLevel that is not manually configured or the imported instance should overwrite manual configuration
    traverse( tobedeleteset, Elements, ele,
              not ele.IsManuallyConfigured() or isoverwritemanualconfig )
    {
      ele.Delete();
    }
  *]
}