1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method UpdateOptimizerStatusAndRemark ( 
 |    String status, 
 |    String additionalremark, 
 |    String uifeedbacks 
 |  ) 
 |  { 
 |    Description: 'A method to set the current status and remark of the optimizer' 
 |    TextBody: 
 |    [* 
 |      // soh yee Sep-16-2014 (created) 
 |      info('----------------------------------------------- status:', status ) 
 |      this.OptimizerStatus( status ); 
 |      this.OptimizerRemark( additionalremark ); 
 |      this.RunUIfeedbacks ( uifeedbacks );  
 |      this.OptimizerLastRunDateTime( DateTime::Now().AsQUILL() ); 
 |    *] 
 |  } 
 |  
  |