From 48c61ce7e9a21da5a5952495cd5c73ea76cd3515 Mon Sep 17 00:00:00 2001
From: zgq <519541279@qq.com>
Date: 星期三, 20 一月 2021 15:58:59 +0800
Subject: [PATCH] 增加用户信息生产班组及工序选择

---
 NETSCM/NETSCM.csproj.user       |   13 ++
 SCM/系统管理/Xt_UserNew.designer.cs |  188 ++++++++++++++++++++++++++----------
 SCM/系统管理/Xt_UserNew.cs          |   37 +++++++
 SCM/系统管理/Xt_UserNew.resx        |   36 ++++++
 NETSCM/NETSCM.csproj            |   22 ++++
 5 files changed, 239 insertions(+), 57 deletions(-)

diff --git a/NETSCM/NETSCM.csproj b/NETSCM/NETSCM.csproj
index e6a5f8a..43c9b3f 100644
--- a/NETSCM/NETSCM.csproj
+++ b/NETSCM/NETSCM.csproj
@@ -18,6 +18,21 @@
     </UpgradeBackupLocation>
     <OldToolsVersion>2.0</OldToolsVersion>
     <TargetFrameworkProfile />
+    <PublishUrl>publish\</PublishUrl>
+    <Install>true</Install>
+    <InstallFrom>Disk</InstallFrom>
+    <UpdateEnabled>false</UpdateEnabled>
+    <UpdateMode>Foreground</UpdateMode>
+    <UpdateInterval>7</UpdateInterval>
+    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
+    <UpdatePeriodically>false</UpdatePeriodically>
+    <UpdateRequired>false</UpdateRequired>
+    <MapFileExtensions>true</MapFileExtensions>
+    <ApplicationRevision>0</ApplicationRevision>
+    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
+    <IsWebBootstrapper>false</IsWebBootstrapper>
+    <UseApplicationTrust>false</UseApplicationTrust>
+    <BootstrapperEnabled>true</BootstrapperEnabled>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>true</DebugSymbols>
@@ -248,6 +263,13 @@
   <ItemGroup>
     <Content Include="杩愯緭绯荤粺.ico" />
   </ItemGroup>
+  <ItemGroup>
+    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
+      <Visible>False</Visible>
+      <ProductName>.NET Framework 3.5 SP1</ProductName>
+      <Install>false</Install>
+    </BootstrapperPackage>
+  </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/NETSCM/NETSCM.csproj.user b/NETSCM/NETSCM.csproj.user
new file mode 100644
index 0000000..51efb67
--- /dev/null
+++ b/NETSCM/NETSCM.csproj.user
@@ -0,0 +1,13 @@
+锘�<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup>
+    <PublishUrlHistory />
+    <InstallUrlHistory />
+    <SupportUrlHistory />
+    <UpdateUrlHistory />
+    <BootstrapperUrlHistory />
+    <ErrorReportUrlHistory />
+    <FallbackCulture>zh-CN</FallbackCulture>
+    <VerifyUploadedFiles>false</VerifyUploadedFiles>
+  </PropertyGroup>
+</Project>
\ No newline at end of file
diff --git "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.cs" "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.cs"
index da134c7..de11d36 100644
--- "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.cs"
+++ "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.cs"
@@ -362,6 +362,10 @@
                     ",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() +
                     "where Czybm='" + Czybm + "'", ref DBUtility.ClsPub.sExeReturnInfo);
                 //
                 oWeb.getRunProc("delete from  System_UserGroupInfo where UserId='" + Czybm + "'", ref DBUtility.ClsPub.sExeReturnInfo);
@@ -693,8 +697,41 @@
         }
 
 
+
         #endregion
 
+        private void cmdHGroupID_Click(object sender, EventArgs e)
+        {
+            SCM.ClsGy_Group_View oEmp = new SCM.ClsGy_Group_View();
+            string DeWhere = "";
+            DeWhere = " ";
+            if (oEmp.RefreshView(DeWhere))
+            {
+                this.textHGroupID.Text = oEmp.oModel.HName;
+                this.textHGroupID.Tag = oEmp.oModel.HItemID.ToString();
+            }
+            else
+            {
+                this.textHGroupID.Text = "";
+                this.textHGroupID.Tag = 0;
+            }
+        }
 
+        private void cmdHProcNo_Click(object sender, EventArgs e)
+        {
+            SCM.ClsIF_Process_View oEmp = new SCM.ClsIF_Process_View();
+            string DeWhere = "";
+            DeWhere = " ";
+            if (oEmp.RefreshView(DeWhere))
+            {
+                this.textHProcNo.Text = oEmp.oModel.HName;
+                this.textHProcNo.Tag = oEmp.oModel.HNumber;
+            }
+            else
+            {
+                this.textHProcNo.Text = "";
+                this.textHProcNo.Tag = 0;
+            }
+        }
     }
 }
\ No newline at end of file
diff --git "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.designer.cs" "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.designer.cs"
index b1eaf2c..594046d 100644
--- "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.designer.cs"
+++ "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.designer.cs"
@@ -64,6 +64,9 @@
             this.tabControl1 = new System.Windows.Forms.TabControl();
             this.tabPage1 = new System.Windows.Forms.TabPage();
             this.tabPage2 = new System.Windows.Forms.TabPage();
+            this.cmdHSupID = new System.Windows.Forms.Button();
+            this.label18 = new System.Windows.Forms.Label();
+            this.txtHSupID = new System.Windows.Forms.TextBox();
             this.label21 = new System.Windows.Forms.Label();
             this.cmbHOrgID = new System.Windows.Forms.ComboBox();
             this.cmdHSellManID = new System.Windows.Forms.Button();
@@ -86,9 +89,12 @@
             this.label17 = new System.Windows.Forms.Label();
             this.txtHCloudUserName = new System.Windows.Forms.TextBox();
             this.label15 = new System.Windows.Forms.Label();
-            this.cmdHSupID = new System.Windows.Forms.Button();
-            this.label18 = new System.Windows.Forms.Label();
-            this.txtHSupID = new System.Windows.Forms.TextBox();
+            this.label19 = new System.Windows.Forms.Label();
+            this.textHGroupID = new System.Windows.Forms.TextBox();
+            this.label20 = new System.Windows.Forms.Label();
+            this.textHProcNo = new System.Windows.Forms.TextBox();
+            this.cmdHGroupID = new System.Windows.Forms.Button();
+            this.cmdHProcNo = new System.Windows.Forms.Button();
             this.groupBox2.SuspendLayout();
             this.tabControl1.SuspendLayout();
             this.tabPage1.SuspendLayout();
@@ -133,7 +139,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, 153);
+            this.cmdHEmpID.Location = new System.Drawing.Point(218, 137);
             this.cmdHEmpID.Name = "cmdHEmpID";
             this.cmdHEmpID.Size = new System.Drawing.Size(22, 22);
             this.cmdHEmpID.TabIndex = 56;
@@ -144,7 +150,7 @@
             // 
             this.label8.AutoSize = true;
             this.label8.ForeColor = System.Drawing.Color.Black;
-            this.label8.Location = new System.Drawing.Point(12, 158);
+            this.label8.Location = new System.Drawing.Point(12, 142);
             this.label8.Name = "label8";
             this.label8.Size = new System.Drawing.Size(53, 12);
             this.label8.TabIndex = 54;
@@ -153,7 +159,7 @@
             // txtHEmpID
             // 
             this.txtHEmpID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
-            this.txtHEmpID.Location = new System.Drawing.Point(68, 154);
+            this.txtHEmpID.Location = new System.Drawing.Point(68, 138);
             this.txtHEmpID.Name = "txtHEmpID";
             this.txtHEmpID.Size = new System.Drawing.Size(145, 21);
             this.txtHEmpID.TabIndex = 55;
@@ -162,7 +168,7 @@
             // 
             // cmdPassWord
             // 
-            this.cmdPassWord.Location = new System.Drawing.Point(221, 98);
+            this.cmdPassWord.Location = new System.Drawing.Point(221, 85);
             this.cmdPassWord.Name = "cmdPassWord";
             this.cmdPassWord.Size = new System.Drawing.Size(77, 21);
             this.cmdPassWord.TabIndex = 53;
@@ -174,7 +180,7 @@
             // 
             this.lblError.Anchor = System.Windows.Forms.AnchorStyles.Right;
             this.lblError.ForeColor = System.Drawing.Color.Red;
-            this.lblError.Location = new System.Drawing.Point(219, 52);
+            this.lblError.Location = new System.Drawing.Point(219, 50);
             this.lblError.Name = "lblError";
             this.lblError.Size = new System.Drawing.Size(120, 42);
             this.lblError.TabIndex = 52;
@@ -182,7 +188,7 @@
             // 
             // txtExplain
             // 
-            this.txtExplain.Location = new System.Drawing.Point(68, 126);
+            this.txtExplain.Location = new System.Drawing.Point(68, 112);
             this.txtExplain.Name = "txtExplain";
             this.txtExplain.Size = new System.Drawing.Size(262, 21);
             this.txtExplain.TabIndex = 5;
@@ -190,7 +196,7 @@
             // label5
             // 
             this.label5.AutoSize = true;
-            this.label5.Location = new System.Drawing.Point(12, 130);
+            this.label5.Location = new System.Drawing.Point(12, 116);
             this.label5.Name = "label5";
             this.label5.Size = new System.Drawing.Size(41, 12);
             this.label5.TabIndex = 51;
@@ -198,7 +204,7 @@
             // 
             // txtCzyyz
             // 
-            this.txtCzyyz.Location = new System.Drawing.Point(68, 98);
+            this.txtCzyyz.Location = new System.Drawing.Point(68, 85);
             this.txtCzyyz.Name = "txtCzyyz";
             this.txtCzyyz.PasswordChar = '*';
             this.txtCzyyz.Size = new System.Drawing.Size(145, 21);
@@ -207,7 +213,7 @@
             // label4
             // 
             this.label4.AutoSize = true;
-            this.label4.Location = new System.Drawing.Point(12, 102);
+            this.label4.Location = new System.Drawing.Point(12, 89);
             this.label4.Name = "label4";
             this.label4.Size = new System.Drawing.Size(53, 12);
             this.label4.TabIndex = 44;
@@ -215,7 +221,7 @@
             // 
             // txtCzymm
             // 
-            this.txtCzymm.Location = new System.Drawing.Point(68, 70);
+            this.txtCzymm.Location = new System.Drawing.Point(68, 58);
             this.txtCzymm.Name = "txtCzymm";
             this.txtCzymm.PasswordChar = '*';
             this.txtCzymm.Size = new System.Drawing.Size(145, 21);
@@ -224,7 +230,7 @@
             // label3
             // 
             this.label3.AutoSize = true;
-            this.label3.Location = new System.Drawing.Point(12, 74);
+            this.label3.Location = new System.Drawing.Point(12, 62);
             this.label3.Name = "label3";
             this.label3.Size = new System.Drawing.Size(41, 12);
             this.label3.TabIndex = 33;
@@ -232,14 +238,14 @@
             // 
             // txtCzybm
             // 
-            this.txtCzybm.Location = new System.Drawing.Point(68, 14);
+            this.txtCzybm.Location = new System.Drawing.Point(68, 8);
             this.txtCzybm.Name = "txtCzybm";
             this.txtCzybm.Size = new System.Drawing.Size(145, 21);
             this.txtCzybm.TabIndex = 1;
             // 
             // txtCzymc
             // 
-            this.txtCzymc.Location = new System.Drawing.Point(68, 42);
+            this.txtCzymc.Location = new System.Drawing.Point(68, 32);
             this.txtCzymc.Name = "txtCzymc";
             this.txtCzymc.Size = new System.Drawing.Size(145, 21);
             this.txtCzymc.TabIndex = 2;
@@ -247,7 +253,7 @@
             // label2
             // 
             this.label2.AutoSize = true;
-            this.label2.Location = new System.Drawing.Point(12, 46);
+            this.label2.Location = new System.Drawing.Point(12, 36);
             this.label2.Name = "label2";
             this.label2.Size = new System.Drawing.Size(41, 12);
             this.label2.TabIndex = 22;
@@ -256,7 +262,7 @@
             // label1
             // 
             this.label1.AutoSize = true;
-            this.label1.Location = new System.Drawing.Point(12, 18);
+            this.label1.Location = new System.Drawing.Point(12, 12);
             this.label1.Name = "label1";
             this.label1.Size = new System.Drawing.Size(41, 12);
             this.label1.TabIndex = 12;
@@ -272,7 +278,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, 272);
+            this.groupBox2.Location = new System.Drawing.Point(12, 277);
             this.groupBox2.Name = "groupBox2";
             this.groupBox2.Size = new System.Drawing.Size(355, 162);
             this.groupBox2.TabIndex = 54;
@@ -357,7 +363,7 @@
             // 
             // cmdCancel
             // 
-            this.cmdCancel.Location = new System.Drawing.Point(307, 440);
+            this.cmdCancel.Location = new System.Drawing.Point(307, 445);
             this.cmdCancel.Name = "cmdCancel";
             this.cmdCancel.Size = new System.Drawing.Size(61, 24);
             this.cmdCancel.TabIndex = 11;
@@ -367,7 +373,7 @@
             // 
             // cmdOK
             // 
-            this.cmdOK.Location = new System.Drawing.Point(240, 440);
+            this.cmdOK.Location = new System.Drawing.Point(240, 445);
             this.cmdOK.Name = "cmdOK";
             this.cmdOK.Size = new System.Drawing.Size(61, 24);
             this.cmdOK.TabIndex = 10;
@@ -380,7 +386,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, 239);
+            this.cmdHGroup.Location = new System.Drawing.Point(240, 250);
             this.cmdHGroup.Name = "cmdHGroup";
             this.cmdHGroup.Size = new System.Drawing.Size(22, 22);
             this.cmdHGroup.TabIndex = 58;
@@ -390,7 +396,7 @@
             // txtHGroup
             // 
             this.txtHGroup.ImeMode = System.Windows.Forms.ImeMode.NoControl;
-            this.txtHGroup.Location = new System.Drawing.Point(90, 240);
+            this.txtHGroup.Location = new System.Drawing.Point(90, 251);
             this.txtHGroup.Name = "txtHGroup";
             this.txtHGroup.Size = new System.Drawing.Size(145, 21);
             this.txtHGroup.TabIndex = 57;
@@ -400,7 +406,7 @@
             // 
             this.label10.AutoSize = true;
             this.label10.ForeColor = System.Drawing.Color.Black;
-            this.label10.Location = new System.Drawing.Point(30, 244);
+            this.label10.Location = new System.Drawing.Point(30, 255);
             this.label10.Name = "label10";
             this.label10.Size = new System.Drawing.Size(53, 12);
             this.label10.TabIndex = 59;
@@ -414,12 +420,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, 222);
+            this.tabControl1.Size = new System.Drawing.Size(356, 240);
             this.tabControl1.TabIndex = 60;
             // 
             // tabPage1
             // 
             this.tabPage1.BackColor = System.Drawing.Color.Transparent;
+            this.tabPage1.Controls.Add(this.cmdHProcNo);
+            this.tabPage1.Controls.Add(this.cmdHGroupID);
+            this.tabPage1.Controls.Add(this.textHProcNo);
+            this.tabPage1.Controls.Add(this.label20);
+            this.tabPage1.Controls.Add(this.textHGroupID);
+            this.tabPage1.Controls.Add(this.label19);
             this.tabPage1.Controls.Add(this.label1);
             this.tabPage1.Controls.Add(this.label2);
             this.tabPage1.Controls.Add(this.txtCzymc);
@@ -438,7 +450,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, 196);
+            this.tabPage1.Size = new System.Drawing.Size(348, 214);
             this.tabPage1.TabIndex = 0;
             this.tabPage1.Text = "鍩烘湰淇℃伅";
             this.tabPage1.UseVisualStyleBackColor = true;
@@ -472,10 +484,42 @@
             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, 196);
+            this.tabPage2.Size = new System.Drawing.Size(348, 210);
             this.tabPage2.TabIndex = 1;
             this.tabPage2.Text = "瀵瑰簲閲戣澏淇℃伅";
             this.tabPage2.UseVisualStyleBackColor = true;
+            // 
+            // cmdHSupID
+            // 
+            this.cmdHSupID.BackColor = System.Drawing.Color.Transparent;
+            this.cmdHSupID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHSupID.Image")));
+            this.cmdHSupID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
+            this.cmdHSupID.Location = new System.Drawing.Point(235, 165);
+            this.cmdHSupID.Name = "cmdHSupID";
+            this.cmdHSupID.Size = new System.Drawing.Size(22, 22);
+            this.cmdHSupID.TabIndex = 90;
+            this.cmdHSupID.UseVisualStyleBackColor = false;
+            this.cmdHSupID.Click += new System.EventHandler(this.cmdHSupID_Click);
+            // 
+            // label18
+            // 
+            this.label18.AutoSize = true;
+            this.label18.ForeColor = System.Drawing.Color.Black;
+            this.label18.Location = new System.Drawing.Point(14, 170);
+            this.label18.Name = "label18";
+            this.label18.Size = new System.Drawing.Size(65, 12);
+            this.label18.TabIndex = 88;
+            this.label18.Text = "瀵瑰簲渚涘簲鍟�";
+            // 
+            // txtHSupID
+            // 
+            this.txtHSupID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+            this.txtHSupID.Location = new System.Drawing.Point(85, 166);
+            this.txtHSupID.Name = "txtHSupID";
+            this.txtHSupID.Size = new System.Drawing.Size(145, 21);
+            this.txtHSupID.TabIndex = 89;
+            this.txtHSupID.Tag = "0";
+            this.txtHSupID.TextChanged += new System.EventHandler(this.txtHSupID_TextChanged);
             // 
             // label21
             // 
@@ -665,7 +709,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, 196);
+            this.tabPage3.Size = new System.Drawing.Size(348, 210);
             this.tabPage3.TabIndex = 2;
             this.tabPage3.Text = "CLOUD璐﹀彿璁剧疆";
             this.tabPage3.UseVisualStyleBackColor = true;
@@ -708,37 +752,67 @@
             this.label15.TabIndex = 90;
             this.label15.Text = "瀵瑰簲CLOUD璐﹀彿";
             // 
-            // cmdHSupID
+            // label19
             // 
-            this.cmdHSupID.BackColor = System.Drawing.Color.Transparent;
-            this.cmdHSupID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHSupID.Image")));
-            this.cmdHSupID.ImageAlign = System.Drawing.ContentAlignment.TopRight;
-            this.cmdHSupID.Location = new System.Drawing.Point(235, 165);
-            this.cmdHSupID.Name = "cmdHSupID";
-            this.cmdHSupID.Size = new System.Drawing.Size(22, 22);
-            this.cmdHSupID.TabIndex = 90;
-            this.cmdHSupID.UseVisualStyleBackColor = false;
-            this.cmdHSupID.Click += new System.EventHandler(this.cmdHSupID_Click);
+            this.label19.AutoSize = true;
+            this.label19.ForeColor = System.Drawing.Color.Black;
+            this.label19.Location = new System.Drawing.Point(12, 167);
+            this.label19.Name = "label19";
+            this.label19.Size = new System.Drawing.Size(53, 12);
+            this.label19.TabIndex = 57;
+            this.label19.Text = "鐢熶骇鐝粍";
             // 
-            // label18
+            // textHGroupID
             // 
-            this.label18.AutoSize = true;
-            this.label18.ForeColor = System.Drawing.Color.Black;
-            this.label18.Location = new System.Drawing.Point(14, 170);
-            this.label18.Name = "label18";
-            this.label18.Size = new System.Drawing.Size(65, 12);
-            this.label18.TabIndex = 88;
-            this.label18.Text = "瀵瑰簲渚涘簲鍟�";
+            this.textHGroupID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+            this.textHGroupID.Location = new System.Drawing.Point(68, 164);
+            this.textHGroupID.Name = "textHGroupID";
+            this.textHGroupID.Size = new System.Drawing.Size(145, 21);
+            this.textHGroupID.TabIndex = 58;
+            this.textHGroupID.Tag = "0";
             // 
-            // txtHSupID
+            // label20
             // 
-            this.txtHSupID.ImeMode = System.Windows.Forms.ImeMode.NoControl;
-            this.txtHSupID.Location = new System.Drawing.Point(85, 166);
-            this.txtHSupID.Name = "txtHSupID";
-            this.txtHSupID.Size = new System.Drawing.Size(145, 21);
-            this.txtHSupID.TabIndex = 89;
-            this.txtHSupID.Tag = "0";
-            this.txtHSupID.TextChanged += new System.EventHandler(this.txtHSupID_TextChanged);
+            this.label20.AutoSize = true;
+            this.label20.ForeColor = System.Drawing.Color.Black;
+            this.label20.Location = new System.Drawing.Point(14, 192);
+            this.label20.Name = "label20";
+            this.label20.Size = new System.Drawing.Size(41, 12);
+            this.label20.TabIndex = 59;
+            this.label20.Text = "宸ュ簭鍙�";
+            // 
+            // textHProcNo
+            // 
+            this.textHProcNo.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+            this.textHProcNo.Location = new System.Drawing.Point(68, 189);
+            this.textHProcNo.Name = "textHProcNo";
+            this.textHProcNo.Size = new System.Drawing.Size(145, 21);
+            this.textHProcNo.TabIndex = 60;
+            this.textHProcNo.Tag = "0";
+            // 
+            // cmdHGroupID
+            // 
+            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.Name = "cmdHGroupID";
+            this.cmdHGroupID.Size = new System.Drawing.Size(22, 22);
+            this.cmdHGroupID.TabIndex = 61;
+            this.cmdHGroupID.UseVisualStyleBackColor = false;
+            this.cmdHGroupID.Click += new System.EventHandler(this.cmdHGroupID_Click);
+            // 
+            // cmdHProcNo
+            // 
+            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.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);
             // 
             // Xt_UserNew
             // 
@@ -833,5 +907,11 @@
         private System.Windows.Forms.Button cmdHSupID;
         private System.Windows.Forms.Label label18;
         private System.Windows.Forms.TextBox txtHSupID;
+        private System.Windows.Forms.Button cmdHProcNo;
+        private System.Windows.Forms.Button cmdHGroupID;
+        private System.Windows.Forms.TextBox textHProcNo;
+        private System.Windows.Forms.Label label20;
+        private System.Windows.Forms.TextBox textHGroupID;
+        private System.Windows.Forms.Label label19;
     }
 }
\ No newline at end of file
diff --git "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.resx" "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.resx"
index 15ce733..c8537d8 100644
--- "a/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.resx"
+++ "b/SCM/\347\263\273\347\273\237\347\256\241\347\220\206/Xt_UserNew.resx"
@@ -112,12 +112,12 @@
     <value>2.0</value>
   </resheader>
   <resheader name="reader">
-    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </resheader>
   <resheader name="writer">
-    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </resheader>
-  <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
   <data name="cmdHK3UserID.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
     <value>
         R0lGODlhEAAQAIZBAAAzmQBmzP///1o7AJlmAOazAMTz/9mmAEW5//nNT+W5ToPV/5TW/cyZAAyf/7Dp
@@ -163,6 +163,36 @@
         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
+        /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="cmdHGroupID.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="cmdHSupID.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
     <value>
         R0lGODlhEAAQAIZBAAAzmQBmzP///1o7AJlmAOazAMTz/9mmAEW5//nNT+W5ToPV/5TW/cyZAAyf/7Dp

--
Gitblit v1.9.1