...
Блок кода |
---|
@Override
public AssistantResponse showAction( AssistantRequest assistantRequest )
throws BGException, BGMessageException
{
this.assistantRequest = assistantRequest;
assistantResponse.addFieldData( "combobox", new AssistantKeyValue[] { new AssistantKeyValue( "key1", "value1" ), new AssistantKeyValue( "key2", "value2" ) } );
assistantResponse.addFieldData( "list", new AssistantKeyValue[] { new AssistantKeyValue( "key1", "value1" ), new AssistantKeyValue( "key2", "value2" ) } );
assistantResponse.addFieldData( "date", new AssistantKeyValue[] { new AssistantKeyValue( "date", "01.01.2020" ) } );
assistantResponse.addFieldData( "period", new AssistantKeyValue[] { new AssistantKeyValue( "dateFrom", "01.01.2020" ), new AssistantKeyValue( "dateTo", "31.12.2020" ) } );
assistantResponse.addFieldData( "hidden", "значение" );
return assistantResponse;
}
|