Skip to content

Commit

Permalink
feat: Add is_multi_selection process flag on tab process. (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinBetanc0urt authored Oct 16, 2024
1 parent 71c9ad4 commit d060df5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,12 @@ private Map<String, Object> parseProcess(MProcess process) {
detail.put("help", process.get_Translation(I_AD_Process.COLUMNNAME_Help, getLanguage()));
detail.put("is_report", process.isReport());

boolean isMultiSelection = false;
if (process.get_ColumnIndex("SP003_IsMultiSelection") >= 0) {
isMultiSelection = process.get_ValueAsBoolean("SP003_IsMultiSelection");
}
detail.put("is_multi_selection", isMultiSelection);

// Linked
detail.put("browser_id", process.getAD_Browse_ID());
detail.put("form_id", process.getAD_Form_ID());
Expand Down

0 comments on commit d060df5

Please sign in to comment.