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 CanMoveOperations ( 
 |    output String feedback_o, 
 |    Operations operations 
 |  ) remote as Boolean 
 |  { 
 |    Description: 'Returns true if it is allowed to drop operations into a routing step.' 
 |    TextBody: 
 |    [* 
 |      // Adhi Feb-19-2016 (created) 
 |      // Reuse precondition of dropping units to a routing step 
 |      units := selectset( operations, Elements.Unit, unit, true ); 
 |       
 |      cancreate := this.CanCreateOperations( feedback_o, units ); 
 |       
 |      return cancreate; 
 |    *] 
 |  } 
 |  
  |