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
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method RefreshLaneLegs 
 |  { 
 |    Description: 'Recreate the lane legs that are missing during import from excel' 
 |    TextBody: 
 |    [* 
 |      // Deletes any lane leg that does not have origin or destination 
 |      traverse( this, LaneLeg, leg ) 
 |      { 
 |        if( isnull( leg.AsOriginStockingPointLeg() ) or isnull( leg.AsDestinationStockingPointLeg() ) ) 
 |        { 
 |          leg.Delete(); 
 |        } 
 |      } 
 |       
 |      // Re-create missing LaneLegs for each origin and destination stocking points combination 
 |      traverse( this, Origin, ospil ) 
 |      { 
 |        traverse( this, Destination, dspil ) 
 |        { 
 |          if( ospil <> dspil 
 |              and isnull( LaneLeg::FindLaneLegTypeIndex( this.ID(), ospil.StockingPointID(), dspil.StockingPointID() ) ) ) 
 |          { 
 |            LaneLeg::Create( this, 
 |                             ospil, 
 |                             dspil, 
 |                             this.IsEnabled(), 
 |                             this.Start(), 
 |                             this.End(), 
 |                             false, // HasUserLeadTime 
 |                             this.LeadTime(), 
 |                             false, // HasUserStandardDeviationLeadTime 
 |                             this.StandardDeviationLeadTime(), 
 |                             this.CO2Emission() ); 
 |          } 
 |        } 
 |      } 
 |    *] 
 |  } 
 |  
  |