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 ( 
 |    InventorySupplys owners, 
 |    Account_MP account, 
 |    String costdriver, 
 |    Real cost, 
 |    Boolean isfromdb 
 |  ) as owning AccountCosts 
 |  { 
 |    Description: 'Create static method ( for batch create )' 
 |    TextBody: 
 |    [* 
 |      // Batch create 
 |      accountcost := construct( AccountCosts ); 
 |      traverse( owners, Elements, owner ) 
 |      { 
 |        supplyCost := InventorySupplyCost::Create( owner.MacroPlan().IDHolder().GetInventorySupplyCostID(), 
 |                                                   owner, 
 |                                                   account, 
 |                                                   costdriver, 
 |                                                   owner.Date(), // Date always follow inventory supply date 
 |                                                   cost, 
 |                                                   isfromdb ); 
 |        accountcost.Add( supplyCost ); 
 |      } 
 |      return &accountcost; 
 |    *] 
 |  } 
 |  
  |