yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
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
45
46
47
48
49
50
Quintiq file version 2.0
#parent: #root
StaticMethod ValidateInput (
  output String feedback_o,
  output String sanitycheckfeedback_o,
  MacroPlan owner,
  String name,
  Group group,
  Boolean checkunique
) declarative remote as Boolean
{
  Description: 'Check unique group name'
  TextBody:
  [*
    feedback_o := '';
    sanitycheckfeedback_o := '';
    
    // Name length limit
    lengthlimit := GlobalParameters_MP::GetLengthOfNames();
    subname := MacroPlan::GetSubstituteName( name );
    instance := Translations::MP_Group_Instance( subname );
    
    // Check if input name is valid
    if( name = '' or  name.Length() > lengthlimit )
    {
      feedback_o := SanityCheckMessage::GetFormattedMessage( instance,
                                                             Translations::MP_Group_ValidateInput_IsNameEmptyOrExceedLengthLimit( lengthlimit ) );
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning();
    }
    // Check if input name is unique
    else if( checkunique
             and exists( owner, Group, g,
                         g <> group,
                         g.Name() = name ) )
    {
      feedback_o := Translations::MP_Group_ValidateInput_IsNotUnique();
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning();
    }
    
    // Add feedback text if any of the preconditions above is violated
    if( feedback_o <> '' )
    {
      gname := MacroPlan::GetSubstituteName( name );
      feedback_o := SanityCheckMessage::GetFormattedMessage( Translations::MP_Group_Instance( gname ),
                                                             feedback_o );
    }
    
    return feedback_o = '';
  *]
}