1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method GetStockingPoints ( 
 |    const MacroPlan macro_plan 
 |  ) const as constcontent owning StockingPoint_MPs 
 |  { 
 |    TextBody: 
 |    [* 
 |      // DWE2 Dec-29-2016 (created) 
 |      sps := construct( StockingPoint_MPs, constcontent ); 
 |       
 |      traverse( this, BookmarkStockingPointElement, e ) 
 |      { 
 |        sp := macro_plan.GetStockingPointConst( e.StockingPointID() ); 
 |         
 |        if( not isnull( sp ) ) 
 |        { 
 |          sps.Add( sp ); 
 |        } 
 |      } 
 |       
 |      return &sps; 
 |    *] 
 |  } 
 |  
  |