现场质量问题台账
This commit is contained in:
@@ -83,6 +83,11 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
string[] strs = nCRManagement.Problem.Split(',');
|
||||
this.ddlProblem.SelectedValueArray = strs;
|
||||
}
|
||||
if (nCRManagement.Source != null)
|
||||
{
|
||||
this.ddlSource.SelectedValue = nCRManagement.Source;
|
||||
}
|
||||
this.txtProgressStatus.Text = nCRManagement.ProgressStatus;
|
||||
this.txtMeasure.Text = nCRManagement.Measure;
|
||||
this.txtRemarkCode.Text = nCRManagement.RemarkCode.HasValue ? nCRManagement.RemarkCode.ToString() : "";
|
||||
|
||||
@@ -172,7 +177,10 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
this.drpUnitWorkIds.Readonly = true;
|
||||
//this.drpAudit.Readonly = true;
|
||||
this.ddlProblem.Readonly = true;
|
||||
this.ddlSource.Readonly = true;
|
||||
this.txtProgressStatus.Readonly = true;
|
||||
//this.btnAttach.Enabled = false;
|
||||
this.txtMeasure.Readonly = true;
|
||||
this.txtRemarkCode.Readonly = true;
|
||||
this.drpSupervisor.Readonly = true;
|
||||
}
|
||||
@@ -263,6 +271,8 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
nCRManagement.Measure = this.txtMeasure.Text.Trim();
|
||||
#endregion
|
||||
|
||||
nCRManagement.Source = this.ddlSource.SelectedValue;
|
||||
nCRManagement.ProgressStatus = this.txtProgressStatus.Text.Trim();
|
||||
if (!string.IsNullOrEmpty(this.txtIssuedDate.Text))
|
||||
{
|
||||
nCRManagement.IssuedDate = Convert.ToDateTime(this.txtIssuedDate.Text);
|
||||
|
||||
Reference in New Issue
Block a user