雅琪诺MES智能条码管理系统
zgq
2021-01-20 bd31220be6e75c4f98de5d7a1bca4ffb6a506731
用户信息增加生产资源和工作中心
3个文件已修改
224 ■■■■ 已修改文件
SCM/系统管理/Xt_UserNew.cs 56 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/系统管理/Xt_UserNew.designer.cs 138 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/系统管理/Xt_UserNew.resx 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/ϵͳ¹ÜÀí/Xt_UserNew.cs
@@ -178,7 +178,7 @@
            SCM.ClsXt_ORGANIZATIONS_View oORG = new ClsXt_ORGANIZATIONS_View();
            try
            {
                oDs = oWeb.getDataSetBySQL("select Czybm,Czymc,Explain,HEmpID,HK3UserID,HCloudUserName,HCloudUserPsd,HKeeperID,HKeeper,HSecManagerID,HSecManager,HSellManID,HSellMan,HDeptID,HDept,HWhID,HWHName,HSupID,HSupName,HUSEORGID from Gy_Czygl where Czybm='" + sCzybm + "'", "Gy_Czygl", ref ClsPub.sExeReturnInfo);
                oDs = oWeb.getDataSetBySQL("select Czybm,Czymc,Explain,HEmpID,HK3UserID,HCloudUserName,HCloudUserPsd,HKeeperID,HKeeper,HSecManagerID,HSecManager,HSellManID,HSellMan,HDeptID,HDept,HWhID,HWHName,HSupID,HSupName,HUSEORGID,HGroup,HGroupID,HProc,HProcNo,HSource,HSourceID,HWorkCenter,HWorkCenterID from Gy_Czygl where Czybm='" + sCzybm + "'", "Gy_Czygl", ref ClsPub.sExeReturnInfo);
                if (oDs == null)
                {
                    MessageBox.Show("显示失败!原因:" + ClsPub.sExeReturnInfo);
@@ -234,6 +234,14 @@
                    txtHSupID.Tag = oDs.Tables[0].Rows[0]["HSupID"].ToString().Trim();
                    txtHCloudUserName.Text = oDs.Tables[0].Rows[0]["HCloudUserName"].ToString().Trim();
                    txtHCloudUserPsd.Text = oDs.Tables[0].Rows[0]["HCloudUserPsd"].ToString().Trim();
                    textHGroupID.Text = oDs.Tables[0].Rows[0]["HGroup"].ToString().Trim();
                    textHGroupID.Tag = oDs.Tables[0].Rows[0]["HGroupID"].ToString().Trim();
                    textHProcNo.Text = oDs.Tables[0].Rows[0]["HProc"].ToString().Trim();
                    textHProcNo.Tag = oDs.Tables[0].Rows[0]["HProcNo"].ToString().Trim();
                    textHWorkCenterID.Text = oDs.Tables[0].Rows[0]["HWorkCenter"].ToString().Trim();
                    textHWorkCenterID.Tag = oDs.Tables[0].Rows[0]["HWorkCenterID"].ToString().Trim();
                    textHSourceID.Text = oDs.Tables[0].Rows[0]["HSource"].ToString().Trim();
                    textHSourceID.Tag = oDs.Tables[0].Rows[0]["HSourceID"].ToString().Trim();
                }
            }
            catch (Exception e)
@@ -362,10 +370,14 @@
                    ",HCloudUserName='" + txtHCloudUserName.Text.ToString() + "'" +
                    ",HCloudUserPsd='" + txtHCloudUserPsd.Text.ToString() + "'" +
                    ",HUSEORGID=" + HOrgID.ToString() +
                    ",HGroup=" + textHGroupID.Text.ToString() +
                    ",HGroupID=" + textHGroupID.Tag.ToString() +
                    ",HProc=" + textHProcNo.Text.ToString() +
                    ",HProcNo=" + textHProcNo.Tag.ToString() +
                    ",HGroup='" + textHGroupID.Text.ToString() + "'" +
                    ",HGroupID=" + ClsPub.isLong(textHGroupID.Tag).ToString() +
                    ",HProc='" + textHProcNo.Text.ToString() +"'"+
                    ",HProcNo='" + textHProcNo.Tag.ToString() +"'"+
                    ",HWorkCenter='" + textHWorkCenterID.Text.ToString() + "'" +
                    ",HWorkCenterID=" + ClsPub.isLong(textHWorkCenterID.Tag).ToString() +
                    ",HSource='" + textHSourceID.Text.ToString() + "'" +
                    ",HSourceID=" + ClsPub.isLong(textHSourceID.Tag).ToString() +
                    "where Czybm='" + Czybm + "'", ref DBUtility.ClsPub.sExeReturnInfo);
                //
                oWeb.getRunProc("delete from  System_UserGroupInfo where UserId='" + Czybm + "'", ref DBUtility.ClsPub.sExeReturnInfo);
@@ -733,5 +745,39 @@
                this.textHProcNo.Tag = 0;
            }
        }
        private void cmdHSourceID_Click(object sender, EventArgs e)
        {
            SCM.ClsIF_Source_View oEmp = new SCM.ClsIF_Source_View();
            string DeWhere = "";
            DeWhere = " ";
            if (oEmp.RefreshView(DeWhere))
            {
                this.textHSourceID.Text = oEmp.oModel.HName;
                this.textHSourceID.Tag = oEmp.oModel.HItemID.ToString();
            }
            else
            {
                this.textHSourceID.Text = "";
                this.textHSourceID.Tag = 0;
            }
        }
        private void cmdHWorkCenterID_Click(object sender, EventArgs e)
        {
            SCM.ClsIF_WorkCenter_View oEmp = new SCM.ClsIF_WorkCenter_View();
            string DeWhere = "";
            DeWhere = " ";
            if (oEmp.RefreshView(DeWhere))
            {
                this.textHWorkCenterID.Text = oEmp.oModel.HName;
                this.textHWorkCenterID.Tag = oEmp.oModel.HItemID.ToString();
            }
            else
            {
                this.textHWorkCenterID.Text = "";
                this.textHWorkCenterID.Tag = 0;
            }
        }
    }
}
SCM/ϵͳ¹ÜÀí/Xt_UserNew.designer.cs
@@ -95,6 +95,12 @@
            this.textHProcNo = new System.Windows.Forms.TextBox();
            this.cmdHGroupID = new System.Windows.Forms.Button();
            this.cmdHProcNo = new System.Windows.Forms.Button();
            this.label22 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.textHSourceID = new System.Windows.Forms.TextBox();
            this.textHWorkCenterID = new System.Windows.Forms.TextBox();
            this.cmdHSourceID = new System.Windows.Forms.Button();
            this.cmdHWorkCenterID = new System.Windows.Forms.Button();
            this.groupBox2.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
@@ -139,7 +145,7 @@
            this.cmdHEmpID.BackColor = System.Drawing.Color.Transparent;
            this.cmdHEmpID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHEmpID.Image")));
            this.cmdHEmpID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHEmpID.Location = new System.Drawing.Point(218, 137);
            this.cmdHEmpID.Location = new System.Drawing.Point(218, 131);
            this.cmdHEmpID.Name = "cmdHEmpID";
            this.cmdHEmpID.Size = new System.Drawing.Size(22, 22);
            this.cmdHEmpID.TabIndex = 56;
@@ -150,7 +156,7 @@
            // 
            this.label8.AutoSize = true;
            this.label8.ForeColor = System.Drawing.Color.Black;
            this.label8.Location = new System.Drawing.Point(12, 142);
            this.label8.Location = new System.Drawing.Point(12, 136);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(53, 12);
            this.label8.TabIndex = 54;
@@ -159,7 +165,7 @@
            // txtHEmpID
            // 
            this.txtHEmpID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.txtHEmpID.Location = new System.Drawing.Point(68, 138);
            this.txtHEmpID.Location = new System.Drawing.Point(68, 132);
            this.txtHEmpID.Name = "txtHEmpID";
            this.txtHEmpID.Size = new System.Drawing.Size(145, 21);
            this.txtHEmpID.TabIndex = 55;
@@ -168,7 +174,7 @@
            // 
            // cmdPassWord
            // 
            this.cmdPassWord.Location = new System.Drawing.Point(221, 85);
            this.cmdPassWord.Location = new System.Drawing.Point(221, 81);
            this.cmdPassWord.Name = "cmdPassWord";
            this.cmdPassWord.Size = new System.Drawing.Size(77, 21);
            this.cmdPassWord.TabIndex = 53;
@@ -180,7 +186,7 @@
            // 
            this.lblError.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.lblError.ForeColor = System.Drawing.Color.Red;
            this.lblError.Location = new System.Drawing.Point(219, 50);
            this.lblError.Location = new System.Drawing.Point(219, 62);
            this.lblError.Name = "lblError";
            this.lblError.Size = new System.Drawing.Size(120, 42);
            this.lblError.TabIndex = 52;
@@ -188,7 +194,7 @@
            // 
            // txtExplain
            // 
            this.txtExplain.Location = new System.Drawing.Point(68, 112);
            this.txtExplain.Location = new System.Drawing.Point(68, 107);
            this.txtExplain.Name = "txtExplain";
            this.txtExplain.Size = new System.Drawing.Size(262, 21);
            this.txtExplain.TabIndex = 5;
@@ -196,7 +202,7 @@
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(12, 116);
            this.label5.Location = new System.Drawing.Point(12, 111);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(41, 12);
            this.label5.TabIndex = 51;
@@ -204,7 +210,7 @@
            // 
            // txtCzyyz
            // 
            this.txtCzyyz.Location = new System.Drawing.Point(68, 85);
            this.txtCzyyz.Location = new System.Drawing.Point(68, 82);
            this.txtCzyyz.Name = "txtCzyyz";
            this.txtCzyyz.PasswordChar = '*';
            this.txtCzyyz.Size = new System.Drawing.Size(145, 21);
@@ -213,7 +219,7 @@
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 89);
            this.label4.Location = new System.Drawing.Point(12, 86);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(53, 12);
            this.label4.TabIndex = 44;
@@ -221,7 +227,7 @@
            // 
            // txtCzymm
            // 
            this.txtCzymm.Location = new System.Drawing.Point(68, 58);
            this.txtCzymm.Location = new System.Drawing.Point(68, 57);
            this.txtCzymm.Name = "txtCzymm";
            this.txtCzymm.PasswordChar = '*';
            this.txtCzymm.Size = new System.Drawing.Size(145, 21);
@@ -230,7 +236,7 @@
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 62);
            this.label3.Location = new System.Drawing.Point(12, 61);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(41, 12);
            this.label3.TabIndex = 33;
@@ -278,7 +284,7 @@
            this.groupBox2.Controls.Add(this.cmdLeft);
            this.groupBox2.Controls.Add(this.label7);
            this.groupBox2.Controls.Add(this.label6);
            this.groupBox2.Location = new System.Drawing.Point(12, 277);
            this.groupBox2.Location = new System.Drawing.Point(12, 327);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(355, 162);
            this.groupBox2.TabIndex = 54;
@@ -363,7 +369,7 @@
            // 
            // cmdCancel
            // 
            this.cmdCancel.Location = new System.Drawing.Point(307, 445);
            this.cmdCancel.Location = new System.Drawing.Point(299, 490);
            this.cmdCancel.Name = "cmdCancel";
            this.cmdCancel.Size = new System.Drawing.Size(61, 24);
            this.cmdCancel.TabIndex = 11;
@@ -373,7 +379,7 @@
            // 
            // cmdOK
            // 
            this.cmdOK.Location = new System.Drawing.Point(240, 445);
            this.cmdOK.Location = new System.Drawing.Point(223, 490);
            this.cmdOK.Name = "cmdOK";
            this.cmdOK.Size = new System.Drawing.Size(61, 24);
            this.cmdOK.TabIndex = 10;
@@ -386,7 +392,7 @@
            this.cmdHGroup.BackColor = System.Drawing.Color.Transparent;
            this.cmdHGroup.Image = ((System.Drawing.Image)(resources.GetObject("cmdHGroup.Image")));
            this.cmdHGroup.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHGroup.Location = new System.Drawing.Point(240, 250);
            this.cmdHGroup.Location = new System.Drawing.Point(234, 295);
            this.cmdHGroup.Name = "cmdHGroup";
            this.cmdHGroup.Size = new System.Drawing.Size(22, 22);
            this.cmdHGroup.TabIndex = 58;
@@ -396,7 +402,7 @@
            // txtHGroup
            // 
            this.txtHGroup.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.txtHGroup.Location = new System.Drawing.Point(90, 251);
            this.txtHGroup.Location = new System.Drawing.Point(84, 297);
            this.txtHGroup.Name = "txtHGroup";
            this.txtHGroup.Size = new System.Drawing.Size(145, 21);
            this.txtHGroup.TabIndex = 57;
@@ -406,7 +412,7 @@
            // 
            this.label10.AutoSize = true;
            this.label10.ForeColor = System.Drawing.Color.Black;
            this.label10.Location = new System.Drawing.Point(30, 255);
            this.label10.Location = new System.Drawing.Point(30, 300);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(53, 12);
            this.label10.TabIndex = 59;
@@ -420,12 +426,18 @@
            this.tabControl1.Location = new System.Drawing.Point(12, 10);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(356, 240);
            this.tabControl1.Size = new System.Drawing.Size(356, 281);
            this.tabControl1.TabIndex = 60;
            // 
            // tabPage1
            // 
            this.tabPage1.BackColor = System.Drawing.Color.Transparent;
            this.tabPage1.Controls.Add(this.cmdHWorkCenterID);
            this.tabPage1.Controls.Add(this.cmdHSourceID);
            this.tabPage1.Controls.Add(this.textHWorkCenterID);
            this.tabPage1.Controls.Add(this.textHSourceID);
            this.tabPage1.Controls.Add(this.label23);
            this.tabPage1.Controls.Add(this.label22);
            this.tabPage1.Controls.Add(this.cmdHProcNo);
            this.tabPage1.Controls.Add(this.cmdHGroupID);
            this.tabPage1.Controls.Add(this.textHProcNo);
@@ -450,7 +462,7 @@
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(348, 214);
            this.tabPage1.Size = new System.Drawing.Size(348, 255);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "基本信息";
            this.tabPage1.UseVisualStyleBackColor = true;
@@ -484,7 +496,7 @@
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(348, 210);
            this.tabPage2.Size = new System.Drawing.Size(348, 248);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "对应金蝶信息";
            this.tabPage2.UseVisualStyleBackColor = true;
@@ -709,7 +721,7 @@
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage3.Size = new System.Drawing.Size(348, 210);
            this.tabPage3.Size = new System.Drawing.Size(348, 248);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "CLOUD账号设置";
            this.tabPage3.UseVisualStyleBackColor = true;
@@ -756,7 +768,7 @@
            // 
            this.label19.AutoSize = true;
            this.label19.ForeColor = System.Drawing.Color.Black;
            this.label19.Location = new System.Drawing.Point(12, 167);
            this.label19.Location = new System.Drawing.Point(12, 160);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(53, 12);
            this.label19.TabIndex = 57;
@@ -765,7 +777,7 @@
            // textHGroupID
            // 
            this.textHGroupID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.textHGroupID.Location = new System.Drawing.Point(68, 164);
            this.textHGroupID.Location = new System.Drawing.Point(68, 157);
            this.textHGroupID.Name = "textHGroupID";
            this.textHGroupID.Size = new System.Drawing.Size(145, 21);
            this.textHGroupID.TabIndex = 58;
@@ -775,16 +787,16 @@
            // 
            this.label20.AutoSize = true;
            this.label20.ForeColor = System.Drawing.Color.Black;
            this.label20.Location = new System.Drawing.Point(14, 192);
            this.label20.Location = new System.Drawing.Point(12, 185);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(41, 12);
            this.label20.TabIndex = 59;
            this.label20.Text = "工序号";
            this.label20.Text = "å·¥  åº";
            // 
            // textHProcNo
            // 
            this.textHProcNo.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.textHProcNo.Location = new System.Drawing.Point(68, 189);
            this.textHProcNo.Location = new System.Drawing.Point(68, 182);
            this.textHProcNo.Name = "textHProcNo";
            this.textHProcNo.Size = new System.Drawing.Size(145, 21);
            this.textHProcNo.TabIndex = 60;
@@ -795,7 +807,7 @@
            this.cmdHGroupID.BackColor = System.Drawing.Color.Transparent;
            this.cmdHGroupID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHGroupID.Image")));
            this.cmdHGroupID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHGroupID.Location = new System.Drawing.Point(218, 162);
            this.cmdHGroupID.Location = new System.Drawing.Point(218, 156);
            this.cmdHGroupID.Name = "cmdHGroupID";
            this.cmdHGroupID.Size = new System.Drawing.Size(22, 22);
            this.cmdHGroupID.TabIndex = 61;
@@ -807,18 +819,80 @@
            this.cmdHProcNo.BackColor = System.Drawing.Color.Transparent;
            this.cmdHProcNo.Image = ((System.Drawing.Image)(resources.GetObject("cmdHProcNo.Image")));
            this.cmdHProcNo.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHProcNo.Location = new System.Drawing.Point(219, 187);
            this.cmdHProcNo.Location = new System.Drawing.Point(219, 181);
            this.cmdHProcNo.Name = "cmdHProcNo";
            this.cmdHProcNo.Size = new System.Drawing.Size(22, 22);
            this.cmdHProcNo.TabIndex = 62;
            this.cmdHProcNo.UseVisualStyleBackColor = false;
            this.cmdHProcNo.Click += new System.EventHandler(this.cmdHProcNo_Click);
            // 
            // label22
            //
            this.label22.AutoSize = true;
            this.label22.ForeColor = System.Drawing.Color.Black;
            this.label22.Location = new System.Drawing.Point(12, 209);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(53, 12);
            this.label22.TabIndex = 63;
            this.label22.Text = "生产资源";
            //
            // label23
            //
            this.label23.AutoSize = true;
            this.label23.ForeColor = System.Drawing.Color.Black;
            this.label23.Location = new System.Drawing.Point(12, 232);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(53, 12);
            this.label23.TabIndex = 64;
            this.label23.Text = "工作中心";
            //
            // textHSourceID
            //
            this.textHSourceID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.textHSourceID.Location = new System.Drawing.Point(68, 206);
            this.textHSourceID.Name = "textHSourceID";
            this.textHSourceID.Size = new System.Drawing.Size(145, 21);
            this.textHSourceID.TabIndex = 65;
            this.textHSourceID.Tag = "0";
            //
            // textHWorkCenterID
            //
            this.textHWorkCenterID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.textHWorkCenterID.Location = new System.Drawing.Point(68, 229);
            this.textHWorkCenterID.Name = "textHWorkCenterID";
            this.textHWorkCenterID.Size = new System.Drawing.Size(145, 21);
            this.textHWorkCenterID.TabIndex = 66;
            this.textHWorkCenterID.Tag = "0";
            //
            // cmdHSourceID
            //
            this.cmdHSourceID.BackColor = System.Drawing.Color.Transparent;
            this.cmdHSourceID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHSourceID.Image")));
            this.cmdHSourceID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHSourceID.Location = new System.Drawing.Point(218, 205);
            this.cmdHSourceID.Name = "cmdHSourceID";
            this.cmdHSourceID.Size = new System.Drawing.Size(22, 22);
            this.cmdHSourceID.TabIndex = 67;
            this.cmdHSourceID.UseVisualStyleBackColor = false;
            this.cmdHSourceID.Click += new System.EventHandler(this.cmdHSourceID_Click);
            //
            // cmdHWorkCenterID
            //
            this.cmdHWorkCenterID.BackColor = System.Drawing.Color.Transparent;
            this.cmdHWorkCenterID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHWorkCenterID.Image")));
            this.cmdHWorkCenterID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.cmdHWorkCenterID.Location = new System.Drawing.Point(218, 228);
            this.cmdHWorkCenterID.Name = "cmdHWorkCenterID";
            this.cmdHWorkCenterID.Size = new System.Drawing.Size(22, 22);
            this.cmdHWorkCenterID.TabIndex = 68;
            this.cmdHWorkCenterID.UseVisualStyleBackColor = false;
            this.cmdHWorkCenterID.Click += new System.EventHandler(this.cmdHWorkCenterID_Click);
            //
            // Xt_UserNew
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(380, 477);
            this.ClientSize = new System.Drawing.Size(380, 525);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.label10);
            this.Controls.Add(this.cmdHGroup);
@@ -913,5 +987,11 @@
        private System.Windows.Forms.Label label20;
        private System.Windows.Forms.TextBox textHGroupID;
        private System.Windows.Forms.Label label19;
        private System.Windows.Forms.TextBox textHWorkCenterID;
        private System.Windows.Forms.TextBox textHSourceID;
        private System.Windows.Forms.Label label23;
        private System.Windows.Forms.Label label22;
        private System.Windows.Forms.Button cmdHWorkCenterID;
        private System.Windows.Forms.Button cmdHSourceID;
    }
}
SCM/ϵͳ¹ÜÀí/Xt_UserNew.resx
@@ -163,6 +163,36 @@
        FIYcEAA7
</value>
  </data>
  <data name="cmdHWorkCenterID.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    <value>
        R0lGODlhEAAQAIZBAAAzmQBmzP///1o7AJlmAOazAMTz/9mmAEW5//nNT+W5ToPV/5TW/cyZAAyf/7Dp
        /yOn/2jD/q3h/le8/sz3/5zg/7bt/73l/7Xs/2fH/4DT///bnZXb/97//2rK/wWb/8np/6zf/1S//77x
        /73w/8Xv/1+//wmc/1jA/5Db/5LV/6rn/6Xb/zCt/33O/9X3/4LO/7jj/4PT/x+m/7nk/3XP/3PJ/3bQ
        /6Tb/5Td/zCv/3fM/029/4za/6Pf/ZHc/6Pk/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEBAAAh+QQB
        AABBACwAAAAAEAAQAAAIqACDCBwoMIDBAAQTBjEYIcKECQYVLmQQ44KJFhBmQECYMAAOEAJYnPjgwAHH
        gQEYqAhBA4YOBDwQIDg5cYcLGyg8LOixYAFNABJkZBBRI8cDEg98ACAIlIOGGylWGOhgwMBSphUq/ACC
        wQAFClcFEiAAQICAEhZGvDAbloCCDQUAlDUrQO5AtwkKHBgQRK7duwryHmjAV2IQAoIJGxY4QK/ixYwH
        FIYcEAA7
</value>
  </data>
  <data name="cmdHSourceID.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    <value>
        R0lGODlhEAAQAIZBAAAzmQBmzP///1o7AJlmAOazAMTz/9mmAEW5//nNT+W5ToPV/5TW/cyZAAyf/7Dp
        /yOn/2jD/q3h/le8/sz3/5zg/7bt/73l/7Xs/2fH/4DT///bnZXb/97//2rK/wWb/8np/6zf/1S//77x
        /73w/8Xv/1+//wmc/1jA/5Db/5LV/6rn/6Xb/zCt/33O/9X3/4LO/7jj/4PT/x+m/7nk/3XP/3PJ/3bQ
        /6Tb/5Td/zCv/3fM/029/4za/6Pf/ZHc/6Pk/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
        AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEBAAAh+QQB
        AABBACwAAAAAEAAQAAAIqACDCBwoMIDBAAQTBjEYIcKECQYVLmQQ44KJFhBmQECYMAAOEAJYnPjgwAHH
        gQEYqAhBA4YOBDwQIDg5cYcLGyg8LOixYAFNABJkZBBRI8cDEg98ACAIlIOGGylWGOhgwMBSphUq/ACC
        wQAFClcFEiAAQICAEhZGvDAbloCCDQUAlDUrQO5AtwkKHBgQRK7duwryHmjAV2IQAoIJGxY4QK/ixYwH
        FIYcEAA7
</value>
  </data>
  <data name="cmdHProcNo.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
    <value>
        R0lGODlhEAAQAIZBAAAzmQBmzP///1o7AJlmAOazAMTz/9mmAEW5//nNT+W5ToPV/5TW/cyZAAyf/7Dp