焊工 入场 离场 日报导入 装置排序
This commit is contained in:
@@ -63,6 +63,7 @@ namespace FineUIPro.Web.ProjectData
|
||||
this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", installation1.EndDate);
|
||||
}
|
||||
this.txtRemark.Text = installation1.Def;
|
||||
this.txtSortIndex.Text = installation1.SortIndex.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -103,6 +104,11 @@ namespace FineUIPro.Web.ProjectData
|
||||
installation.EndDate = Convert.ToDateTime(txtEndDate.Text.Trim());
|
||||
}
|
||||
installation.Def = txtRemark.Text.Trim();
|
||||
if (!string.IsNullOrEmpty(txtSortIndex.Text.Trim()))
|
||||
{
|
||||
installation.SortIndex = int.Parse(txtSortIndex.Text.Trim());
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(id))
|
||||
{
|
||||
installation.InstallationId = SQLHelper.GetNewID(typeof(Model.Project_Installation));
|
||||
|
||||
Reference in New Issue
Block a user