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
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  FunctionOverride CalcQuantity 
 |  { 
 |    TextBody: 
 |    [* 
 |      value := 0.0;  
 |      pispip := this.AsAggregatedPeriodSupplyForPISPIP(); 
 |       
 |      if( not pispip.IsBase() ) 
 |      { 
 |        // Aggregate, if planning timeunit < this period timeunit 
 |        value := sum( pispip.GetChildrenOfPeriodDimension(), Elements.ProductionSupply, supply, 
 |                      guard( supply.Process_MP() = this.Process_MP(), true ), 
 |                      supply.Quantity() ); 
 |      } 
 |      else 
 |      {     
 |        // Disaggregate, if planning timeunit > this period timeunit 
 |        value := sum( pispip, astype( ProductInStockingPointInPeriodNonPlanningBase ).PlanningPISPIP.ProductionSupply, supply, 
 |                      guard( supply.Process_MP() = this.Process_MP(), true ), 
 |                      supply.Quantity() ); 
 |         
 |        value := value * this.ProductInStockingPointInPeriod().GetPlanningSystemRatio();                    
 |      }                 
 |       
 |      this.Quantity( value ); 
 |    *] 
 |  } 
 |  
  |