| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292 | 
							- using com.sun.tools.doclets.formats.html;
 
- using Comal.Classes;
 
- using InABox.Clients;
 
- using InABox.Core;
 
- using InABox.DynamicGrid;
 
- using InABox.Reports;
 
- using InABox.Reports.Common;
 
- using InABox.Scripting;
 
- using InABox.WPF;
 
- using PRSDesktop.Configuration;
 
- using PRSDesktop.Forms;
 
- using PRSDesktop.WidgetGroups;
 
- using Syncfusion.UI.Xaml.Grid;
 
- using Syncfusion.UI.Xaml.Grid.Converter;
 
- using Syncfusion.Windows.Shared;
 
- using Syncfusion.XlsIO;
 
- using System;
 
- using System.Collections;
 
- using System.Collections.Generic;
 
- using System.Data;
 
- using System.Diagnostics;
 
- using System.Diagnostics.CodeAnalysis;
 
- using System.Linq;
 
- using System.Linq.Expressions;
 
- using System.Reflection;
 
- using System.Text;
 
- using System.Text.RegularExpressions;
 
- using System.Threading;
 
- using System.Threading.Tasks;
 
- using System.Windows;
 
- using System.Windows.Controls;
 
- using System.Windows.Data;
 
- using System.Windows.Documents;
 
- using System.Windows.Input;
 
- using System.Windows.Media;
 
- using System.Windows.Media.Imaging;
 
- using System.Windows.Navigation;
 
- using System.Windows.Shapes;
 
- using SelectionChangedEventArgs = System.Windows.Controls.SelectionChangedEventArgs;
 
- namespace PRSDesktop
 
- {
 
-     public enum DateFilterType
 
-     {
 
-         Today,
 
-         Yesterday,
 
-         Week,
 
-         SevenDays,
 
-         Month,
 
-         ThirtyDays,
 
-         Year,
 
-         TwelveMonths,
 
-         Custom
 
-     }
 
-     public class DFFilter : BaseObject
 
-     {
 
-         [EditorSequence(1)]
 
-         [TextBoxEditor]
 
-         public string Name { get; set; }
 
-         [EditorSequence(2)]
 
-         [FilterEditor]
 
-         public string Filter { get; set; }
 
-         protected override void Init()
 
-         {
 
-             base.Init();
 
-             Name = "";
 
-             Filter = "";
 
-         }
 
-     }
 
-     public class DigitalFormsDashboardProperties : IDashboardProperties
 
-     {
 
-         public bool ShowJobFilter { get; set; } = false;
 
-         public bool ShowDateFilter { get; set; } = true;
 
-         public string? Category { get; set; }
 
-         public Guid SelectedForm { get; set; }
 
-         public Guid JobID { get; set; }
 
-         public DateFilterType DateFilterType { get; set; } = DateFilterType.Today;
 
-         public DateTime FromDate { get; set; }
 
-         public DateTime ToDate { get; set; }
 
-         public Dictionary<string, List<DFFilter>> Filters { get; set; } = new();
 
-     }
 
-     public class DigitalFormsDashboardElement : DashboardElement<DigitalFormsDashboard, Common, DigitalFormsDashboardProperties> { }
 
-     /// <summary>
 
-     /// Interaction logic for DigitalFormsDashboard.xaml
 
-     /// </summary>
 
-     public partial class DigitalFormsDashboard : UserControl, 
 
-         IDashboardWidget<Common, DigitalFormsDashboardProperties>, 
 
-         IRequiresSecurity<CanViewDigitalFormsDashbaord>,
 
-         IHeaderDashboard, IActionsDashboard
 
-     {
 
-         public DigitalFormsDashboardProperties Properties { get; set; }
 
-         private List<DigitalForm> DigitalForms;
 
-         private List<Job> Jobs;
 
-         private Dictionary<string, string> Categories;
 
-         public DashboardHeader Header { get; set; } = new();
 
-         private bool IsQAForm = false;
 
-         private List<QAQuestion> Questions = new();
 
-         private bool IsSetup = false;
 
-         public DigitalFormsDashboard()
 
-         {
 
-             InitializeComponent();
 
-         }
 
-         public void Setup()
 
-         {
 
-             var results = Client.QueryMultiple(
 
-                 new KeyedQueryDef<DigitalForm>(new Filter<DigitalForm>(x => x.Active).IsEqualTo(true)),
 
-                 new KeyedQueryDef<Job>(
 
-                     LookupFactory.DefineFilter<Job>(),
 
-                     new Columns<Job>(x => x.ID)
 
-                         .Add(x => x.JobNumber)
 
-                         .Add(x => x.Name)));
 
-             DigitalForms = results.Get<DigitalForm>().ToList<DigitalForm>();
 
-             var categories = new DigitalFormCategoryLookups(null);
 
-             categories.OnAfterGenerateLookups += (sender, entries) => { entries.Insert(0, new LookupEntry("", "Select Category")); };
 
-             Categories = categories.AsTable("AppliesTo")
 
-                 .ToDictionary("AppliesTo", "Display")
 
-                 .Cast<KeyValuePair<object, string>>()
 
-                 .ToDictionary(x => (x.Key as string)!, x => x.Value);
 
-             Jobs = results.Get<Job>().ToList<Job>();
 
-             Jobs.Insert(0, new Job { ID = Guid.Empty, JobNumber = "ALL", Name = "All Jobs" });
 
-             SetupHeader();
 
-             SetupFilters();
 
-             IsSetup = true;
 
-         }
 
-         #region Header
 
-         private ComboBox CategoryBox;
 
-         private ComboBox FormBox;
 
-         private ComboBox JobBox;
 
-         private ComboBox DateTypeBox;
 
-         private Label FromLabel;
 
-         private DatePicker FromPicker;
 
-         private Label ToLabel;
 
-         private DatePicker ToPicker;
 
-         private Button Print;
 
-         private Button FilterBtn;
 
-         private static Dictionary<DateFilterType, string> FilterTypes = new()
 
-         {
 
-             { DateFilterType.Today,         "Today" },
 
-             { DateFilterType.Yesterday,     "Yesterday" },
 
-             { DateFilterType.Week,          "Week to Date" },
 
-             { DateFilterType.SevenDays,     "Last 7 Days" },
 
-             { DateFilterType.Month,         "Month to Date" },
 
-             { DateFilterType.ThirtyDays,    "Last 30 Days" },
 
-             { DateFilterType.Year,          "Year to Date" },
 
-             { DateFilterType.TwelveMonths,  "Last 12 Months" },
 
-             { DateFilterType.Custom,        "Custom" }
 
-         };
 
-         public void SetupHeader()
 
-         {
 
-             CategoryBox = new ComboBox {
 
-                 Width = 150,
 
-                 VerticalContentAlignment = VerticalAlignment.Center,
 
-                 Margin = new Thickness(0, 0, 5, 0)
 
-             };
 
-             CategoryBox.ItemsSource = Categories;
 
-             CategoryBox.SelectedValue = Properties.Category;
 
-             CategoryBox.SelectedValuePath = "Key";
 
-             CategoryBox.DisplayMemberPath = "Value";
 
-             CategoryBox.SelectionChanged += Category_SelectionChanged;
 
-             FormBox = new ComboBox
 
-             {
 
-                 Width = 250,
 
-                 VerticalContentAlignment = VerticalAlignment.Center,
 
-                 Margin = new Thickness(0, 0, 5, 0),
 
-                 IsEnabled = false
 
-             };
 
-             FormBox.SelectionChanged += FormBox_SelectionChanged;
 
-             FormBox.ItemsSource = new Dictionary<DigitalForm, string> { };
 
-             JobBox = new ComboBox
 
-             {
 
-                 Width = 250,
 
-                 Margin = new Thickness(0, 0, 5, 0),
 
-                 VerticalContentAlignment = VerticalAlignment.Center
 
-             };
 
-             JobBox.ItemsSource = Jobs.ToDictionary(x => x.ID, x => $"{x.JobNumber} : {x.Name}");
 
-             JobBox.SelectedIndex = 0;
 
-             JobBox.SelectedValuePath = "Key";
 
-             JobBox.DisplayMemberPath = "Value";
 
-             JobBox.SelectionChanged += JobBox_SelectionChanged;
 
-             DateTypeBox = new ComboBox
 
-             {
 
-                 Width = 120,
 
-                 VerticalContentAlignment = VerticalAlignment.Center
 
-             };
 
-             DateTypeBox.ItemsSource = FilterTypes;
 
-             DateTypeBox.SelectedValuePath = "Key";
 
-             DateTypeBox.DisplayMemberPath = "Value";
 
-             DateTypeBox.SelectedValue = Properties.DateFilterType;
 
-             DateTypeBox.SelectionChanged += DateTypeBox_SelectionChanged;
 
-             FromLabel = new Label { Content = "From", VerticalContentAlignment = VerticalAlignment.Center, Margin = new Thickness(0, 0, 5, 0) };
 
-             FromPicker = new DatePicker {
 
-                 Width = 100,
 
-                 Background = new SolidColorBrush(Colors.LightYellow),
 
-                 VerticalContentAlignment = VerticalAlignment.Center,
 
-                 FirstDayOfWeek = DayOfWeek.Monday,
 
-                 Margin = new Thickness(0, 0, 5, 0)
 
-             };
 
-             FromPicker.SelectedDateChanged += FromPicker_SelectedDateChanged;
 
-             ToLabel = new Label { Content = "To", VerticalContentAlignment = VerticalAlignment.Center, Margin = new Thickness(0, 0, 5, 0) };
 
-             ToPicker = new DatePicker
 
-             {
 
-                 Width = 100,
 
-                 Background = new SolidColorBrush(Colors.LightYellow),
 
-                 VerticalContentAlignment = VerticalAlignment.Center,
 
-                 FirstDayOfWeek = DayOfWeek.Monday,
 
-                 Margin = new Thickness(0, 0, 5, 0)
 
-             };
 
-             ToPicker.SelectedDateChanged += ToPicker_SelectedDateChanged;
 
-             Print = new Button
 
-             {
 
-                 Width = 25,
 
-                 Height = 25,
 
-                 Content = new Image { Source = PRSDesktop.Resources.printer.AsBitmapImage() }
 
-             };
 
-             Print.Click += Print_Click;
 
-             FilterBtn = new Button
 
-             {
 
-                 Width = 25,
 
-                 Height = 25,
 
-                 Content = new Image { Source = InABox.DynamicGrid.Properties.Resources.filter.AsBitmapImage() },
 
-                 Margin = new Thickness(0, 0, 5, 0)
 
-             };
 
-             FilterBtn.Click += Filter_Click;
 
-             Header.BeginUpdate()
 
-                 .Clear()
 
-                 .Add(CategoryBox)
 
-                 .Add(FormBox)
 
-                 .Add(JobBox)
 
-                 .Add(DateTypeBox)
 
-                 .Add(FromLabel)
 
-                 .Add(FromPicker)
 
-                 .Add(ToLabel)
 
-                 .Add(ToPicker)
 
-                 .AddRight(FilterBtn)
 
-                 .AddRight(Print);
 
-             Header.EndUpdate();
 
-             UpdateCategory(Properties.Category);
 
-         }
 
-         private void Filter_Click(object sender, RoutedEventArgs e)
 
-         {
 
-             var menu = new ContextMenu();
 
-             menu.AddCheckItem<object?>("Show Date Filter", null, ToggleDateFilter, Properties.ShowDateFilter);
 
-             menu.AddCheckItem<object?>("Show Job Filter", null, ToggleJobFilter, Properties.ShowJobFilter);
 
-             menu.AddSeparator();
 
-             if (ParentType is not null)
 
-             {
 
-                 if (Properties.Filters.TryGetValue(ParentType.Name, out var filters))
 
-                 {
 
-                     var i = 0;
 
-                     var items = new List<MenuItem>();
 
-                     foreach (var filter in filters)
 
-                     {
 
-                         items.Add(menu.AddCheckItem(
 
-                             filter.Name,
 
-                             new Tuple<int, string, List<MenuItem>>(i, filter.Filter, items),
 
-                             ExecuteFilter,
 
-                             i == CustomFilterIndex));
 
-                         ++i;
 
-                     }
 
-                 }
 
-                 menu.AddSeparatorIfNeeded();
 
-                 menu.AddItem("Manage Filters", InABox.DynamicGrid.Properties.Resources.filter, ManageFilters_Click);
 
-             }
 
-             menu.IsOpen = true;
 
-         }
 
-         private void Print_Click(object sender, RoutedEventArgs e)
 
-         {
 
-             var menu = new ContextMenu();
 
-             foreach (var report in ReportUtils.LoadReports(SectionName, DataModel(Selection.None)))
 
-             {
 
-                 menu.AddItem(report.Name, PRSDesktop.Resources.printer, report, PrintReport_Click);
 
-             }
 
-             if (Security.IsAllowed<CanDesignReports>())
 
-             {
 
-                 menu.AddSeparatorIfNeeded();
 
-                 menu.AddItem("Manage Reports", PRSDesktop.Resources.printer, ManageReports_Click);
 
-             }
 
-             menu.IsOpen = true;
 
-         }
 
-         private void PrintReport_Click(ReportTemplate obj)
 
-         {
 
-             Selection selection;
 
-             if (obj.SelectedRecords && obj.AllRecords)
 
-                 selection = RecordSelectionDialog.Execute();
 
-             else if (obj.SelectedRecords)
 
-                 selection = Selection.Selected;
 
-             else if (obj.AllRecords)
 
-                 selection = Selection.All;
 
-             else
 
-                 selection = Selection.None;
 
-             ReportUtils.PreviewReport(obj, DataModel(selection), false, Security.IsAllowed<CanDesignReports>());
 
-         }
 
-         private void ManageReports_Click()
 
-         {
 
-             var manager = new ReportManager()
 
-             {
 
-                 DataModel = DataModel(Selection.None),
 
-                 Section = SectionName,
 
-                 Populate = true
 
-             };
 
-             manager.ShowDialog();
 
-         }
 
-         private void Search_KeyUp(object sender, KeyEventArgs e)
 
-         {
 
-             Refresh();
 
-         }
 
-         private void JobBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
 
-         {
 
-             Properties.JobID = (Guid)JobBox.SelectedValue;
 
-             Refresh();
 
-         }
 
-         private void SetDateFilterVisibility(bool visible)
 
-         {
 
-             var visibility = visible ? Visibility.Visible : Visibility.Collapsed;
 
-             FromLabel.Visibility = visibility;
 
-             FromPicker.Visibility = visibility;
 
-             ToLabel.Visibility = visibility;
 
-             ToPicker.Visibility = visibility;
 
-             DateTypeBox.Visibility = visibility;
 
-         }
 
-         private void SetJobFilterVisibility(bool visible)
 
-         {
 
-             var visibility = visible ? Visibility.Visible : Visibility.Collapsed;
 
-             JobBox.Visibility = visibility;
 
-         }
 
-         private void DateTypeBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
 
-         {
 
-             var filterType = (DateFilterType)DateTypeBox.SelectedValue;
 
-             Properties.DateFilterType = filterType;
 
-             if(filterType == DateFilterType.Custom)
 
-             {
 
-                 if (FromPicker.SelectedDate == null || FromPicker.SelectedDate == DateTime.MinValue)
 
-                 {
 
-                     Properties.FromDate = DateTime.Today;
 
-                 }
 
-                 else
 
-                 {
 
-                     Properties.FromDate = FromPicker.SelectedDate.Value;
 
-                 }
 
-                 if (ToPicker.SelectedDate == null || ToPicker.SelectedDate == DateTime.MinValue)
 
-                 {
 
-                     Properties.ToDate = DateTime.Today;
 
-                 }
 
-                 else
 
-                 {
 
-                     Properties.ToDate = ToPicker.SelectedDate.Value;
 
-                 }
 
-             }
 
-             SetupDateFilters();
 
-             Refresh();
 
-         }
 
-         private void FromPicker_SelectedDateChanged(object? sender, SelectionChangedEventArgs e)
 
-         {
 
-             Properties.FromDate = FromPicker.SelectedDate ?? DateTime.Today;
 
-         }
 
-         private void ToPicker_SelectedDateChanged(object? sender, SelectionChangedEventArgs e)
 
-         {
 
-             Properties.ToDate = ToPicker.SelectedDate ?? DateTime.Today;
 
-         }
 
-         private void UpdateCategory(string? category)
 
-         {
 
-             Properties.Category = category;
 
-             SetCategory(Properties.Category);
 
-             var jobLink = FormType is not null ? GetJobLink("", FormType) : "";
 
-             if (string.IsNullOrWhiteSpace(jobLink))
 
-             {
 
-                 var jobID = Properties.JobID;
 
-                 JobBox.SelectedValue = Guid.Empty;
 
-                 JobBox.IsEnabled = false;
 
-                 Properties.JobID = jobID;
 
-             }
 
-             else
 
-             {
 
-                 JobBox.SelectedValue = Properties.JobID;
 
-                 JobBox.IsEnabled = true;
 
-             }
 
-             if (ParentType is null)
 
-             {
 
-                 FormBox.IsEnabled = false;
 
-                 FormBox.ItemsSource = new Dictionary<DigitalForm, string> { };
 
-             }
 
-             else
 
-             {
 
-                 var forms = DigitalForms.Where(x => x.AppliesTo == ParentType.Name).ToList();
 
-                 forms.Insert(0, new DigitalForm { ID = Guid.Empty, Description = "Select Form" });
 
-                 FormBox.ItemsSource = forms;
 
-                 if(Properties.SelectedForm != Guid.Empty && forms.Where(x => x.ID == Properties.SelectedForm).FirstOrDefault() is DigitalForm form)
 
-                 {
 
-                     FormBox.SelectedItem = form;
 
-                 }
 
-                 else
 
-                 {
 
-                     FormBox.SelectedIndex = 0;
 
-                 }
 
-                 FormBox.DisplayMemberPath = "Description";
 
-                 FormBox.IsEnabled = true;
 
-             }
 
-         }
 
-         private void Category_SelectionChanged(object sender, SelectionChangedEventArgs e)
 
-         {
 
-             UpdateCategory((CategoryBox.SelectedValue as string)!);
 
-             Refresh();
 
-         }
 
-         private void FormBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
 
-         {
 
-             Form = FormBox.SelectedValue as DigitalForm;
 
-             Properties.SelectedForm = Form?.ID ?? Guid.Empty;
 
-             Refresh();
 
-         }
 
-         #endregion
 
-         private string SectionName
 
-         {
 
-             get
 
-             {
 
-                 if (Form is null || Form.ID == Guid.Empty)
 
-                     return "Digital Forms";
 
-                 return Form.ID.ToString() ?? "Digital Forms";
 
-             }
 
-         }
 
-         private DataModel DataModel(Selection selection)
 
-         {
 
-             if(FormType is null || Form is null || Form.ID == Guid.Empty)
 
-             {
 
-                 return new AutoDataModel<DigitalForm>(new Filter<DigitalForm>().None());
 
-             }
 
-             IFilter filter;
 
-             switch (selection)
 
-             {
 
-                 case Selection.Selected:
 
-                     var formids = DataGrid.SelectedItems.Select(x => (x as DataRowView)!.Row["ID"]).ToArray();
 
-                     filter = Filter.Create<Entity>(FormType, x => x.ID).InList(formids);
 
-                     break;
 
-                 case Selection.All:
 
-                     filter = Filter.Create(FormType).All();
 
-                     break;
 
-                 case Selection.None:
 
-                 default:
 
-                     filter = Filter.Create(FormType).None();
 
-                     break;
 
-             }
 
-             return (Activator.CreateInstance(typeof(DigitalFormReportDataModel<>)!
 
-                 .MakeGenericType(FormType), new object?[] { filter, Form.ID }) as DataModel)!;
 
-         }
 
-         public void BuildActionsMenu(ContextMenu menu)
 
-         {
 
-             menu.AddItem("Export", InABox.DynamicGrid.Properties.Resources.doc_xls, Export_Click, Form is not null && Form.ID != Guid.Empty);
 
-             var loadingModules = menu.AddItem("Loading Modules...", null, null, false);
 
-             Task.Run(() =>
 
-             {
 
-                 return CustomModuleUtils.LoadCustomModuleThumbnails(SectionName, DataModel(Selection.None));
 
-             }).ContinueWith((task) =>
 
-             {
 
-                 var modules = task.Result;
 
-                 var index = menu.Items.IndexOf(loadingModules);
 
-                 menu.Items.RemoveAt(index);
 
-                 foreach (var (module, image) in modules)
 
-                 {
 
-                     menu.AddItem(module.Name, image, module, ExecuteModule_Click, index: index);
 
-                     ++index;
 
-                 }
 
-             }, TaskScheduler.FromCurrentSynchronizationContext());
 
-             if (Security.IsAllowed<CanCustomiseModules>())
 
-             {
 
-                 menu.AddSeparatorIfNeeded();
 
-                 menu.AddItem("Manage Modules", PRSDesktop.Resources.script, ManageModules_Click);
 
-             }
 
-         }
 
-         private void Export_Click()
 
-         {
 
-             var formName = Regex.Replace(Form?.Description ?? "", "[^ a-zA-Z0-9]", string.Empty);
 
-             var filename = string.Format("{0} - {1} - {2:yyyy-MM-dd} - {3:yyyy-MM-dd}.xlsx", ParentType!.Name, formName, From, To);
 
-             var options = new ExcelExportingOptions();
 
-             options.ExcelVersion = ExcelVersion.Excel2013;
 
-             options.ExportStackedHeaders = true;
 
-             var excelEngine = DataGrid.ExportToExcel(DataGrid.View, options);
 
-             var workBook = excelEngine.Excel.Workbooks[0];
 
-             var sheet = workBook.Worksheets[0];
 
-             sheet.Name = "Summary";
 
-             sheet.UsedRange.AutofitRows();
 
-             sheet.UsedRange.AutofitColumns();
 
-             sheet = workBook.Worksheets.Create("Questions");
 
-             sheet.Move(0);
 
-             var questions = new Client<QAQuestion>().Query(new Filter<QAQuestion>(x => x.Form.ID).IsEqualTo(Form!.ID));
 
-             sheet.Range[1, 1].Text = Form?.Description ?? "";
 
-             sheet.Range[1, 1, 1, 3].Merge();
 
-             var i = 1;
 
-             foreach (var row in questions.Rows)
 
-                 if (!row.Get<QAQuestion, QAAnswer>(x => x.Answer).Equals(QAAnswer.Comment))
 
-                 {
 
-                     sheet.Range[i + 2, 1].Text = string.Format("{0}.", i);
 
-                     sheet.Range[i + 2, 2].Text = string.Format("{0}", row.Get<QAQuestion, string>(x => x.Question));
 
-                     sheet.Range[i + 2, 3].Text = string.Format("[{0}]", row.Get<QAQuestion, string>(x => x.Code));
 
-                     i++;
 
-                 }
 
-             sheet.UsedRange.AutofitRows();
 
-             sheet.UsedRange.AutofitColumns();
 
-             try
 
-             {
 
-                 workBook.SaveAs(filename);
 
-                 var startInfo = new ProcessStartInfo(filename);
 
-                 startInfo.Verb = "open";
 
-                 startInfo.UseShellExecute = true;
 
-                 Process.Start(startInfo);
 
-             }
 
-             catch
 
-             {
 
-                 MessageBox.Show(string.Format("Unable to Save/Launch [{0}]!\n\nIs the file already open?", filename));
 
-             }
 
-         }
 
-         private void ManageFilters_Click()
 
-         {
 
-             var filters = Properties.Filters.GetValueOrDefault(ParentType!.Name) ?? new List<DFFilter>();
 
-             var gridFilters = new DynamicGridFilters();
 
-             gridFilters.AddRange(filters.Select(x => new DynamicGridFilter { Name = x.Name, Filter = x.Filter }));
 
-             var grid = new DynamicGridFilterEditor(gridFilters, FormType!);
 
-             if (grid.ShowDialog() == true)
 
-             {
 
-                 Properties.Filters[ParentType!.Name] = grid.Filters.Select(x => new DFFilter { Name = x.Name, Filter = x.Filter }).ToList();
 
-                 if (CustomFilterIndex != null)
 
-                 {
 
-                     Refresh();
 
-                 }
 
-             }
 
-         }
 
-         private void ExecuteFilter(Tuple<int, string, List<MenuItem>> tag, bool isChecked)
 
-         {
 
-             var (index, filter, items) = tag;
 
-             if (isChecked)
 
-             {
 
-                 var i = 0;
 
-                 foreach (var item in items)
 
-                 {
 
-                     item.IsChecked = i == index;
 
-                     ++i;
 
-                 }
 
-             }
 
-             if (isChecked)
 
-             {
 
-                 CustomFilter = Serialization.Deserialize(typeof(Filter<>).MakeGenericType(FormType!), filter) as IFilter;
 
-                 CustomFilterIndex = index;
 
-                 Refresh();
 
-             }
 
-             else if (index == CustomFilterIndex)
 
-             {
 
-                 CustomFilter = null;
 
-                 CustomFilterIndex = null;
 
-                 Refresh();
 
-             }
 
-         }
 
-         private void ExecuteModule_Click(CustomModule obj)
 
-         {
 
-             if (!string.IsNullOrWhiteSpace(obj.Script))
 
-                 try
 
-                 {
 
-                     Selection selection;
 
-                     if (obj.SelectedRecords && obj.AllRecords)
 
-                         selection = RecordSelectionDialog.Execute();
 
-                     else if (obj.SelectedRecords)
 
-                         selection = Selection.Selected;
 
-                     else if (obj.AllRecords)
 
-                         selection = Selection.All;
 
-                     else
 
-                         selection = Selection.None;
 
-                     var result = ScriptDocument.RunCustomModule(DataModel(selection), new Dictionary<string, object[]>(), obj.Script);
 
-                     if (result)
 
-                         Refresh();
 
-                 }
 
-                 catch (CompileException c)
 
-                 {
 
-                     MessageBox.Show(c.Message);
 
-                 }
 
-                 catch (Exception err)
 
-                 {
 
-                     MessageBox.Show(CoreUtils.FormatException(err));
 
-                 }
 
-             else
 
-                 MessageBox.Show("Unable to load " + obj.Name);
 
-         }
 
-         private void ManageModules_Click()
 
-         {
 
-             var section = SectionName;
 
-             var dataModel = DataModel(Selection.Selected);
 
-             var manager = new CustomModuleManager()
 
-             {
 
-                 Section = section,
 
-                 DataModel = dataModel
 
-             };
 
-             manager.ShowDialog();
 
-         }
 
-         private void ToggleDateFilter(object? tag, bool isChecked)
 
-         {
 
-             Properties.ShowDateFilter = isChecked;
 
-             SetDateFilterVisibility(Properties.ShowDateFilter);
 
-         }
 
-         private void ToggleJobFilter(object? tag, bool isChecked)
 
-         {
 
-             Properties.ShowJobFilter = isChecked;
 
-             SetJobFilterVisibility(Properties.ShowJobFilter);
 
-             Refresh();
 
-         }
 
-         #region Filtering
 
-         private DateTime From { get; set; }
 
-         private DateTime To { get; set; }
 
-         private bool IsEntityForm { get; set; }
 
-         private Type? ParentType { get; set; }
 
-         private Type? FormType { get; set; }
 
-         private DigitalForm? Form { get; set; }
 
-         private IFilter? CustomFilter { get; set; }
 
-         private int? CustomFilterIndex { get; set; }
 
-         private readonly Dictionary<string, string> QuestionCodes = new();
 
-         private static int WeekDay(DateTime date)
 
-         {
 
-             if (date.DayOfWeek == DayOfWeek.Sunday)
 
-                 return 7;
 
-             return (int)date.DayOfWeek - 1;
 
-         }
 
-         private void SetupDateFilters()
 
-         {
 
-             switch (Properties.DateFilterType)
 
-             {
 
-                 case DateFilterType.Today:
 
-                     From = DateTime.Today;
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.Yesterday:
 
-                     From = DateTime.Today.AddDays(-1);
 
-                     To = DateTime.Today.AddDays(-1);
 
-                     break;
 
-                 case DateFilterType.Week:
 
-                     From = DateTime.Today.AddDays(-WeekDay(DateTime.Today));
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.SevenDays:
 
-                     From = DateTime.Today.AddDays(-6);
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.Month:
 
-                     From = new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1);
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.ThirtyDays:
 
-                     From = DateTime.Today.AddDays(-29);
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.Year:
 
-                     From = new DateTime(DateTime.Today.Year, 1, 1);
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.TwelveMonths:
 
-                     From = DateTime.Today.AddYears(-1).AddDays(1);
 
-                     To = DateTime.Today;
 
-                     break;
 
-                 case DateFilterType.Custom:
 
-                     From = Properties.FromDate;
 
-                     To = Properties.ToDate;
 
-                     break;
 
-             }
 
-             DateTypeBox.SelectedValue = Properties.DateFilterType;
 
-             FromPicker.SelectedDate = From;
 
-             ToPicker.SelectedDate = To;
 
-             var enabledPicker = Properties.DateFilterType == DateFilterType.Custom;
 
-             FromPicker.IsEnabled = enabledPicker;
 
-             ToPicker.IsEnabled = enabledPicker;
 
-         }
 
-         private void SetupJobFilter()
 
-         {
 
-             JobBox.SelectedValue = Properties.JobID;
 
-         }
 
-         private void SetupFilters()
 
-         {
 
-             SetupDateFilters();
 
-             SetupJobFilter();
 
-             SetDateFilterVisibility(Properties.ShowDateFilter);
 
-             SetJobFilterVisibility(Properties.ShowJobFilter);
 
-         }
 
-         #region Categories
 
-         private static Dictionary<string, Tuple<Type, Type>>? FormInstanceTypes;
 
-         private static readonly Dictionary<Type, List<Tuple<string, string>>> parentColumns = new()
 
-         {
 
-             { typeof(Kanban), new() { new("Parent.Number", "Task No") } },
 
-             { typeof(Job), new() { new("Parent.JobNumber", "Job No") } },
 
-             { typeof(JobITP), new() { new("Parent.Code", "Code") } },
 
-             { typeof(Assignment), new() { new("Parent.Number", "Ass. No") } },
 
-             { typeof(TimeSheet), new() { } },
 
-             { typeof(LeaveRequest), new() { } },
 
-             { typeof(Employee), new() { new("Parent.Code", "Employee") } },
 
-             { typeof(PurchaseOrderItem), new() { new("Parent.PONumber", "PO No") } },
 
-         };
 
-         private static bool CategoryToType(string category, [NotNullWhen(true)] out Type? formType, [NotNullWhen(true)] out Type? parentType)
 
-         {
 
-             FormInstanceTypes ??= CoreUtils.TypeList(
 
-                 AppDomain.CurrentDomain.GetAssemblies(),
 
-                 x => !x.IsAbstract && x.GetInterfaces().Contains(typeof(IDigitalFormInstance))
 
-             ).Select(x =>
 
-             {
 
-                 var inter = x.GetInterfaces()
 
-                     .Where(x => x.IsGenericType && x.GetGenericTypeDefinition().Equals(typeof(IDigitalFormInstance<>))).FirstOrDefault();
 
-                 if (inter is not null)
 
-                 {
 
-                     var link = inter.GenericTypeArguments[0];
 
-                     var entityLinkDef = link.GetSuperclassDefinition(typeof(EntityLink<>));
 
-                     if (entityLinkDef is not null)
 
-                     {
 
-                         var entityType = entityLinkDef.GenericTypeArguments[0];
 
-                         return new Tuple<string, Type, Type>(entityType.Name, x, entityType);
 
-                     }
 
-                 }
 
-                 return null;
 
-             }).Where(x => x is not null).ToDictionary(x => x!.Item1, x => new Tuple<Type, Type>(x!.Item2, x!.Item3));
 
-             if (!FormInstanceTypes.TryGetValue(category, out var result))
 
-             {
 
-                 formType = null;
 
-                 parentType = null;
 
-                 return false;
 
-             }
 
-             formType = result.Item1;
 
-             parentType = result.Item2;
 
-             return true;
 
-         }
 
-         private void SetCategory(string? category)
 
-         {
 
-             CustomFilter = null;
 
-             CustomFilterIndex = null;
 
-             if (category is null || !CategoryToType(category, out var formType, out var parentType))
 
-             {
 
-                 IsEntityForm = false;
 
-                 ParentType = null;
 
-                 FormType = null;
 
-                 return;
 
-             }
 
-             IsEntityForm = formType.IsSubclassOfRawGeneric(typeof(EntityForm<,>));
 
-             ParentType = parentType;
 
-             FormType = formType;
 
-         }
 
-         #endregion
 
-         private string GetJobLink(string prefix, Type type)
 
-         {
 
-             var props = type.GetProperties().Where(x =>
 
-                 x.PropertyType.BaseType != null && x.PropertyType.BaseType.IsGenericType &&
 
-                 x.PropertyType.BaseType.GetGenericTypeDefinition() == typeof(EntityLink<>));
 
-             foreach (var prop in props)
 
-             {
 
-                 if (prop.PropertyType == typeof(JobLink))
 
-                     return (string.IsNullOrEmpty(prefix) ? "" : prefix + ".") + prop.Name;
 
-                 var result = GetJobLink((string.IsNullOrEmpty(prefix) ? "" : prefix + ".") + prop.Name, prop.PropertyType);
 
-                 if (!string.IsNullOrEmpty(result))
 
-                     return result;
 
-             }
 
-             return "";
 
-         }
 
-         /// <summary>
 
-         /// Find a link from the form type to an associated <see cref="Job"/>, allowing us to filter based on jobs.
 
-         /// </summary>
 
-         /// <returns>The property name of the <see cref="JobLink"/>.</returns>
 
-         private string GetJobLink<T>() where T : IDigitalFormInstance
 
-             => GetJobLink("", typeof(T));
 
-         private IKeyedQueryDef GetFormQuery<T>()
 
-             where T : Entity, IRemotable, IPersistent, IDigitalFormInstance, new()
 
-         {
 
-             var sort = LookupFactory.DefineSort<T>();
 
-             var jobLink = GetJobLink<T>();
 
-             var filter = new Filter<T>(x => x.FormCompleted).IsGreaterThanOrEqualTo(From)
 
-                 .And(x => x.FormCompleted).IsLessThan(To.AddDays(1))
 
-                 .And(x => x.Form.ID).IsEqualTo(Form!.ID);
 
-             
 
-             if (Properties.JobID != Guid.Empty && Properties.ShowJobFilter)
 
-             {
 
-                 filter.And(jobLink + ".ID").IsEqualTo(Properties.JobID);
 
-             }
 
-             if (CustomFilter is not null)
 
-             {
 
-                 filter.And(CustomFilter);
 
-             }
 
-             var columns = new Columns<T>(x => x.ID)
 
-                 .Add(x => x.Form.ID)
 
-                 .Add(x => x.FormData)
 
-                 .Add(x => x.FormCompleted)
 
-                 .Add(x => x.FormCompletedBy.UserID)
 
-                 .Add(x => x.Location.Timestamp)
 
-                 .Add(x => x.Location.Latitude)
 
-                 .Add(x => x.Location.Longitude);
 
-             var parentcols = LookupFactory.DefineColumns(ParentType!);
 
-             foreach (var col in parentcols.ColumnNames())
 
-                 columns.Add("Parent." + col);
 
-             if (parentColumns.TryGetValue(ParentType!, out var pColumns))
 
-             {
 
-                 foreach (var (field, name) in pColumns)
 
-                 {
 
-                     columns.Add(field);
 
-                 }
 
-             }
 
-             if (IsEntityForm)
 
-                 columns.Add("Processed");
 
-             if (!string.IsNullOrWhiteSpace(jobLink))
 
-                 columns.Add(jobLink + ".ID");
 
-             return new KeyedQueryDef<T>(filter, columns, sort);
 
-         }
 
-         #endregion
 
-         private void LoadDataIntoGrid(List<DigitalFormVariable> variables, List<QAQuestion> questions, CoreTable formData, List<string> additionalColumns, CoreTable? jobITPs)
 
-         {
 
-             var data = new DataTable();
 
-             data.Columns.Add("ID", typeof(Guid));
 
-             data.Columns.Add("Form_ID", typeof(Guid));
 
-             data.Columns.Add("Parent_ID", typeof(Guid));
 
-             data.Columns.Add("Location_Timestamp", typeof(DateTime));
 
-             data.Columns.Add("Location_Latitude", typeof(double));
 
-             data.Columns.Add("Location_Longitude", typeof(double));
 
-             data.Columns.Add("FormData", typeof(string));
 
-             if (ParentType == typeof(JobITP))
 
-             {
 
-                 data.Columns.Add("Job No", typeof(string));
 
-             }
 
-             if (parentColumns.TryGetValue(ParentType!, out var pColumns))
 
-             {
 
-                 foreach (var (field, name) in pColumns)
 
-                 {
 
-                     data.Columns.Add(name, typeof(string));
 
-                 }
 
-             }
 
-             data.Columns.Add("Description", typeof(string));
 
-             data.Columns.Add("Completed", typeof(DateTime));
 
-             data.Columns.Add("Completed By", typeof(string));
 
-             if (IsEntityForm)
 
-                 data.Columns.Add("Processed", typeof(bool));
 
-             if (variables.Any())
 
-             {
 
-                 foreach (var variable in variables)
 
-                 {
 
-                     var code = variable.Code.Replace("/", " ");
 
-                     QuestionCodes[code] = Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(code.ToLower());
 
-                     try
 
-                     {
 
-                         data.Columns.Add(code, typeof(string));
 
-                     }
 
-                     catch(DuplicateNameException e)
 
-                     {
 
-                         MessageBox.Show($"Error: duplicate variable code {code}");
 
-                     }
 
-                 }
 
-             }
 
-             else if (questions.Any())
 
-             {
 
-                 Questions = questions;
 
-                 Progress.SetMessage("Loading Checks");
 
-                 QAGrid.Clear();
 
-                 QAGrid.LoadChecks(Form!.Description, Questions, new Dictionary<Guid, object>());
 
-                 QAGrid.CollapseMargins();
 
-                 var i = 1;
 
-                 foreach (var question in Questions)
 
-                 {
 
-                     var id = question.ID.ToString();
 
-                     if (!question.Answer.Equals(QAAnswer.Comment))
 
-                     {
 
-                         data.Columns.Add(id, typeof(string));
 
-                         var code = question.Code;
 
-                         QuestionCodes[id] = string.IsNullOrEmpty(code) ? string.Format("{0}.", i) : code;
 
-                         i++;
 
-                     }
 
-                 }
 
-             }
 
-             foreach (var row in formData.Rows)
 
-             {
 
-                 var form = (row.ToObject(FormType!) as IDigitalFormInstance)!;
 
-                 if (!string.IsNullOrWhiteSpace(form.FormData))
 
-                 {
 
-                     var dataRow = data.NewRow();
 
-                     dataRow["ID"] = form.ID;
 
-                     dataRow["Form_ID"] = form.Form.ID;
 
-                     dataRow["Parent_ID"] = form.ParentID();
 
-                     dataRow["Location_Timestamp"] = form.Location.Timestamp;
 
-                     dataRow["Location_Latitude"] = form.Location.Latitude;
 
-                     dataRow["Location_Longitude"] = form.Location.Longitude;
 
-                     dataRow["FormData"] = form.FormData;
 
-                     var desc = new List<string>();
 
-                     foreach (var col in additionalColumns)
 
-                     {
 
-                         var val = row[col];
 
-                         if (val != null && val is not Guid)
 
-                             desc.Add(val.ToString() ?? "");
 
-                     }
 
-                     dataRow["Description"] = string.Join(" : ", desc);
 
-                     dataRow["Completed"] = form.FormCompleted;
 
-                     dataRow["Completed By"] = form.FormCompletedBy.UserID;
 
-                     if (IsEntityForm)
 
-                         dataRow["Processed"] = (bool?)row["Processed"] ?? false;
 
-                     if (ParentType == typeof(JobITP))
 
-                     {
 
-                         var jobITP = jobITPs!.Rows.FirstOrDefault(x => x.Get<JobITP, Guid>(x => x.ID) == form.ParentID());
 
-                         if(jobITP is not null)
 
-                         {
 
-                             var jobID = jobITP.Get<JobITP, Guid>(x => x.Job.ID);
 
-                             dataRow["Job No"] = Jobs.Where(x => x.ID == jobID).FirstOrDefault()?.JobNumber;
 
-                         }
 
-                     }
 
-                     if (pColumns != null)
 
-                     {
 
-                         foreach (var (field, name) in pColumns)
 
-                         {
 
-                             dataRow[name] = row[field]?.ToString();
 
-                         }
 
-                     }
 
-                     //datarow["Job No"] = (String)row[JobLink + ".JobNumber"];
 
-                     var bHasData = false;
 
-                     if (variables.Any())
 
-                     {
 
-                         var dict = Serialization.Deserialize<Dictionary<string, object>>(form.FormData);
 
-                         if(dict is not null)
 
-                         {
 
-                             foreach (var key in dict.Keys)
 
-                             {
 
-                                 var variable = variables.FirstOrDefault(x => string.Equals(key, x.Code));
 
-                                 var type = variable?.FieldType();
 
-                                 if (variable != null)
 
-                                 {
 
-                                     var value = variable.ParseValue(dict[key]);
 
-                                     var format = variable.FormatValue(value);
 
-                                     var sKey = key.Replace("/", " ");
 
-                                     if (data.Columns.Contains(sKey))
 
-                                     {
 
-                                         dataRow[sKey] = format;
 
-                                         bHasData = true;
 
-                                     }
 
-                                 }
 
-                             }
 
-                         }
 
-                     }
 
-                     else
 
-                     {
 
-                         var dict = Serialization.Deserialize<Dictionary<Guid, object>>(form.FormData);
 
-                         if(dict is not null)
 
-                             foreach (var key in dict.Keys)
 
-                                 if (data.Columns.Contains(key.ToString()))
 
-                                 {
 
-                                     dataRow[key.ToString()] = dict[key];
 
-                                     bHasData = true;
 
-                                 }
 
-                     }
 
-                     if (bHasData)
 
-                         data.Rows.Add(dataRow);
 
-                 }
 
-             }
 
-             DataGrid.ItemsSource = data;
 
-             IsQAForm = !variables.Any() && questions.Any();
 
-             QAGrid.Visibility = IsQAForm ? Visibility.Visible : Visibility.Collapsed;
 
-             DataGrid.Visibility = Visibility.Visible;
 
-         }
 
-         private void RefreshData<TForm>()
 
-             where TForm : Entity, IRemotable, IPersistent, IDigitalFormInstance, new()
 
-         {
 
-             var formQuery = GetFormQuery<TForm>();
 
-             var queries = new List<IKeyedQueryDef>()
 
-                 {
 
-                     new KeyedQueryDef<QAQuestion>(new Filter<QAQuestion>(x => x.Form.ID).IsEqualTo(Form!.ID)),
 
-                     new KeyedQueryDef<DigitalFormVariable>(
 
-                         new Filter<DigitalFormVariable>(x => x.Form.ID).IsEqualTo(Form.ID),
 
-                         null,
 
-                         new SortOrder<DigitalFormVariable>(x => x.Sequence)),
 
-                     formQuery
 
-                 };
 
-             if (ParentType == typeof(JobITPForm))
 
-             {
 
-                 queries.Add(new KeyedQueryDef<JobITP>(
 
-                     new Filter<JobITP>(x => x.ID).InQuery((formQuery.Filter as Filter<JobITPForm>)!, x => x.Parent.ID),
 
-                     new Columns<JobITP>(x => x.ID, x => x.Job.JobNumber)));
 
-             }
 
-             var results = Client.QueryMultiple(queries);
 
-             var questions = results.Get<QAQuestion>().ToList<QAQuestion>();
 
-             var variables = results.Get<DigitalFormVariable>().ToList<DigitalFormVariable>();
 
-             var formData = results.Get(formQuery.Key);
 
-             LoadDataIntoGrid(
 
-                 variables, questions,
 
-                 formData,
 
-                 formQuery.Columns!.ColumnNames().Where(x => x != "ID" && x.StartsWith("Parent.")).ToList(),
 
-                 ParentType == typeof(JobITP) ? results.Get<JobITP>() : null);
 
-         }
 
-         public void Refresh()
 
-         {
 
-             if (!IsSetup) return;
 
-             Questions.Clear();
 
-             QAGrid.Clear();
 
-             QAGrid.LoadChecks("", Array.Empty<QAQuestion>(), new Dictionary<Guid, object>());
 
-             DataGrid.ItemsSource = null;
 
-             if (ParentType is null || FormType is null || Form is null || Form.ID == Guid.Empty)
 
-             {
 
-                 QAGrid.Visibility = Visibility.Collapsed;
 
-                 DataGrid.Visibility = Visibility.Collapsed;
 
-                 return;
 
-             }
 
-             var refreshMethod = typeof(DigitalFormsDashboard).GetMethod(nameof(RefreshData), BindingFlags.Instance | BindingFlags.NonPublic)!.MakeGenericMethod(FormType);
 
-             refreshMethod.Invoke(this, Array.Empty<object?>());
 
-         }
 
-         public void Shutdown()
 
-         {
 
-         }
 
-         #region DataGrid Configuration
 
-         private void DataGrid_AutoGeneratingColumn(object sender, Syncfusion.UI.Xaml.Grid.AutoGeneratingColumnArgs e)
 
-         {
 
-             e.Column.TextAlignment = TextAlignment.Center;
 
-             e.Column.HorizontalHeaderContentAlignment = HorizontalAlignment.Center;
 
-             e.Column.ColumnSizer = GridLengthUnitType.None;
 
-             e.Column.ImmediateUpdateColumnFilter = true;
 
-             e.Column.FilterRowCondition = FilterRowCondition.Contains;
 
-             e.Column.FilterRowOptionsVisibility = Visibility.Collapsed;
 
-             var value = (e.Column.ValueBinding as Binding)!;
 
-             if (value.Path.Path.Equals("ID") || value.Path.Path.Equals("Form_ID") || value.Path.Path.Equals("Parent_ID") ||
 
-                 value.Path.Path.Equals("FormData") || value.Path.Path.Equals("Location_Latitude") || value.Path.Path.Equals("Location_Longitude"))
 
-             {
 
-                 e.Cancel = true;
 
-             }
 
-             else if (value.Path.Path.Equals("Location_Timestamp"))
 
-             {
 
-                 e.Column = new GridImageColumn();
 
-                 e.Column.Width = DataGrid.RowHeight;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-                 e.Column.HeaderText = "";
 
-                 e.Column.Padding = new Thickness(4);
 
-                 e.Column.ValueBinding = new Binding
 
-                 {
 
-                     Path = new PropertyPath(value.Path.Path),
 
-                     Converter = new MileStoneImageConverter()
 
-                 };
 
-                 e.Column.MappingName = "Location.Timestamp";
 
-             }
 
-             else if (ParentType is not null && parentColumns.TryGetValue(ParentType, out var pColumns) && pColumns.Any(x => x.Item2.Equals(value.Path.Path)))
 
-             {
 
-                 e.Column.ColumnSizer = GridLengthUnitType.Auto;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-             }
 
-             else if (value.Path.Path.Equals("Job No"))
 
-             {
 
-                 e.Column.Width = 60;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-             }
 
-             else if (value.Path.Path.Equals("Description"))
 
-             {
 
-                 e.Column.TextAlignment = TextAlignment.Left;
 
-                 e.Column.HorizontalHeaderContentAlignment = HorizontalAlignment.Left;
 
-                 e.Column.Width = 450;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-             }
 
-             else if (value.Path.Path.Equals("Completed"))
 
-             {
 
-                 e.Column.Width = 100;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-                 (e.Column as GridDateTimeColumn)!.Pattern = DateTimePattern.CustomPattern;
 
-                 (e.Column as GridDateTimeColumn)!.CustomPattern = "dd MMM yy hh:mm";
 
-             }
 
-             else if (value.Path.Path.Equals("Completed By"))
 
-             {
 
-                 e.Column.Width = 100;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-             }
 
-             else if (value.Path.Path.Equals("Processed"))
 
-             {
 
-                 e.Column.Width = 100;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-             }
 
-             else
 
-             {
 
-                 var data = DataGrid.ItemsSource as DataTable;
 
-                 //int index = data.Columns.IndexOf(e.Column.MappingName) - 2;
 
-                 //Style style = new Style(typeof(GridCell));
 
-                 //e.Column.CellStyle = style;
 
-                 e.Column.Width = 100;
 
-                 e.Column.HeaderStyle = Resources["TemplateHeaderStyle"] as Style;
 
-                 e.Column.HeaderText = QuestionCodes[e.Column.MappingName];
 
-             }
 
-         }
 
-         private Entity? GetEntityForm<T>(Guid id) where T : Entity, IDigitalFormInstance, IRemotable, IPersistent, new()
 
-         {
 
-             var columns = DynamicFormEditWindow.FormColumns<T>();
 
-             return new Client<T>().Query(
 
-                 new Filter<T>(x => x.ID).IsEqualTo(id),
 
-                 columns).Rows.FirstOrDefault()?.ToObject<T>();
 
-         }
 
-         private void DataGrid_CellDoubleTapped(object sender, Syncfusion.UI.Xaml.Grid.GridCellDoubleTappedEventArgs e)
 
-         {
 
-             if (e.RowColumnIndex.RowIndex < 2)
 
-                 return;
 
-             var rowOffset = -2;
 
-             var table = (DataGrid.ItemsSource as DataTable)!;
 
-             var formid = (Guid)table.Rows[e.RowColumnIndex.RowIndex + rowOffset]["Form_ID"];
 
-             var formdata = (string)table.Rows[e.RowColumnIndex.RowIndex + rowOffset]["FormData"];
 
-             var id = (Guid)table.Rows[e.RowColumnIndex.RowIndex + rowOffset]["ID"];
 
-             if (FormType is null) return;
 
-             if (IsQAForm)
 
-             {
 
-                 var values = new Dictionary<Guid, object>();
 
-                 var formData = Serialization.Deserialize<Dictionary<string, object>>(formdata);
 
-                 if(formData is not null)
 
-                 {
 
-                     foreach (var (idStr, value) in formData)
 
-                     {
 
-                         if (Guid.TryParse(idStr, out var codeID))
 
-                         {
 
-                             values[codeID] = value;
 
-                         }
 
-                     }
 
-                 }
 
-                 QAGrid.Clear();
 
-                 QAGrid.LoadChecks(Form!.Description, Questions, values);
 
-                 QAGrid.CollapseMargins();
 
-                 return;
 
-             }
 
-             var entityForm = typeof(DigitalFormsDashboard)
 
-                 .GetMethod(nameof(GetEntityForm), BindingFlags.NonPublic | BindingFlags.Instance)!
 
-                 .MakeGenericMethod(FormType)
 
-                 .Invoke(this, new object[] { id }) as IDigitalFormInstance;
 
-             if (entityForm is not null)
 
-             {
 
-                 if (DynamicFormEditWindow.EditDigitalForm(entityForm, out var dataModel))
 
-                 {
 
-                     dataModel.Update(null);
 
-                     /*typeof(QADashboard)
 
-                         .GetMethod(nameof(SaveEntityForm), System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)!
 
-                         .MakeGenericMethod(formType)
 
-                         .Invoke(this, new object[] { entityForm });*/
 
-                     Refresh();
 
-                 }
 
-             }
 
-         }
 
-         private void DataGrid_CellTapped(object sender, Syncfusion.UI.Xaml.Grid.GridCellTappedEventArgs e)
 
-         {
 
-             if (e.RowColumnIndex.ColumnIndex == 0)
 
-             {
 
-                 var timestamp = (DateTime)(e.Record as DataRowView)!.Row["Location_Timestamp"];
 
-                 var latitude = (double)(e.Record as DataRowView)!.Row["Location_Latitude"];
 
-                 var longitude = (double)(e.Record as DataRowView)!.Row["Location_Longitude"];
 
-                 var form = new MapForm(latitude, longitude, timestamp);
 
-                 form.ShowDialog();
 
-             }
 
-         }
 
-         #endregion
 
-     }
 
- }
 
 
  |