修改施工日志

This commit is contained in:
2023-09-14 10:43:51 +08:00
parent 2b6b7c5d5e
commit c96394016a
11 changed files with 2347 additions and 173 deletions
@@ -48,20 +48,20 @@ namespace FineUIPro.Web.PZHGL.InformationProject
{
this.txtWeather.Text = constructionLog.Weather;
}
if (constructionLog.TemperatureMin != null)
{
this.txtTemperatureMin.Text = constructionLog.TemperatureMin.ToString();
}
if (constructionLog.TemperatureMax != null)
{
this.txtTemperatureMax.Text = constructionLog.TemperatureMax.ToString();
}
//if (constructionLog.TemperatureMin != null)
//{
// this.txtTemperatureMin.Text = constructionLog.TemperatureMin.ToString();
//}
//if (constructionLog.TemperatureMax != null)
//{
// this.txtTemperatureMax.Text = constructionLog.TemperatureMax.ToString();
//}
if (constructionLog.CompileDate != null)
{
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", constructionLog.CompileDate);
}
this.txtMainWork.Text = constructionLog.MainWork;
this.txtMainProblems.Text = constructionLog.MainProblems;
//this.txtMainWork.Text = constructionLog.MainWork;
//this.txtMainProblems.Text = constructionLog.MainProblems;
this.txtRemark.Text = constructionLog.Remark;
}
else