chenqinghong
2024-05-07 3ec06a830367465068963156dcc1d8e522571c13
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
51
52
53
54
55
56
57
58
Quintiq file version 2.0
#parent: #root
Method GetValueRepresentation (
  NamedValue nv
) as String id:Method_FormSettings_GetValueRepresentation
{
  #keys: '[139544.1.1263145612]'
  Body:
  [*
    value := nv.GetValue();
    
    value_repr := '';
    
    
    if( value.istype( BinaryValue ) )
    {
      value_repr := [String] value.astype( BinaryValue );
    }
    else if( value.istype( Boolean ) )
    {
      value_repr := [String] value.astype( Boolean );
    }
    else if( value.istype( Char ) )
    {
      value_repr := [String] value.astype( Char );
    }
    else if( value.istype( Date ) )
    {
      value_repr := [String] value.astype( Date );
    }
    else if( value.istype( DateTime ) )
    {
      value_repr := [String] value.astype( DateTime );
    }
    else if( value.istype( Duration ) )
    {
      value_repr := [String] value.astype( Duration );
    }
    else if( value.istype( Key ) )
    {
      value_repr := [String] value.astype( Key );
    }
    else if( value.istype( Number ) )
    {
      value_repr := [String] value.astype( Number );
    }
    else if( value.istype( Real ) )
    {
      value_repr := [String] value.astype( Real );
    }
    else if( value.istype( String ) )
    {
      value_repr := [String] value.astype( String );
    }
    
    return value_repr;
  *]
}