雅琪诺MES智能条码管理系统
ouyangqing
2021-01-22 6b42ce7bf82339904e817f4f57e67ebaa5dc5200
Merge branch 'master' of http://101.37.171.70:10101/r/YqnMes
6个文件已修改
1个文件已添加
469 ■■■■ 已修改文件
Model/基础资料/ClsGy_Process_Model.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
NETSCM/NETSCM.csproj 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
NETSCM/NETSCM.csproj.user 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/基础资料/ClsIF_Process_View.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/系统管理/Xt_UserNew.cs 91 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/系统管理/Xt_UserNew.designer.cs 270 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
SCM/系统管理/Xt_UserNew.resx 66 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Model/»ù´¡×ÊÁÏ/ClsGy_Process_Model.cs
@@ -19,5 +19,6 @@
        public double HFixPrice;//         money        //班产定额    (8小时工资)        New
        public double HOverFixPrice;//        money    //加班补贴定额    ï¼ˆ8小时工资)            New
        public Int64 HProcMulID;//New
        public string HProcNo;
    }
}
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.
NETSCM/NETSCM.csproj.user
New file
@@ -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>
SCM/»ù´¡×ÊÁÏ/ClsIF_Process_View.cs
@@ -20,11 +20,11 @@
        {
            base.MvarReportTitle = "工序设置";
            base.MvarItemKey = "h_v_IF_Process";
            base.SQLName = "Select HItemID,HNumber å·¥åºä»£ç ,HName å·¥åº from h_v_IF_Process where HStopflag=0   ";
            base.SQLName = "Select HItemID,HNumber å·¥åºä»£ç ,HName å·¥åº,HProcNo å·¥åºå· from h_v_IF_Process where HStopflag=0   ";
            base.SQLOrder = " Order by HItemID  ";
            base.SQLList = "Select top 100 * from " + MvarItemKey + " ";
            //下拉SQL
            base.SQLNameForDown = " Select top 30 HItemID,HNumber å·¥åºä»£ç ,HName å·¥åº from h_v_IF_Process ";
            base.SQLNameForDown = " Select top 30 HItemID,HNumber å·¥åºä»£ç ,HName å·¥åº,HProcNo å·¥åºå· from h_v_IF_Process ";
            base.SQLOrderForDown = "  Order by HNumber ";
            base.SQLWhereForDown = "  where HStopflag=0  ";
        }
@@ -92,6 +92,7 @@
                omodel.HStopflag = DBUtility.ClsPub.isBool(DS.Tables[0].Rows[0]["HStopflag"]);
                omodel.HBarCode = DS.Tables[0].Rows[0]["HBarCode"].ToString().Trim();
                omodel.HRemark = DBUtility.ClsPub.isStrNull(DS.Tables[0].Rows[0]["HRemark"]);
                omodel.HProcNo = DS.Tables[0].Rows[0]["HProcNo"].ToString().Trim();
                return true;
 
            }
@@ -149,6 +150,7 @@
                    oModel.HItemID = Pub_Class.ClsPub.isLong(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[0].Value);
                    oModel.HNumber = Pub_Class.ClsPub.isStrNull(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[1].Value);
                    oModel.HName = Pub_Class.ClsPub.isStrNull(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[2].Value);
                    oModel.HRemark = Pub_Class.ClsPub.isStrNull(ofrm.grdShow.Rows[ofrm.grdShow.CurrentRow.Index].Cells[3].Value);
                }
                else
                {
SCM/ϵͳ¹ÜÀí/Xt_UserNew.cs
@@ -20,6 +20,7 @@
        public Pub_Class.ClsPub.Enum_InputMode InputMode;  //录入状态标志(0-非录入状态 1-增加 2-修改)
        public string Czybm;
        public Int64 HOrgID = -1;
        public string HProcNo = "";
        //窗体加载
        private void Xt_UserNew_Load(object sender, EventArgs e)
        {
@@ -178,7 +179,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,HProcName,HSource,HSourceID,HWorkCenter,HWorkCenterID from Gy_Czygl where Czybm='" + sCzybm + "'", "Gy_Czygl", ref ClsPub.sExeReturnInfo);
                if (oDs == null)
                {
                    MessageBox.Show("显示失败!原因:" + ClsPub.sExeReturnInfo);
@@ -234,6 +235,15 @@
                    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]["HProcName"].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();
                    HProcNo = oDs.Tables[0].Rows[0]["HProcNo"].ToString().Trim();
                }
            }
            catch (Exception e)
@@ -362,6 +372,15 @@
                    ",HCloudUserName='" + txtHCloudUserName.Text.ToString() + "'" +
                    ",HCloudUserPsd='" + txtHCloudUserPsd.Text.ToString() + "'" +
                    ",HUSEORGID=" + HOrgID.ToString() +
                    ",HGroup='" + textHGroupID.Text.ToString() + "'" +
                    ",HGroupID=" + ClsPub.isLong(textHGroupID.Tag).ToString() +
                    ",HProc='" + textHProcNo.Text.ToString() +"'"+
                    ",HProcName='" + textHProcNo.Tag.ToString() +"'"+
                    ",HProcNo='" + HProcNo + "'" +
                    ",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);
@@ -370,7 +389,7 @@
                    oWeb.getRunProc("insert into  System_UserGroupInfo (GroupId,UserId) values (" + ClsPub.isLong(Get_Code(this.LbYes.Items[i].ToString())) + ",'" + Czybm + "')", ref DBUtility.ClsPub.sExeReturnInfo);
                }
                lblError.Text = "* ä¿®æ”¹æˆåŠŸï¼";
                tabControl1.SelectedIndex = 0;
                tabControl1.SelectedIndex = 0;
            }
        }
        //单据完整性判断
@@ -693,8 +712,76 @@
        }
        #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;
                HProcNo = oEmp.oModel.HRemark;
            }
            else
            {
                this.textHProcNo.Text = "";
                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
@@ -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,18 @@
            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.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();
@@ -133,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, 153);
            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;
@@ -144,7 +156,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, 136);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(53, 12);
            this.label8.TabIndex = 54;
@@ -153,7 +165,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, 132);
            this.txtHEmpID.Name = "txtHEmpID";
            this.txtHEmpID.Size = new System.Drawing.Size(145, 21);
            this.txtHEmpID.TabIndex = 55;
@@ -162,7 +174,7 @@
            // 
            // cmdPassWord
            // 
            this.cmdPassWord.Location = new System.Drawing.Point(221, 98);
            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;
@@ -174,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, 52);
            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;
@@ -182,7 +194,7 @@
            // 
            // txtExplain
            // 
            this.txtExplain.Location = new System.Drawing.Point(68, 126);
            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;
@@ -190,7 +202,7 @@
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(12, 130);
            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;
@@ -198,7 +210,7 @@
            // 
            // txtCzyyz
            // 
            this.txtCzyyz.Location = new System.Drawing.Point(68, 98);
            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);
@@ -207,7 +219,7 @@
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 102);
            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;
@@ -215,7 +227,7 @@
            // 
            // txtCzymm
            // 
            this.txtCzymm.Location = new System.Drawing.Point(68, 70);
            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);
@@ -224,7 +236,7 @@
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 74);
            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;
@@ -232,14 +244,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 +259,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 +268,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 +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, 272);
            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;
@@ -357,7 +369,7 @@
            // 
            // cmdCancel
            // 
            this.cmdCancel.Location = new System.Drawing.Point(307, 440);
            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;
@@ -367,7 +379,7 @@
            // 
            // cmdOK
            // 
            this.cmdOK.Location = new System.Drawing.Point(240, 440);
            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;
@@ -380,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, 239);
            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;
@@ -390,7 +402,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(84, 297);
            this.txtHGroup.Name = "txtHGroup";
            this.txtHGroup.Size = new System.Drawing.Size(145, 21);
            this.txtHGroup.TabIndex = 57;
@@ -400,7 +412,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, 300);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(53, 12);
            this.label10.TabIndex = 59;
@@ -414,12 +426,24 @@
            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, 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);
            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 +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, 196);
            this.tabPage1.Size = new System.Drawing.Size(348, 255);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "基本信息";
            this.tabPage1.UseVisualStyleBackColor = true;
@@ -472,10 +496,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, 248);
            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 +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, 196);
            this.tabPage3.Size = new System.Drawing.Size(348, 248);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "CLOUD账号设置";
            this.tabPage3.UseVisualStyleBackColor = true;
@@ -708,43 +764,135 @@
            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, 160);
            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, 157);
            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(12, 185);
            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, 182);
            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, 156);
            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, 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);
@@ -833,5 +981,17 @@
        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;
        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
@@ -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,66 @@
        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
        /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