1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method UpdatePlanningTime ( 
 |    Period_MP periodstart, 
 |    Period_MP periodend 
 |  ) 
 |  { 
 |    Description: 'Update method for planning start and end' 
 |    TextBody: 
 |    [* 
 |      // soh yee Mar-10-2014 (created) 
 |      this.PeriodFirstStart( periodstart.Start() ); 
 |      this.PeriodFirstEnd( periodstart.PeriodEnd() ); 
 |      this.PeriodLastStart( periodend.Start() ); 
 |      this.PeriodLastEnd( periodend.PeriodEnd() ); 
 |    *] 
 |  } 
 |  
  |