20240331 质量月报
This commit is contained in:
@@ -79,6 +79,13 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
{
|
||||
this.txtCompleteDate.Text = string.Format("{0:yyyy-MM-dd}", nCRManagement.CompleteDate);
|
||||
}
|
||||
if (nCRManagement.Problem!=null)
|
||||
{
|
||||
this.ddlProblem.SelectedValue = nCRManagement.Problem;
|
||||
}
|
||||
this.txtMeasure.Text = nCRManagement.Measure;
|
||||
|
||||
|
||||
this.txtResponsibleMan.Text = nCRManagement.ResponsibleMan;
|
||||
this.txtImplementationFrontState.Text = nCRManagement.ImplementationFrontState;
|
||||
|
||||
@@ -143,7 +150,8 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
this.drpSendUnit.Readonly = true;
|
||||
this.drpUnitIds.Readonly = true;
|
||||
this.drpUnitWorkIds.Readonly = true;
|
||||
this.drpAudit.Readonly = true;
|
||||
this.drpAudit.Readonly = true;
|
||||
this.ddlProblem.Readonly = true;
|
||||
//this.btnAttach.Enabled = false;
|
||||
|
||||
|
||||
@@ -207,6 +215,15 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
}
|
||||
nCRManagement.NCRCode = this.txtNCRCode.Text.Trim();
|
||||
nCRManagement.Contents = this.txtContents.Text.Trim();
|
||||
|
||||
#region 新增2024-03-29
|
||||
if (this.ddlProblem.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
nCRManagement.Problem = this.ddlProblem.SelectedValue;
|
||||
}
|
||||
nCRManagement.Measure = this.txtMeasure.Text.Trim();
|
||||
#endregion
|
||||
|
||||
if (!string.IsNullOrEmpty(this.txtIssuedDate.Text))
|
||||
{
|
||||
nCRManagement.IssuedDate = Convert.ToDateTime(this.txtIssuedDate.Text);
|
||||
@@ -318,6 +335,14 @@ namespace FineUIPro.Web.CQMS.Comprehensive
|
||||
}
|
||||
nCRManagement.NCRCode = this.txtNCRCode.Text.Trim();
|
||||
nCRManagement.Contents = this.txtContents.Text.Trim();
|
||||
#region 新增2024-03-29
|
||||
if (!string.IsNullOrEmpty(this.ddlProblem.SelectedValue))
|
||||
{
|
||||
nCRManagement.Problem = this.ddlProblem.SelectedValue;
|
||||
}
|
||||
nCRManagement.Measure = this.txtMeasure.Text.Trim();
|
||||
#endregion
|
||||
|
||||
if (!string.IsNullOrEmpty(this.txtIssuedDate.Text))
|
||||
{
|
||||
nCRManagement.IssuedDate = Convert.ToDateTime(this.txtIssuedDate.Text);
|
||||
|
||||
Reference in New Issue
Block a user