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 
 |  Method Update ( 
 |    DateTime transitionstart, 
 |    DateTime transitionend 
 |  ) 
 |  { 
 |    Description: 'Update Transition' 
 |    TextBody: 
 |    [* 
 |      fc := this.FromCampaign(); 
 |      tc := this.ToCampaign(); 
 |       
 |      fc.Update( fc.Unit(), 
 |                 fc.EarliestStart(), 
 |                 fc.Duration(), 
 |                 fc.SequenceNumberForExcel(), 
 |                 fc.MinQuantity(), 
 |                 fc.MaxQuantity(), 
 |                 fc.MinDuration(), 
 |                 fc.MaxDuration(), 
 |                 fc.CampaignTypeName(), 
 |                 fc.CampaignID(), 
 |                 fc.Comment(), 
 |                 fc.HasInputMaxQuantity(), 
 |                 fc.HasInputMaxDuration(), 
 |                 false ); 
 |       
 |      tc.Update( tc.Unit(), 
 |                 tc.EarliestStart(), 
 |                 tc.Duration(), 
 |                 tc.SequenceNumberForExcel(), 
 |                 tc.MinQuantity(), 
 |                 tc.MaxQuantity(), 
 |                 tc.MinDuration(), 
 |                 tc.MaxDuration(), 
 |                 tc.CampaignTypeName(), 
 |                 tc.CampaignID(), 
 |                 tc.Comment(), 
 |                 tc.HasInputMaxQuantity(), 
 |                 tc.HasInputMaxDuration(), 
 |                 false ); 
 |    *] 
 |  } 
 |  
  |