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
45
46
47
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method Update ( 
 |    Product_MP owner, 
 |    StockingPoint_MP stockingpoint, 
 |    Date startdate, 
 |    Real quantity, 
 |    Real price, 
 |    String priorityname, 
 |    String salessegmentname, 
 |    String currencyname, 
 |    String unitofmeasurename, 
 |    Boolean isexcludedfromfulfillmentkpi, 
 |    String customername, 
 |    String customerid, 
 |    String orderid, 
 |    String orderlineid, 
 |    Boolean isfornetting, 
 |    Boolean isfirmed, 
 |    Boolean isfromdb 
 |  ) 
 |  { 
 |    Description: 'Update customer order' 
 |    TextBody: 
 |    [* 
 |      this.Update( owner, 
 |                   stockingpoint, 
 |                   startdate, 
 |                   startdate, 
 |                   quantity, 
 |                   price, 
 |                   priorityname, 
 |                   0.0, 
 |                   salessegmentname, 
 |                   currencyname, 
 |                   unitofmeasurename, 
 |                   isexcludedfromfulfillmentkpi, 
 |                   isfromdb ); 
 |                    
 |      this.CustomerName( customername ); 
 |      this.CustomerID( customerid ); 
 |      this.OrderID( orderid ); 
 |      this.OrderLineID( orderlineid ); 
 |      this.IsEligibleForNetting( isfornetting ); 
 |      this.IsFirmed( isfirmed ); 
 |    *] 
 |  } 
 |  
  |