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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod CreateUpdate ( 
 |    ProductInStockingPoint_MPs owners, 
 |    InventoryValueAndCosts inventoryCosts_i, 
 |    Account_MP account, 
 |    String costDriver, 
 |    Date start, 
 |    String timeUnit, 
 |    Number lengthOfTime, 
 |    Boolean isBatchEditCost, 
 |    Real cost, 
 |    Boolean isFromDB 
 |  ) as owning InventoryValueAndCosts 
 |  { 
 |    TextBody: 
 |    [* 
 |      // Check create 
 |      isCreate := inventoryCosts_i.Size() = 0; 
 |      inventoryCosts := inventoryCosts_i.Copy(); 
 |      if( isCreate ) 
 |      { 
 |        inventoryCosts := InventoryValueAndCost::Create( owners, 
 |                                                         account, 
 |                                                         costDriver, 
 |                                                         start, 
 |                                                         cost, 
 |                                                         isFromDB ); 
 |      } 
 |      else 
 |      { 
 |        InventoryValueAndCost::Update( owners, 
 |                                       &inventoryCosts, 
 |                                       account, 
 |                                       costDriver, 
 |                                       start, 
 |                                       timeUnit, // time unit & lrngth of time is not used in Inv cost 
 |                                       lengthOfTime, 
 |                                       isBatchEditCost, cost, 
 |                                       isFromDB ); 
 |      } 
 |      return &inventoryCosts 
 |    *] 
 |  } 
 |  
  |