This commit is contained in:
2022-07-11 19:15:37 +00:00
parent f98e0e7807
commit f2d69b7500

View File

@@ -281,13 +281,14 @@ namespace AyaNovaQBI
DataRow row = _GridTable.NewRow();
row["CustomerName"] = z.CustomerName;
row["Serial"] = z.Serial;
row["ServiceDate"] = z.ServiceDate;
if (z.ServiceDate != null)
row["ServiceDate"] = ((DateTime)z.ServiceDate).ToLocalTime();
row["WorkorderStatusName"] = z.WorkorderStatusName;
row["ProjectName"] = z.ProjectName;
row["Color"] = z.Color;
row["CustomerId"] = z.CustomerId;
row["Id"] = z.Id;
row["Linked"]= await util.ScanLinksOK(z.Id, _MisMatches, _PartPriceOverrides);
row["Linked"] = await util.ScanLinksOK(z.Id, _MisMatches, _PartPriceOverrides);
_GridTable.Rows.Add(row);
}