|
|
@@ -61,6 +61,7 @@ namespace Dongke.IBOSS.PRD.Client.SystemModule
|
|
|
this.txtKingdeeCode.Text = KingdeeCode;
|
|
|
//产品编码
|
|
|
this.scbGoodsCode.Text = sre.Data.Tables[0].Rows[0]["GOODSCODE"].ToString();
|
|
|
+ this.scbGoodsCode.ValueMember = sre.Data.Tables[0].Rows[0]["GOODSCODE"].ToString();
|
|
|
//商标名称
|
|
|
this.ddlLogoName.SelectedValue = sre.Data.Tables[0].Rows[0]["LOGONAME"].ToString();
|
|
|
//釉料类别
|
|
|
@@ -237,7 +238,7 @@ namespace Dongke.IBOSS.PRD.Client.SystemModule
|
|
|
ClientRequestEntity cre = new ClientRequestEntity();
|
|
|
cre.NameSpace = "F_MST_1301";
|
|
|
cre.Name = "AddKingdeeCode";
|
|
|
- cre.Properties["GOODSCODE"] = this.scbGoodsCode.SearchedValue;
|
|
|
+ cre.Properties["GOODSCODE"] = this.scbGoodsCode.SearchedValue + "";
|
|
|
cre.Properties["GLAZETYPE"] = this.ddlGlazeTypeID.Text;
|
|
|
cre.Properties["LOGONAME"] = this.ddlLogoName.Text;
|
|
|
cre.Properties["KINGDEECODE"] = this.txtKingdeeCode.Text;
|
|
|
@@ -271,7 +272,14 @@ namespace Dongke.IBOSS.PRD.Client.SystemModule
|
|
|
ClientRequestEntity cre = new ClientRequestEntity();
|
|
|
cre.NameSpace = "F_MST_1301";
|
|
|
cre.Name = "AddKingdeeCode";
|
|
|
- cre.Properties["GOODSCODE"] = this.scbGoodsCode.Text;
|
|
|
+ if (this.scbGoodsCode.ValueMember + "" == this.scbGoodsCode.Text + "")
|
|
|
+ {
|
|
|
+ cre.Properties["GOODSCODE"] = this.scbGoodsCode.ValueMember + "";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ cre.Properties["GOODSCODE"] = this.scbGoodsCode.Text + "";
|
|
|
+ }
|
|
|
cre.Properties["GLAZETYPE"] = this.ddlGlazeTypeID.Text;
|
|
|
cre.Properties["LOGONAME"] = this.ddlLogoName.Text;
|
|
|
cre.Properties["KINGDEECODE"] = this.txtKingdeeCode.Text;
|