|
|
@@ -127,14 +127,16 @@ namespace Dongke.IBOSS.PRD.Client.ReportModule
|
|
|
/// <param name="e"></param>
|
|
|
private void tsbtnClearCondition_Click(object sender, EventArgs e)
|
|
|
{
|
|
|
- this.txtGoodsCode.Text = string.Empty;
|
|
|
- this.txtGroutingUserCode.Text = string.Empty;
|
|
|
+ this.txtGoodsCode.ClearValue();
|
|
|
+ this.txtGroutingUserCode.ClearControl();
|
|
|
this.txtSemiCheckDateTimeStart.Value = DateTime.Now.Date;
|
|
|
this.txtSemiCheckDateTimeEnd.Value = this.txtSemiCheckDateTimeStart.Value.AddDays(1).AddSeconds(-1);
|
|
|
|
|
|
- this.txtSemiCheckUserCode.Text = string.Empty;
|
|
|
- this.txtDefectCode.Text = string.Empty;
|
|
|
+ this.txtSemiCheckUserCode.ClearControl();
|
|
|
+ this.txtDefectCode.ClearControl();
|
|
|
this.dkSemiCheckDefectPositionSearchBox1.ClearControl();
|
|
|
+ this.scbGoodsType.ClearValue();
|
|
|
+ this.txtGoodsCode.ClearValue();
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
@@ -176,7 +178,7 @@ namespace Dongke.IBOSS.PRD.Client.ReportModule
|
|
|
cre.Properties["SemireWorkTimeBegin"] = this.txtSemiCheckDateTimeStart.Value;
|
|
|
cre.Properties["SemireWorkTimeEnd"] = this.txtSemiCheckDateTimeEnd.Value.AddSeconds(1);
|
|
|
// 产品编码 GOODSCODE
|
|
|
- cre.Properties["GOODSCODE"] = this.txtGoodsCode.Text.Trim();
|
|
|
+ cre.Properties["GOODSCODE"] = this.txtGoodsCode.CheckedValue;
|
|
|
// 成型工号 GROUTINGUSERCODE
|
|
|
// xuwei modify 2019-11-13
|
|
|
//cre.Properties["GROUTINGUSERCODE"] = this.txtGroutingUserCode.Text.Trim();
|
|
|
@@ -192,7 +194,7 @@ namespace Dongke.IBOSS.PRD.Client.ReportModule
|
|
|
cre.Properties["defectpositionIDS"] = dkSemiCheckDefectPositionSearchBox1.DefectPositionIDS;
|
|
|
// 缺陷名称 scd.defectname
|
|
|
//cre.Properties["defectname"] = this.txtDefectCode.Text.Trim();
|
|
|
- cre.Properties["defectcode"] = this.txtDefectCode.DefectFineCode;
|
|
|
+ cre.Properties["defectcode"] = this.txtDefectCode.Text;
|
|
|
|
|
|
//产品类型 xuwei add 2019-11-29
|
|
|
//cre.Properties["GOODSTYPEID"] = this.scbGoodsType.SearchedValue;
|