1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod Test1 ( 
 |    MacroPlan macroPlan, 
 |    GlobalOTDTable globalOTDTable, 
 |    CapacityAllocationResultsRuleConfigurations capacityAllocationResultsRuleConfigurations 
 |  ) 
 |  { 
 |    TextBody: 
 |    [* 
 |      traverse ( capacityAllocationResultsRuleConfigurations, Elements, carrc ) { 
 |        pisp := select( macroPlan, Product_MP.ProductInStockingPoint_MP, tempPISP, tempPISP.ProductID() = carrc.ModuleMaterialCode() and 
 |                                                                         tempPISP.StockingPointID() = carrc.StockingPointID() ); 
 |        traverse ( pisp, ProductInStockingPointInPeriodPlanning.astype( ProductInStockingPointInPeriodPlanningLeaf ).Supply_MP, smp,  
 |                   /*smp.ProductInStockingPointInPeriodPlanning().Start().Date() = Date::Construct( 2020, 4, 7 ) and*/ 
 |                   smp.Quantity() > 0 ) {                                                                   
 |          CapacityAllocationResults::IterativeGeneration3( macroPlan, globalOTDTable, smp, smp, 1, smp.Quantity(), carrc ); 
 |          info( "=======================================================>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" ); 
 |        } 
 |      } 
 |    *] 
 |  } 
 |  
  |