admin
2025-01-22 7e31442f0e9b07764e9c6a9680d3d4aeba5fe1de
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
Quintiq file version 2.0
#parent: #root
StaticMethod FindOrCreate (TG_UIComponent owner, Key responsekey, String identifier, 
  String body, String precondition, String type, 
  Boolean isenabled, String menutext, Boolean menuopensdialog, 
  String dialogdatabinding) as TG_UIResponse
{
  TextBody:
  [*
    uiresponse := select( owner, TG_UIResponse, response, response.Identifier() = identifier );
    
    if( isnull( uiresponse ) )
    {
      uiresponse := owner.TG_UIResponse( relnew,
                                         Identifier := identifier );
    }
    
    uiresponse.ResponseKey( responsekey );
    uiresponse.IsEnabled( isenabled );
    uiresponse.Body( body );
    uiresponse.Precondition( precondition );
    uiresponse.Type( type );
    uiresponse.MenuText( TG_TestGenerator::ConvertToIdentiferCamelCase( menutext ) );
    uiresponse.MenuOpensDialog( menuopensdialog );
    uiresponse.DialogDataBinding( dialogdatabinding );
    
    return uiresponse;
  *]
}