This commit is contained in:
2021-06-24 22:47:09 +00:00
parent b7c69cb8cf
commit 600fc09b39
4 changed files with 21 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ namespace AyaNova.Models
DataListSelectedProcessingOptions d = new DataListSelectedProcessingOptions(selectedRequest, DataList, SavedView, SavedFilter, userId, userRoles);
return await AyaNova.DataList.DataListFetcher.GetIdListResponseAsync(ct, d, DataList, userRoles, log, userId);
return await AyaNova.DataList.DataListFetcher.GetIdListResponseAsync(ct, d, DataList, userRoles, log, userId, selectedRequest.ReportDesignerSample);
}

View File

@@ -8,6 +8,7 @@ namespace AyaNova.Models
public AyaType AType { get; set; }
public long[] SelectedRowIds { get; set; }
public bool IncludeWoItemDescendants {get;set;}
public bool ReportDesignerSample {get;set;}//set if for report designer to limit rows returned to a sensible limit
}
}