20210520
This commit is contained in:
@@ -279,5 +279,19 @@ namespace FineUIPro.Web.PZHGL.GJSX
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
protected string ConvertProgressDetail(object GJSXID)
|
||||
{
|
||||
string detailStr = string.Empty;
|
||||
if (!string.IsNullOrEmpty(GJSXID.ToString()))
|
||||
{
|
||||
Model.GJSX_detail detail = (from x in Funs.DB.GJSX_detail where x.GJSXID == GJSXID.ToString() && x.Progress_detail != null && x.Progress_detail != "" orderby x.Date descending select x).FirstOrDefault();
|
||||
if (detail != null)
|
||||
{
|
||||
detailStr = detail.Progress_detail;
|
||||
}
|
||||
}
|
||||
return detailStr;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user