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
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod ValidateInput ( 
 |    output String feedback_o, 
 |    output String sanitycheckfeedback_o, 
 |    MacroPlan owner, 
 |    Recipe recipe, 
 |    String name, 
 |    String description, 
 |    Boolean checkunique 
 |  ) declarative remote as Boolean 
 |  { 
 |    Description: 'Checks the correctness of input data from Create/Edit dialog.' 
 |    TextBody: 
 |    [* 
 |      // ying ying Nov-05-2014 (created) desmondt (modified) 
 |      // Following new modeling style, easier to switch to new modeling style when its avaiable. 
 |      displayname := MacroPlan::GetSubstituteName( name ); 
 |       
 |      instancetext := Translations::MP_Recipe_Instance( displayname ) 
 |       
 |      isunique := true 
 |       
 |      if( checkunique ) 
 |      { 
 |        isunique := Recipe::GetHasValidUniqueName( owner, recipe, name, instancetext, feedback_o, sanitycheckfeedback_o ); 
 |      } 
 |       
 |      isvalid := Recipe::GetHasValidName( name, instancetext, feedback_o, sanitycheckfeedback_o ) 
 |                 and isunique; 
 |       
 |      return isvalid; 
 |    *] 
 |  } 
 |  
  |