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 
 |  StaticMethod Create ( 
 |    OptimizerPuzzle owner, 
 |    Product_MP product, 
 |    Boolean isfromdb 
 |  ) as SubsetProductInOptimizerPuzzle 
 |  { 
 |    TextBody: 
 |    [* 
 |      // Create N-M object subset product that is owned by OptimizerPuzzle and has a relation with Product_MP given in argument 
 |      // This is used to include / exclude in OptimizerPuzzle 
 |       
 |      subsetProduct := SubsetProductInOptimizerPuzzle::FindSubsetProductOptimizerPuzzleTypeIndices( owner.Name(), product.ID() ); 
 |       
 |      if( isnull( subsetProduct ) ) 
 |      { 
 |        // Create SubsetProductInOptimizerPuzzle 
 |        subsetProduct := owner.SubsetProductInOptimizerPuzzle( relnew, 
 |                                                               IsIncluded := true, 
 |                                                               IsUserAction := false, 
 |                                                               ProductID := product.ID(), 
 |                                                               OptimizerPuzzleName := owner.Name(), 
 |                                                               IsManuallyConfigured := isfromdb );                                             
 |      } 
 |       
 |      return subsetProduct; 
 |    *] 
 |  } 
 |  
  |