فهرست منبع

增加目录导出功能

353489937@qq.com 1 سال پیش
والد
کامیت
db0f9730be
7فایلهای تغییر یافته به همراه588 افزوده شده و 182 حذف شده
  1. BIN
      .vs/ChengDu/v16/.suo
  2. 2 2
      ChengDuMI.csproj
  3. 5 0
      Common/ExPortToExcel.cs
  4. 26 2
      Forms/BasicData.cs
  5. 177 178
      Forms/BasicData.designer.cs
  6. 139 0
      Forms/HandleException.cs
  7. 239 0
      Forms/HandleException.designer.cs

BIN
.vs/ChengDu/v16/.suo


+ 2 - 2
ChengDuMI.csproj

@@ -42,7 +42,7 @@
       <HintPath>..\..\FastReport\FastReport.dll</HintPath>
     </Reference>
     <Reference Include="FastReportFrom">
-      <HintPath>..\..\FastReport\FastReportFrom.dll</HintPath>
+      <HintPath>..\..\原来的代码\FastReportFrom\bin\Debug\FastReportFrom.dll</HintPath>
     </Reference>
     <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
       <HintPath>packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
@@ -57,7 +57,7 @@
       <EmbedInteropTypes>True</EmbedInteropTypes>
     </Reference>
     <Reference Include="PTControl">
-      <HintPath>..\..\..\..\C#练习\普天控件2\PTControl\PTControl\bin\Debug\PTControl.dll</HintPath>
+      <HintPath>..\沈阳\ThirdDll\PTControl.dll</HintPath>
     </Reference>
     <Reference Include="Spire.Pdf, Version=8.6.1.0, Culture=neutral, PublicKeyToken=663f351905198cb3, processorArchitecture=MSIL">
       <HintPath>..\Demo\packages\FreeSpire.PDF.8.6.0\lib\net40\Spire.Pdf.dll</HintPath>

+ 5 - 0
Common/ExPortToExcel.cs

@@ -185,6 +185,11 @@ namespace PTMedicalInsurance.Common
                 workbook.Saved = true;
                 workbook.SaveCopyAs(strFileName);
 
+                m_xlApp.Workbooks.Close();
+                m_xlApp.Workbooks.Application.Quit();
+                m_xlApp.Application.Quit();
+                m_xlApp.Quit();
+
                 return strFileName;
             }
             catch (Exception ex)

+ 26 - 2
Forms/BasicData.cs

@@ -1695,11 +1695,13 @@ namespace PTMedicalInsurance.Forms
         private void btnExport_Click(object sender, EventArgs e)
         {
 
-            if (queryHISDirectory(1, 1000, out string errMsg) != 0)
+            this.pgHISDirect.PageChanged -= new Sunny.UI.UIPagination.OnPageChangeEventHandler(this.pgHISDirect_PageChanged);
+            if (queryHISDirectory(1, 5000, out string errMsg) != 0)
             {
                 MessageBox.Show(errMsg);
                 return;
             }
+            this.pgHISDirect.PageChanged += new Sunny.UI.UIPagination.OnPageChangeEventHandler(this.pgHISDirect_PageChanged);
 
             if (dtExport.Rows.Count > 0)
             {
@@ -1731,7 +1733,29 @@ namespace PTMedicalInsurance.Forms
                     if (rbNoMaped.Checked) sBZ = "未对照";
 
                 string LSH = DateTime.Now.ToString("yyyy-MM-dd"); //DateTime.Now.ToString("MMddHHmmssffff");
-                string sFliePathName = @"D:\" + LSH + "(" + directoryType + ")医保目录"+ sBZ + "信息.xls";
+                string filename = LSH + "(" + directoryType + ")医保目录" + sBZ + "信息.xls";
+                string sFliePathName = Global.curEvt.path + "\\MapRelation\\" + filename;
+                //string sFliePathName = @"D:\" + LSH + "(" + directoryType + ")医保目录" + sBZ + "信息.xls";
+
+                //如果不存在目录,则创建目录
+                if (!Directory.Exists(Global.curEvt.path + "\\MapRelation"))
+                {
+                    //创建文件夹
+                    DirectoryInfo dirInfo = Directory.CreateDirectory(Global.curEvt.path + "\\MapRelation");
+                }
+                //判断文件是否存在,如果存在询问是覆盖还是重新下载
+                if (File.Exists(sFliePathName))
+                {
+                    DialogResult dr = MessageBox.Show("该路径已存在该目录文件,确定要覆盖并重新导入吗?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
+                    if (dr == DialogResult.Yes)
+                    {
+                        File.Delete(sFliePathName);
+                    }
+                    else
+                    {
+                        return;
+                    }
+                }
                 string ReturnFileName = ExportToExcel.DataTabletoExcel(dtExport, sFliePathName);
                 if (ReturnFileName != "")
                 {

+ 177 - 178
Forms/BasicData.designer.cs

@@ -57,6 +57,7 @@
             this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
             this.ToolStripMenuItem_Upload = new System.Windows.Forms.ToolStripMenuItem();
             this.ToolStripMenuItem_CancelUpload = new System.Windows.Forms.ToolStripMenuItem();
+            this.batchUpdateCategory = new System.Windows.Forms.ToolStripMenuItem();
             this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
             this.TexYYMC = new Sunny.UI.UITextBox();
             this.TexBYSJL = new Sunny.UI.UITextBox();
@@ -122,7 +123,6 @@
             this.tsmiSingleUpdateAuxInfo = new System.Windows.Forms.ToolStripMenuItem();
             this.tsmiUpdateAllAuxInfo = new System.Windows.Forms.ToolStripMenuItem();
             this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
-            this.batchUpdateCategory = new System.Windows.Forms.ToolStripMenuItem();
             this.tabControl1.SuspendLayout();
             this.tabPage1.SuspendLayout();
             this.panel1.SuspendLayout();
@@ -164,20 +164,20 @@
             this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
             this.tabControl1.Font = new System.Drawing.Font("华文隶书", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.tabControl1.Location = new System.Drawing.Point(0, 0);
-            this.tabControl1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.tabControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.tabControl1.Name = "tabControl1";
             this.tabControl1.SelectedIndex = 0;
-            this.tabControl1.Size = new System.Drawing.Size(1838, 729);
+            this.tabControl1.Size = new System.Drawing.Size(1378, 583);
             this.tabControl1.TabIndex = 0;
             // 
             // tabPage1
             // 
             this.tabPage1.Controls.Add(this.panel1);
-            this.tabPage1.Location = new System.Drawing.Point(4, 36);
-            this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.tabPage1.Location = new System.Drawing.Point(4, 31);
+            this.tabPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.tabPage1.Name = "tabPage1";
-            this.tabPage1.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
-            this.tabPage1.Size = new System.Drawing.Size(1830, 689);
+            this.tabPage1.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.tabPage1.Size = new System.Drawing.Size(1370, 548);
             this.tabPage1.TabIndex = 0;
             this.tabPage1.Text = "数据下载";
             this.tabPage1.UseVisualStyleBackColor = true;
@@ -188,10 +188,10 @@
             this.panel1.Controls.Add(this.pgDownload);
             this.panel1.Controls.Add(this.panel2);
             this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
-            this.panel1.Location = new System.Drawing.Point(4, 3);
-            this.panel1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel1.Location = new System.Drawing.Point(3, 2);
+            this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel1.Name = "panel1";
-            this.panel1.Size = new System.Drawing.Size(1822, 683);
+            this.panel1.Size = new System.Drawing.Size(1364, 544);
             this.panel1.TabIndex = 0;
             // 
             // dgvDirectoy
@@ -224,7 +224,7 @@
             this.dgvDirectoy.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dgvDirectoy.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
             this.dgvDirectoy.Location = new System.Drawing.Point(0, 0);
-            this.dgvDirectoy.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.dgvDirectoy.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.dgvDirectoy.Name = "dgvDirectoy";
             dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
             dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
@@ -240,7 +240,7 @@
             this.dgvDirectoy.RowsDefaultCellStyle = dataGridViewCellStyle5;
             this.dgvDirectoy.RowTemplate.Height = 23;
             this.dgvDirectoy.SelectedIndex = -1;
-            this.dgvDirectoy.Size = new System.Drawing.Size(1822, 334);
+            this.dgvDirectoy.Size = new System.Drawing.Size(1364, 264);
             this.dgvDirectoy.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
             this.dgvDirectoy.TabIndex = 3;
             this.dgvDirectoy.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -250,15 +250,15 @@
             // 
             this.pgDownload.Dock = System.Windows.Forms.DockStyle.Bottom;
             this.pgDownload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.pgDownload.Location = new System.Drawing.Point(0, 334);
-            this.pgDownload.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.pgDownload.Location = new System.Drawing.Point(0, 264);
+            this.pgDownload.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.pgDownload.MinimumSize = new System.Drawing.Size(2, 2);
             this.pgDownload.Name = "pgDownload";
             this.pgDownload.PagerCount = 13;
             this.pgDownload.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
             this.pgDownload.ShowJumpButton = false;
             this.pgDownload.ShowText = false;
-            this.pgDownload.Size = new System.Drawing.Size(1822, 37);
+            this.pgDownload.Size = new System.Drawing.Size(1364, 30);
             this.pgDownload.TabIndex = 2;
             this.pgDownload.Text = "uiPagination1";
             this.pgDownload.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -279,10 +279,10 @@
             this.panel2.Controls.Add(this.uiProcessBar1);
             this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
             this.panel2.Font = new System.Drawing.Font("华文隶书", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.panel2.Location = new System.Drawing.Point(0, 371);
-            this.panel2.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel2.Location = new System.Drawing.Point(0, 294);
+            this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel2.Name = "panel2";
-            this.panel2.Size = new System.Drawing.Size(1822, 312);
+            this.panel2.Size = new System.Drawing.Size(1364, 250);
             this.panel2.TabIndex = 1;
             // 
             // rbgDirecType
@@ -314,12 +314,12 @@
             "医保目录自付比例",
             "医药机构信息"});
             this.rbgDirecType.ItemSize = new System.Drawing.Size(150, 30);
-            this.rbgDirecType.Location = new System.Drawing.Point(9, -10);
-            this.rbgDirecType.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.rbgDirecType.Location = new System.Drawing.Point(7, -8);
+            this.rbgDirecType.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.rbgDirecType.MinimumSize = new System.Drawing.Size(2, 2);
             this.rbgDirecType.Name = "rbgDirecType";
-            this.rbgDirecType.Padding = new System.Windows.Forms.Padding(0, 40, 0, 0);
-            this.rbgDirecType.Size = new System.Drawing.Size(640, 302);
+            this.rbgDirecType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.rbgDirecType.Size = new System.Drawing.Size(480, 242);
             this.rbgDirecType.TabIndex = 24;
             this.rbgDirecType.Text = "请选择下载类型";
             this.rbgDirecType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -332,11 +332,11 @@
             this.btnExit.ContextMenuStrip = this.cmsMapping;
             this.btnExit.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnExit.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnExit.Location = new System.Drawing.Point(1610, 252);
-            this.btnExit.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnExit.Location = new System.Drawing.Point(1206, 202);
+            this.btnExit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnExit.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnExit.Name = "btnExit";
-            this.btnExit.Size = new System.Drawing.Size(189, 40);
+            this.btnExit.Size = new System.Drawing.Size(142, 32);
             this.btnExit.TabIndex = 23;
             this.btnExit.Text = "退出";
             this.btnExit.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -356,42 +356,49 @@
             this.ToolStripMenuItem_CancelUpload,
             this.batchUpdateCategory});
             this.cmsMapping.Name = "uiContextMenuStrip1";
-            this.cmsMapping.Size = new System.Drawing.Size(325, 198);
+            this.cmsMapping.Size = new System.Drawing.Size(273, 140);
             this.cmsMapping.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
             // tsmiMapping
             // 
             this.tsmiMapping.Name = "tsmiMapping";
-            this.tsmiMapping.Size = new System.Drawing.Size(324, 32);
+            this.tsmiMapping.Size = new System.Drawing.Size(272, 26);
             this.tsmiMapping.Text = "对照";
             this.tsmiMapping.Click += new System.EventHandler(this.tsmiMapping_Click);
             // 
             // tsmiCancleMapping
             // 
             this.tsmiCancleMapping.Name = "tsmiCancleMapping";
-            this.tsmiCancleMapping.Size = new System.Drawing.Size(324, 32);
+            this.tsmiCancleMapping.Size = new System.Drawing.Size(272, 26);
             this.tsmiCancleMapping.Text = "取消对照";
             this.tsmiCancleMapping.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
             // 
             // toolStripSeparator1
             // 
             this.toolStripSeparator1.Name = "toolStripSeparator1";
-            this.toolStripSeparator1.Size = new System.Drawing.Size(321, 6);
+            this.toolStripSeparator1.Size = new System.Drawing.Size(269, 6);
             // 
             // ToolStripMenuItem_Upload
             // 
             this.ToolStripMenuItem_Upload.Name = "ToolStripMenuItem_Upload";
-            this.ToolStripMenuItem_Upload.Size = new System.Drawing.Size(324, 32);
+            this.ToolStripMenuItem_Upload.Size = new System.Drawing.Size(272, 26);
             this.ToolStripMenuItem_Upload.Text = "单条目录对照关系上传";
             this.ToolStripMenuItem_Upload.Click += new System.EventHandler(this.ToolStripMenuItem_Upload_Click);
             // 
             // ToolStripMenuItem_CancelUpload
             // 
             this.ToolStripMenuItem_CancelUpload.Name = "ToolStripMenuItem_CancelUpload";
-            this.ToolStripMenuItem_CancelUpload.Size = new System.Drawing.Size(324, 32);
+            this.ToolStripMenuItem_CancelUpload.Size = new System.Drawing.Size(272, 26);
             this.ToolStripMenuItem_CancelUpload.Text = "单条目录对照关系上传撤销";
             this.ToolStripMenuItem_CancelUpload.Click += new System.EventHandler(this.ToolStripMenuItem_CancelUpload_Click);
             // 
+            // batchUpdateCategory
+            // 
+            this.batchUpdateCategory.Name = "batchUpdateCategory";
+            this.batchUpdateCategory.Size = new System.Drawing.Size(272, 26);
+            this.batchUpdateCategory.Text = "批量更新甲乙类(已对照)";
+            this.batchUpdateCategory.Click += new System.EventHandler(this.batchUpdateCategory_Click);
+            // 
             // uiGroupBox3
             // 
             this.uiGroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
@@ -401,12 +408,12 @@
             this.uiGroupBox3.Controls.Add(this.TexDQYS);
             this.uiGroupBox3.Controls.Add(this.TexDate);
             this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiGroupBox3.Location = new System.Drawing.Point(1389, 22);
-            this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.uiGroupBox3.Location = new System.Drawing.Point(1042, 18);
+            this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.uiGroupBox3.MinimumSize = new System.Drawing.Size(2, 2);
             this.uiGroupBox3.Name = "uiGroupBox3";
-            this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 40, 0, 0);
-            this.uiGroupBox3.Size = new System.Drawing.Size(235, 270);
+            this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox3.Size = new System.Drawing.Size(176, 216);
             this.uiGroupBox3.TabIndex = 22;
             this.uiGroupBox3.Text = "查询条件";
             this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -482,11 +489,11 @@
             this.btEditDir.ContextMenuStrip = this.cmsMapping;
             this.btEditDir.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btEditDir.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btEditDir.Location = new System.Drawing.Point(1710, 135);
-            this.btEditDir.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btEditDir.Location = new System.Drawing.Point(1280, 108);
+            this.btEditDir.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btEditDir.MinimumSize = new System.Drawing.Size(2, 2);
             this.btEditDir.Name = "btEditDir";
-            this.btEditDir.Size = new System.Drawing.Size(89, 40);
+            this.btEditDir.Size = new System.Drawing.Size(67, 32);
             this.btEditDir.TabIndex = 19;
             this.btEditDir.Text = "修改";
             this.btEditDir.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -499,11 +506,11 @@
             this.btAddDir.ContextMenuStrip = this.cmsMapping;
             this.btAddDir.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btAddDir.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btAddDir.Location = new System.Drawing.Point(1710, 47);
-            this.btAddDir.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btAddDir.Location = new System.Drawing.Point(1280, 38);
+            this.btAddDir.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btAddDir.MinimumSize = new System.Drawing.Size(2, 2);
             this.btAddDir.Name = "btAddDir";
-            this.btAddDir.Size = new System.Drawing.Size(89, 40);
+            this.btAddDir.Size = new System.Drawing.Size(67, 32);
             this.btAddDir.TabIndex = 18;
             this.btAddDir.Text = "新增";
             this.btAddDir.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -517,12 +524,12 @@
             this.uiGroupBox5.Controls.Add(this.tbDicType);
             this.uiGroupBox5.Controls.Add(this.tbDicDate);
             this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiGroupBox5.Location = new System.Drawing.Point(917, -118);
-            this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.uiGroupBox5.Location = new System.Drawing.Point(688, -94);
+            this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.uiGroupBox5.MinimumSize = new System.Drawing.Size(2, 2);
             this.uiGroupBox5.Name = "uiGroupBox5";
-            this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 40, 0, 0);
-            this.uiGroupBox5.Size = new System.Drawing.Size(227, 363);
+            this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox5.Size = new System.Drawing.Size(170, 290);
             this.uiGroupBox5.TabIndex = 17;
             this.uiGroupBox5.Text = "字典下载";
             this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -571,12 +578,12 @@
             this.uiGroupBox2.Controls.Add(this.tbDircetoryName);
             this.uiGroupBox2.Controls.Add(this.tbDirectoryCode);
             this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiGroupBox2.Location = new System.Drawing.Point(1149, -118);
-            this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.uiGroupBox2.Location = new System.Drawing.Point(862, -94);
+            this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.uiGroupBox2.MinimumSize = new System.Drawing.Size(2, 2);
             this.uiGroupBox2.Name = "uiGroupBox2";
-            this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 40, 0, 0);
-            this.uiGroupBox2.Size = new System.Drawing.Size(233, 363);
+            this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox2.Size = new System.Drawing.Size(175, 290);
             this.uiGroupBox2.TabIndex = 15;
             this.uiGroupBox2.Text = "查询";
             this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -624,12 +631,12 @@
             this.uiGroupBox1.Controls.Add(this.rbSingleDown);
             this.uiGroupBox1.Controls.Add(this.tbVer);
             this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiGroupBox1.Location = new System.Drawing.Point(656, -122);
-            this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.uiGroupBox1.Location = new System.Drawing.Point(492, -98);
+            this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.uiGroupBox1.MinimumSize = new System.Drawing.Size(2, 2);
             this.uiGroupBox1.Name = "uiGroupBox1";
-            this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 40, 0, 0);
-            this.uiGroupBox1.Size = new System.Drawing.Size(258, 367);
+            this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox1.Size = new System.Drawing.Size(194, 294);
             this.uiGroupBox1.TabIndex = 14;
             this.uiGroupBox1.Text = "目录下载";
             this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -687,11 +694,11 @@
             this.btnQuery.ContextMenuStrip = this.cmsMapping;
             this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnQuery.Location = new System.Drawing.Point(1610, 47);
-            this.btnQuery.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnQuery.Location = new System.Drawing.Point(1206, 38);
+            this.btnQuery.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnQuery.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnQuery.Name = "btnQuery";
-            this.btnQuery.Size = new System.Drawing.Size(89, 40);
+            this.btnQuery.Size = new System.Drawing.Size(67, 32);
             this.btnQuery.TabIndex = 13;
             this.btnQuery.Text = "查询";
             this.btnQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -704,11 +711,11 @@
             this.btnDownload.ContextMenuStrip = this.cmsMapping;
             this.btnDownload.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnDownload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnDownload.Location = new System.Drawing.Point(1610, 135);
-            this.btnDownload.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnDownload.Location = new System.Drawing.Point(1206, 108);
+            this.btnDownload.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnDownload.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnDownload.Name = "btnDownload";
-            this.btnDownload.Size = new System.Drawing.Size(89, 40);
+            this.btnDownload.Size = new System.Drawing.Size(67, 32);
             this.btnDownload.TabIndex = 12;
             this.btnDownload.Text = "下载";
             this.btnDownload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -720,11 +727,11 @@
             this.uiProcessBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
             this.uiProcessBar1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
             this.uiProcessBar1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiProcessBar1.Location = new System.Drawing.Point(656, 255);
-            this.uiProcessBar1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
-            this.uiProcessBar1.MinimumSize = new System.Drawing.Size(93, 3);
+            this.uiProcessBar1.Location = new System.Drawing.Point(492, 204);
+            this.uiProcessBar1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.uiProcessBar1.MinimumSize = new System.Drawing.Size(70, 2);
             this.uiProcessBar1.Name = "uiProcessBar1";
-            this.uiProcessBar1.Size = new System.Drawing.Size(728, 37);
+            this.uiProcessBar1.Size = new System.Drawing.Size(546, 30);
             this.uiProcessBar1.TabIndex = 11;
             this.uiProcessBar1.Text = "uiProcessBar1";
             this.uiProcessBar1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -733,11 +740,11 @@
             // 
             this.tabPage2.Controls.Add(this.panel7);
             this.tabPage2.Controls.Add(this.uiPanel3);
-            this.tabPage2.Location = new System.Drawing.Point(4, 36);
-            this.tabPage2.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.tabPage2.Location = new System.Drawing.Point(4, 31);
+            this.tabPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.tabPage2.Name = "tabPage2";
-            this.tabPage2.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
-            this.tabPage2.Size = new System.Drawing.Size(1830, 689);
+            this.tabPage2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.tabPage2.Size = new System.Drawing.Size(1370, 548);
             this.tabPage2.TabIndex = 1;
             this.tabPage2.Text = "数据对照";
             this.tabPage2.UseVisualStyleBackColor = true;
@@ -746,10 +753,10 @@
             // 
             this.panel7.Controls.Add(this.uiSplitContainer1);
             this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
-            this.panel7.Location = new System.Drawing.Point(242, 3);
-            this.panel7.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel7.Location = new System.Drawing.Point(181, 2);
+            this.panel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel7.Name = "panel7";
-            this.panel7.Size = new System.Drawing.Size(1584, 683);
+            this.panel7.Size = new System.Drawing.Size(1186, 544);
             this.panel7.TabIndex = 3;
             // 
             // uiSplitContainer1
@@ -757,8 +764,8 @@
             this.uiSplitContainer1.Cursor = System.Windows.Forms.Cursors.Default;
             this.uiSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
             this.uiSplitContainer1.Location = new System.Drawing.Point(0, 0);
-            this.uiSplitContainer1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
-            this.uiSplitContainer1.MinimumSize = new System.Drawing.Size(27, 25);
+            this.uiSplitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.uiSplitContainer1.MinimumSize = new System.Drawing.Size(20, 20);
             this.uiSplitContainer1.Name = "uiSplitContainer1";
             this.uiSplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
             // 
@@ -770,9 +777,9 @@
             // uiSplitContainer1.Panel2
             // 
             this.uiSplitContainer1.Panel2.Controls.Add(this.panel4);
-            this.uiSplitContainer1.Size = new System.Drawing.Size(1584, 683);
-            this.uiSplitContainer1.SplitterDistance = 344;
-            this.uiSplitContainer1.SplitterWidth = 13;
+            this.uiSplitContainer1.Size = new System.Drawing.Size(1186, 544);
+            this.uiSplitContainer1.SplitterDistance = 273;
+            this.uiSplitContainer1.SplitterWidth = 11;
             this.uiSplitContainer1.TabIndex = 3;
             this.uiSplitContainer1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
@@ -783,9 +790,9 @@
             this.panel3.Controls.Add(this.pgHISDirect);
             this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
             this.panel3.Location = new System.Drawing.Point(0, 0);
-            this.panel3.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel3.Name = "panel3";
-            this.panel3.Size = new System.Drawing.Size(1584, 344);
+            this.panel3.Size = new System.Drawing.Size(1186, 273);
             this.panel3.TabIndex = 2;
             // 
             // dgvHISDirectory
@@ -818,8 +825,8 @@
             this.dgvHISDirectory.EnableHeadersVisualStyles = false;
             this.dgvHISDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dgvHISDirectory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
-            this.dgvHISDirectory.Location = new System.Drawing.Point(0, 57);
-            this.dgvHISDirectory.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.dgvHISDirectory.Location = new System.Drawing.Point(0, 46);
+            this.dgvHISDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.dgvHISDirectory.Name = "dgvHISDirectory";
             dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
             dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
@@ -836,7 +843,7 @@
             this.dgvHISDirectory.RowsDefaultCellStyle = dataGridViewCellStyle10;
             this.dgvHISDirectory.RowTemplate.Height = 25;
             this.dgvHISDirectory.SelectedIndex = -1;
-            this.dgvHISDirectory.Size = new System.Drawing.Size(1584, 244);
+            this.dgvHISDirectory.Size = new System.Drawing.Size(1186, 193);
             this.dgvHISDirectory.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
             this.dgvHISDirectory.TabIndex = 4;
             this.dgvHISDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -857,24 +864,23 @@
             this.panel5.Controls.Add(this.tbHISDirectoryFilter);
             this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
             this.panel5.Location = new System.Drawing.Point(0, 0);
-            this.panel5.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel5.Name = "panel5";
-            this.panel5.Size = new System.Drawing.Size(1584, 57);
+            this.panel5.Size = new System.Drawing.Size(1186, 46);
             this.panel5.TabIndex = 1;
             // 
             // btnExport
             // 
             this.btnExport.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnExport.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnExport.Location = new System.Drawing.Point(1094, 10);
-            this.btnExport.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnExport.Location = new System.Drawing.Point(820, 8);
+            this.btnExport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnExport.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnExport.Name = "btnExport";
-            this.btnExport.Size = new System.Drawing.Size(133, 35);
+            this.btnExport.Size = new System.Drawing.Size(100, 28);
             this.btnExport.TabIndex = 13;
             this.btnExport.Text = "导  出";
             this.btnExport.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnExport.Visible = false;
             this.btnExport.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
             // 
@@ -883,11 +889,11 @@
             this.btnCancelUpShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
             this.btnCancelUpShip.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnCancelUpShip.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnCancelUpShip.Location = new System.Drawing.Point(1387, 10);
-            this.btnCancelUpShip.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.btnCancelUpShip.Location = new System.Drawing.Point(1038, 8);
+            this.btnCancelUpShip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
             this.btnCancelUpShip.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnCancelUpShip.Name = "btnCancelUpShip";
-            this.btnCancelUpShip.Size = new System.Drawing.Size(187, 35);
+            this.btnCancelUpShip.Size = new System.Drawing.Size(140, 28);
             this.btnCancelUpShip.TabIndex = 11;
             this.btnCancelUpShip.Text = "撤销目录对照上传";
             this.btnCancelUpShip.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -899,11 +905,11 @@
             this.btnUpShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
             this.btnUpShip.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnUpShip.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnUpShip.Location = new System.Drawing.Point(1234, 10);
-            this.btnUpShip.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+            this.btnUpShip.Location = new System.Drawing.Point(924, 8);
+            this.btnUpShip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
             this.btnUpShip.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnUpShip.Name = "btnUpShip";
-            this.btnUpShip.Size = new System.Drawing.Size(147, 35);
+            this.btnUpShip.Size = new System.Drawing.Size(110, 28);
             this.btnUpShip.TabIndex = 10;
             this.btnUpShip.Text = "目录对照上传";
             this.btnUpShip.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -914,12 +920,12 @@
             // 
             this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiTextBox1.Location = new System.Drawing.Point(590, 10);
-            this.uiTextBox1.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.uiTextBox1.MinimumSize = new System.Drawing.Size(2, 20);
+            this.uiTextBox1.Location = new System.Drawing.Point(442, 8);
+            this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.uiTextBox1.MinimumSize = new System.Drawing.Size(2, 16);
             this.uiTextBox1.Name = "uiTextBox1";
             this.uiTextBox1.ShowText = false;
-            this.uiTextBox1.Size = new System.Drawing.Size(200, 37);
+            this.uiTextBox1.Size = new System.Drawing.Size(150, 30);
             this.uiTextBox1.TabIndex = 9;
             this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.uiTextBox1.Watermark = "已对照医保名称/编码";
@@ -929,12 +935,12 @@
             // 
             this.rbAll.Cursor = System.Windows.Forms.Cursors.Hand;
             this.rbAll.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.rbAll.Location = new System.Drawing.Point(799, 17);
-            this.rbAll.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.rbAll.Location = new System.Drawing.Point(599, 14);
+            this.rbAll.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.rbAll.MinimumSize = new System.Drawing.Size(2, 2);
             this.rbAll.Name = "rbAll";
             this.rbAll.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
-            this.rbAll.Size = new System.Drawing.Size(84, 28);
+            this.rbAll.Size = new System.Drawing.Size(63, 22);
             this.rbAll.TabIndex = 8;
             this.rbAll.Text = "全部";
             this.rbAll.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -944,12 +950,12 @@
             // 
             this.rbNoMaped.Cursor = System.Windows.Forms.Cursors.Hand;
             this.rbNoMaped.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.rbNoMaped.Location = new System.Drawing.Point(997, 17);
-            this.rbNoMaped.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.rbNoMaped.Location = new System.Drawing.Point(748, 14);
+            this.rbNoMaped.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.rbNoMaped.MinimumSize = new System.Drawing.Size(2, 2);
             this.rbNoMaped.Name = "rbNoMaped";
             this.rbNoMaped.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
-            this.rbNoMaped.Size = new System.Drawing.Size(84, 28);
+            this.rbNoMaped.Size = new System.Drawing.Size(63, 22);
             this.rbNoMaped.TabIndex = 7;
             this.rbNoMaped.Text = "未对照";
             this.rbNoMaped.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -959,12 +965,12 @@
             // 
             this.rbMaped.Cursor = System.Windows.Forms.Cursors.Hand;
             this.rbMaped.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.rbMaped.Location = new System.Drawing.Point(897, 17);
-            this.rbMaped.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.rbMaped.Location = new System.Drawing.Point(673, 14);
+            this.rbMaped.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.rbMaped.MinimumSize = new System.Drawing.Size(2, 2);
             this.rbMaped.Name = "rbMaped";
             this.rbMaped.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
-            this.rbMaped.Size = new System.Drawing.Size(84, 28);
+            this.rbMaped.Size = new System.Drawing.Size(63, 22);
             this.rbMaped.TabIndex = 6;
             this.rbMaped.Text = "已对照";
             this.rbMaped.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -974,11 +980,11 @@
             // 
             this.btnQueryHISDirectory.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnQueryHISDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnQueryHISDirectory.Location = new System.Drawing.Point(13, 8);
-            this.btnQueryHISDirectory.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnQueryHISDirectory.Location = new System.Drawing.Point(10, 6);
+            this.btnQueryHISDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnQueryHISDirectory.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnQueryHISDirectory.Name = "btnQueryHISDirectory";
-            this.btnQueryHISDirectory.Size = new System.Drawing.Size(200, 35);
+            this.btnQueryHISDirectory.Size = new System.Drawing.Size(150, 28);
             this.btnQueryHISDirectory.TabIndex = 5;
             this.btnQueryHISDirectory.Text = "查询HIS目录";
             this.btnQueryHISDirectory.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -989,12 +995,12 @@
             // 
             this.txtSpecFilter.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.txtSpecFilter.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.txtSpecFilter.Location = new System.Drawing.Point(442, 10);
-            this.txtSpecFilter.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.txtSpecFilter.MinimumSize = new System.Drawing.Size(2, 20);
+            this.txtSpecFilter.Location = new System.Drawing.Point(332, 8);
+            this.txtSpecFilter.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.txtSpecFilter.MinimumSize = new System.Drawing.Size(2, 16);
             this.txtSpecFilter.Name = "txtSpecFilter";
             this.txtSpecFilter.ShowText = false;
-            this.txtSpecFilter.Size = new System.Drawing.Size(138, 37);
+            this.txtSpecFilter.Size = new System.Drawing.Size(104, 30);
             this.txtSpecFilter.TabIndex = 4;
             this.txtSpecFilter.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.txtSpecFilter.Watermark = "规格";
@@ -1004,12 +1010,12 @@
             // 
             this.tbHISDirectoryFilter.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbHISDirectoryFilter.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbHISDirectoryFilter.Location = new System.Drawing.Point(232, 10);
-            this.tbHISDirectoryFilter.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbHISDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbHISDirectoryFilter.Location = new System.Drawing.Point(174, 8);
+            this.tbHISDirectoryFilter.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbHISDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbHISDirectoryFilter.Name = "tbHISDirectoryFilter";
             this.tbHISDirectoryFilter.ShowText = false;
-            this.tbHISDirectoryFilter.Size = new System.Drawing.Size(200, 37);
+            this.tbHISDirectoryFilter.Size = new System.Drawing.Size(150, 30);
             this.tbHISDirectoryFilter.TabIndex = 4;
             this.tbHISDirectoryFilter.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbHISDirectoryFilter.Watermark = "HIS名称/编码";
@@ -1020,14 +1026,14 @@
             this.pgHISDirect.Controls.Add(this.LabExplain);
             this.pgHISDirect.Dock = System.Windows.Forms.DockStyle.Bottom;
             this.pgHISDirect.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.pgHISDirect.Location = new System.Drawing.Point(0, 301);
-            this.pgHISDirect.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.pgHISDirect.Location = new System.Drawing.Point(0, 239);
+            this.pgHISDirect.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.pgHISDirect.MinimumSize = new System.Drawing.Size(2, 2);
             this.pgHISDirect.Name = "pgHISDirect";
             this.pgHISDirect.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
             this.pgHISDirect.ShowJumpButton = false;
             this.pgHISDirect.ShowText = false;
-            this.pgHISDirect.Size = new System.Drawing.Size(1584, 43);
+            this.pgHISDirect.Size = new System.Drawing.Size(1186, 34);
             this.pgHISDirect.TabIndex = 6;
             this.pgHISDirect.Text = "uiPagination2";
             this.pgHISDirect.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -1041,7 +1047,7 @@
             this.LabExplain.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.LabExplain.Location = new System.Drawing.Point(741, 3);
             this.LabExplain.Name = "LabExplain";
-            this.LabExplain.Size = new System.Drawing.Size(416, 30);
+            this.LabExplain.Size = new System.Drawing.Size(414, 30);
             this.LabExplain.TabIndex = 26;
             this.LabExplain.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
             this.LabExplain.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -1053,9 +1059,9 @@
             this.panel4.Controls.Add(this.pgCenterDirect);
             this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
             this.panel4.Location = new System.Drawing.Point(0, 0);
-            this.panel4.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel4.Name = "panel4";
-            this.panel4.Size = new System.Drawing.Size(1584, 326);
+            this.panel4.Size = new System.Drawing.Size(1186, 260);
             this.panel4.TabIndex = 3;
             // 
             // dgvCenterDirectory
@@ -1087,8 +1093,8 @@
             this.dgvCenterDirectory.EnableHeadersVisualStyles = false;
             this.dgvCenterDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dgvCenterDirectory.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
-            this.dgvCenterDirectory.Location = new System.Drawing.Point(0, 50);
-            this.dgvCenterDirectory.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.dgvCenterDirectory.Location = new System.Drawing.Point(0, 40);
+            this.dgvCenterDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.dgvCenterDirectory.Name = "dgvCenterDirectory";
             dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
             dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
@@ -1104,7 +1110,7 @@
             this.dgvCenterDirectory.RowsDefaultCellStyle = dataGridViewCellStyle15;
             this.dgvCenterDirectory.RowTemplate.Height = 23;
             this.dgvCenterDirectory.SelectedIndex = -1;
-            this.dgvCenterDirectory.Size = new System.Drawing.Size(1584, 233);
+            this.dgvCenterDirectory.Size = new System.Drawing.Size(1186, 186);
             this.dgvCenterDirectory.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
             this.dgvCenterDirectory.TabIndex = 3;
             this.dgvCenterDirectory.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -1121,9 +1127,9 @@
             this.panel6.Controls.Add(this.tbCenterDirectoryFilter);
             this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
             this.panel6.Location = new System.Drawing.Point(0, 0);
-            this.panel6.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.panel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.panel6.Name = "panel6";
-            this.panel6.Size = new System.Drawing.Size(1584, 50);
+            this.panel6.Size = new System.Drawing.Size(1186, 40);
             this.panel6.TabIndex = 2;
             // 
             // tbManufacturer
@@ -1131,12 +1137,12 @@
             this.tbManufacturer.Controls.Add(this.uiTextBox8);
             this.tbManufacturer.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbManufacturer.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbManufacturer.Location = new System.Drawing.Point(1035, 7);
-            this.tbManufacturer.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbManufacturer.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbManufacturer.Location = new System.Drawing.Point(776, 6);
+            this.tbManufacturer.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbManufacturer.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbManufacturer.Name = "tbManufacturer";
             this.tbManufacturer.ShowText = false;
-            this.tbManufacturer.Size = new System.Drawing.Size(196, 37);
+            this.tbManufacturer.Size = new System.Drawing.Size(147, 30);
             this.tbManufacturer.TabIndex = 13;
             this.tbManufacturer.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbManufacturer.Watermark = "生产厂家";
@@ -1162,12 +1168,12 @@
             this.tbSpecifications.Controls.Add(this.uiTextBox6);
             this.tbSpecifications.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbSpecifications.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbSpecifications.Location = new System.Drawing.Point(1234, 7);
-            this.tbSpecifications.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbSpecifications.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbSpecifications.Location = new System.Drawing.Point(926, 6);
+            this.tbSpecifications.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbSpecifications.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbSpecifications.Name = "tbSpecifications";
             this.tbSpecifications.ShowText = false;
-            this.tbSpecifications.Size = new System.Drawing.Size(164, 37);
+            this.tbSpecifications.Size = new System.Drawing.Size(123, 30);
             this.tbSpecifications.TabIndex = 12;
             this.tbSpecifications.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbSpecifications.Watermark = "规格";
@@ -1194,12 +1200,12 @@
             this.tbDosageForm.Controls.Add(this.uiTextBox4);
             this.tbDosageForm.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbDosageForm.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbDosageForm.Location = new System.Drawing.Point(864, 7);
-            this.tbDosageForm.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbDosageForm.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbDosageForm.Location = new System.Drawing.Point(648, 6);
+            this.tbDosageForm.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbDosageForm.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbDosageForm.Name = "tbDosageForm";
             this.tbDosageForm.ShowText = false;
-            this.tbDosageForm.Size = new System.Drawing.Size(168, 37);
+            this.tbDosageForm.Size = new System.Drawing.Size(126, 30);
             this.tbDosageForm.TabIndex = 11;
             this.tbDosageForm.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbDosageForm.Watermark = "剂型名称";
@@ -1256,12 +1262,12 @@
             this.tbApprovalNO.Controls.Add(this.uiTextBox2);
             this.tbApprovalNO.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbApprovalNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbApprovalNO.Location = new System.Drawing.Point(697, 7);
-            this.tbApprovalNO.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbApprovalNO.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbApprovalNO.Location = new System.Drawing.Point(523, 6);
+            this.tbApprovalNO.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbApprovalNO.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbApprovalNO.Name = "tbApprovalNO";
             this.tbApprovalNO.ShowText = false;
-            this.tbApprovalNO.Size = new System.Drawing.Size(164, 37);
+            this.tbApprovalNO.Size = new System.Drawing.Size(123, 30);
             this.tbApprovalNO.TabIndex = 8;
             this.tbApprovalNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbApprovalNO.Watermark = "批准文号";
@@ -1286,12 +1292,12 @@
             // 
             this.tbInsuCode.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbInsuCode.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbInsuCode.Location = new System.Drawing.Point(388, 7);
-            this.tbInsuCode.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbInsuCode.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbInsuCode.Location = new System.Drawing.Point(291, 6);
+            this.tbInsuCode.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbInsuCode.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbInsuCode.Name = "tbInsuCode";
             this.tbInsuCode.ShowText = false;
-            this.tbInsuCode.Size = new System.Drawing.Size(307, 37);
+            this.tbInsuCode.Size = new System.Drawing.Size(230, 30);
             this.tbInsuCode.TabIndex = 7;
             this.tbInsuCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbInsuCode.Watermark = "输入准确编码";
@@ -1301,11 +1307,11 @@
             // 
             this.btnQueryCenterDirectory.Cursor = System.Windows.Forms.Cursors.Hand;
             this.btnQueryCenterDirectory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btnQueryCenterDirectory.Location = new System.Drawing.Point(14, 7);
-            this.btnQueryCenterDirectory.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.btnQueryCenterDirectory.Location = new System.Drawing.Point(10, 6);
+            this.btnQueryCenterDirectory.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.btnQueryCenterDirectory.MinimumSize = new System.Drawing.Size(2, 2);
             this.btnQueryCenterDirectory.Name = "btnQueryCenterDirectory";
-            this.btnQueryCenterDirectory.Size = new System.Drawing.Size(199, 38);
+            this.btnQueryCenterDirectory.Size = new System.Drawing.Size(149, 30);
             this.btnQueryCenterDirectory.TabIndex = 6;
             this.btnQueryCenterDirectory.Text = "查询中心目录";
             this.btnQueryCenterDirectory.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -1316,12 +1322,12 @@
             // 
             this.tbCenterDirectoryFilter.Cursor = System.Windows.Forms.Cursors.IBeam;
             this.tbCenterDirectoryFilter.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbCenterDirectoryFilter.Location = new System.Drawing.Point(217, 7);
-            this.tbCenterDirectoryFilter.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
-            this.tbCenterDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 20);
+            this.tbCenterDirectoryFilter.Location = new System.Drawing.Point(163, 6);
+            this.tbCenterDirectoryFilter.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
+            this.tbCenterDirectoryFilter.MinimumSize = new System.Drawing.Size(2, 16);
             this.tbCenterDirectoryFilter.Name = "tbCenterDirectoryFilter";
             this.tbCenterDirectoryFilter.ShowText = false;
-            this.tbCenterDirectoryFilter.Size = new System.Drawing.Size(168, 37);
+            this.tbCenterDirectoryFilter.Size = new System.Drawing.Size(126, 30);
             this.tbCenterDirectoryFilter.TabIndex = 5;
             this.tbCenterDirectoryFilter.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
             this.tbCenterDirectoryFilter.Watermark = "名称/缩写";
@@ -1332,14 +1338,14 @@
             this.pgCenterDirect.Controls.Add(this.uiButton1);
             this.pgCenterDirect.Dock = System.Windows.Forms.DockStyle.Bottom;
             this.pgCenterDirect.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.pgCenterDirect.Location = new System.Drawing.Point(0, 283);
-            this.pgCenterDirect.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.pgCenterDirect.Location = new System.Drawing.Point(0, 226);
+            this.pgCenterDirect.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.pgCenterDirect.MinimumSize = new System.Drawing.Size(2, 2);
             this.pgCenterDirect.Name = "pgCenterDirect";
             this.pgCenterDirect.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
             this.pgCenterDirect.ShowJumpButton = false;
             this.pgCenterDirect.ShowText = false;
-            this.pgCenterDirect.Size = new System.Drawing.Size(1584, 43);
+            this.pgCenterDirect.Size = new System.Drawing.Size(1186, 34);
             this.pgCenterDirect.TabIndex = 0;
             this.pgCenterDirect.Text = "uiPagination3";
             this.pgCenterDirect.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -1351,7 +1357,7 @@
             this.uiButton1.ContextMenuStrip = this.cmsMapping;
             this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
             this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiButton1.Location = new System.Drawing.Point(1360, 4);
+            this.uiButton1.Location = new System.Drawing.Point(1358, 4);
             this.uiButton1.Margin = new System.Windows.Forms.Padding(4);
             this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
             this.uiButton1.Name = "uiButton1";
@@ -1367,11 +1373,11 @@
             this.uiPanel3.Controls.Add(this.rbgDirecType_C);
             this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
             this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiPanel3.Location = new System.Drawing.Point(4, 3);
-            this.uiPanel3.Margin = new System.Windows.Forms.Padding(5, 7, 5, 7);
+            this.uiPanel3.Location = new System.Drawing.Point(3, 2);
+            this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
             this.uiPanel3.MinimumSize = new System.Drawing.Size(2, 2);
             this.uiPanel3.Name = "uiPanel3";
-            this.uiPanel3.Size = new System.Drawing.Size(238, 683);
+            this.uiPanel3.Size = new System.Drawing.Size(178, 544);
             this.uiPanel3.TabIndex = 5;
             this.uiPanel3.Text = null;
             this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -1390,7 +1396,7 @@
             this.rbgDirecType_C.MinimumSize = new System.Drawing.Size(1, 1);
             this.rbgDirecType_C.Name = "rbgDirecType_C";
             this.rbgDirecType_C.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
-            this.rbgDirecType_C.Size = new System.Drawing.Size(238, 683);
+            this.rbgDirecType_C.Size = new System.Drawing.Size(178, 544);
             this.rbgDirecType_C.TabIndex = 6;
             this.rbgDirecType_C.Text = "目录类型";
             this.rbgDirecType_C.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -1406,20 +1412,20 @@
             this.limitPriceUpdate,
             this.toolStripSeparator2});
             this.cmsUpdateInsuDir.Name = "uiContextMenuStrip1";
-            this.cmsUpdateInsuDir.Size = new System.Drawing.Size(245, 42);
+            this.cmsUpdateInsuDir.Size = new System.Drawing.Size(209, 36);
             this.cmsUpdateInsuDir.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
             // limitPriceUpdate
             // 
             this.limitPriceUpdate.Name = "limitPriceUpdate";
-            this.limitPriceUpdate.Size = new System.Drawing.Size(244, 32);
+            this.limitPriceUpdate.Size = new System.Drawing.Size(208, 26);
             this.limitPriceUpdate.Text = "医保目录限价信息";
             this.limitPriceUpdate.Click += new System.EventHandler(this.limitPriceUpdate_Click);
             // 
             // toolStripSeparator2
             // 
             this.toolStripSeparator2.Name = "toolStripSeparator2";
-            this.toolStripSeparator2.Size = new System.Drawing.Size(241, 6);
+            this.toolStripSeparator2.Size = new System.Drawing.Size(205, 6);
             // 
             // cmsUpdateAuxInfo
             // 
@@ -1430,37 +1436,30 @@
             this.tsmiSingleUpdateAuxInfo,
             this.tsmiUpdateAllAuxInfo});
             this.cmsUpdateAuxInfo.Name = "cmsUpdateAuxInfo";
-            this.cmsUpdateAuxInfo.Size = new System.Drawing.Size(285, 68);
+            this.cmsUpdateAuxInfo.Size = new System.Drawing.Size(241, 56);
             this.cmsUpdateAuxInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
             // tsmiSingleUpdateAuxInfo
             // 
             this.tsmiSingleUpdateAuxInfo.Name = "tsmiSingleUpdateAuxInfo";
-            this.tsmiSingleUpdateAuxInfo.Size = new System.Drawing.Size(284, 32);
+            this.tsmiSingleUpdateAuxInfo.Size = new System.Drawing.Size(240, 26);
             this.tsmiSingleUpdateAuxInfo.Text = "单新单条目录附属信息";
             // 
             // tsmiUpdateAllAuxInfo
             // 
             this.tsmiUpdateAllAuxInfo.Name = "tsmiUpdateAllAuxInfo";
-            this.tsmiUpdateAllAuxInfo.Size = new System.Drawing.Size(284, 32);
+            this.tsmiUpdateAllAuxInfo.Size = new System.Drawing.Size(240, 26);
             this.tsmiUpdateAllAuxInfo.Text = "更新所有目录附属信息";
             // 
-            // batchUpdateCategory
-            // 
-            this.batchUpdateCategory.Name = "batchUpdateCategory";
-            this.batchUpdateCategory.Size = new System.Drawing.Size(324, 32);
-            this.batchUpdateCategory.Text = "批量更新甲乙类(已对照)";
-            this.batchUpdateCategory.Click += new System.EventHandler(this.batchUpdateCategory_Click);
-            // 
             // BasicData
             // 
-            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
             this.AutoSize = true;
             this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
-            this.ClientSize = new System.Drawing.Size(1838, 729);
+            this.ClientSize = new System.Drawing.Size(1378, 583);
             this.Controls.Add(this.tabControl1);
-            this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+            this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
             this.Name = "BasicData";
             this.Text = "医保基础数据平台";
             this.Load += new System.EventHandler(this.Form1_Load);

+ 139 - 0
Forms/HandleException.cs

@@ -42,6 +42,7 @@ namespace PTMedicalInsurance.Forms
             //this.StartPosition = FormStartPosition.CenterParent;
             asc.controllInitializeSize(this);
             asc.controlAutoSize(this);
+            rbInsertFeeRecord.Checked = true;
         }
 
         private void HandleException_Load(object sender, EventArgs e)
@@ -545,5 +546,143 @@ namespace PTMedicalInsurance.Forms
             else
                 tb_DealNo.Visible = false;
         }
+
+        private string CheckNode(JObject joIn, string nodeName)
+        {
+            string tmp = JsonHelper.getDestValue(joIn, nodeName);
+            if (string.IsNullOrEmpty(tmp))
+            {
+                throw new Exception($"请在最外层添加 {nodeName} 节点");
+            }
+            else
+            {
+                return tmp;
+            }
+        }
+
+        private void btHandle_Click(object sender, EventArgs e)
+        {
+            string errMsg = "";
+
+            if (string.IsNullOrEmpty(rtbIn.Text))
+            {
+                MessageBox.Show("入参为空");
+                return;
+            }
+
+            JObject joIn = JObject.Parse(rtbIn.Text);
+            string HospitalDr = JsonHelper.getDestValue(joIn, "HospitalDr");
+            if (string.IsNullOrEmpty(HospitalDr))
+            {
+                MessageBox.Show("请在最外层添加 HospitalDr 节点");
+                return;
+            }
+
+            string AdmID = JsonHelper.getDestValue(joIn, "AdmID");
+            if (string.IsNullOrEmpty(AdmID))
+            {
+                MessageBox.Show("请在最外层添加 AdmID 节点");
+                return;
+            }
+
+
+            Global.inf.hospitalDr = int.Parse(HospitalDr);
+            Global.pat.adm_Dr = int.Parse(AdmID);
+            Global.pat.mdtrtID = CheckNode(joIn, "AdmID");
+            if (rbInsertFeeRecord.Checked)
+            {
+                string input = JsonHelper.getDestValue(joIn, "input.feedetail");
+                if (string.IsNullOrEmpty(input))
+                {
+                    MessageBox.Show("未获取到内容,请检查是否为基线版返回内容");
+                    return;
+                }
+                JArray jaDetail = JArray.Parse(input);
+
+                //成功后插入医保平台
+                if (mIS.insertFee(jaDetail, out errMsg) != 0)
+                {
+                    MessageBox.Show(errMsg);
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+                else
+                {
+                    MessageBox.Show("成功");
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+            }
+
+            if (rbUpdateFeeRecord.Checked)
+            {
+                string ret = JsonHelper.getDestValue(joIn, "output.result");
+                if (string.IsNullOrEmpty(ret))
+                {
+                    MessageBox.Show("未获取到内容,请检查是否为基线版返回内容");
+                    return;
+                }
+                JArray jaDetail = JArray.Parse(ret);
+
+                // 更新2301返回的数据
+                if (mIS.updateFee(jaDetail, out errMsg) != 0)
+                {
+                    MessageBox.Show(errMsg);
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+                else
+                {
+                    MessageBox.Show("成功");
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+            }
+
+            if (rbInsertSettlement.Checked)
+            {
+                string ret = JsonHelper.getDestValue(joIn, "output.setlinfo");
+                if (string.IsNullOrEmpty(ret))
+                {
+                    MessageBox.Show("未获取到内容,请检查是否为基线版返回内容");
+                    return;
+                }
+
+                string input = JsonHelper.getDestValue(joIn, "input");
+                if (string.IsNullOrEmpty(input))
+                {
+                    MessageBox.Show("未获取到入参内容,请将入参放入input节点");
+                    return;
+                }
+                JObject joInput = JObject.Parse(input);
+
+                Global.pat.billID = "111111";
+                Global.pat.recordID = "111111";
+                Global.inf.interfaceDr = int.Parse(CheckNode(joIn, "interfaceDr"));
+                Global.pat.admType = int.Parse(CheckNode(joIn, "admType"));
+                Global.pat.mutualAidFlag =  (CheckNode(joIn, "mutualAidFlag") == "1");
+
+                Global.curEvt.msgid = JsonHelper.getDestValue(joInput, "msgid");
+                Global.pat.insuplc_admdvs = JsonHelper.getDestValue(joInput, "insuplc_admdvs");
+                // 更新2301返回的数据
+                if (mIS.saveSettlement(joIn, out errMsg) != 0)
+                {
+                    MessageBox.Show(errMsg);
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+                else
+                {
+                    MessageBox.Show("成功");
+                    rtbOut.Text = errMsg;
+                    return;
+                }
+            }
+        }
+
+        private void uiButton5_Click(object sender, EventArgs e)
+        {
+            Close();
+        }
     }
 }

+ 239 - 0
Forms/HandleException.designer.cs

@@ -131,6 +131,19 @@
             this.dtSignEnd = new Sunny.UI.UIDatetimePicker();
             this.dtSignBegin = new Sunny.UI.UIDatetimePicker();
             this.dgvSignQuery = new Sunny.UI.UIDataGridView();
+            this.tabImportIRIS = new System.Windows.Forms.TabPage();
+            this.uiPanel7 = new Sunny.UI.UIPanel();
+            this.rbInsertSettlement = new System.Windows.Forms.RadioButton();
+            this.rbUpdateFeeRecord = new System.Windows.Forms.RadioButton();
+            this.rbInsertFeeRecord = new System.Windows.Forms.RadioButton();
+            this.uiButton5 = new Sunny.UI.UIButton();
+            this.btHandle = new Sunny.UI.UIButton();
+            this.uiPanel8 = new Sunny.UI.UIPanel();
+            this.uiSplitContainer1 = new Sunny.UI.UISplitContainer();
+            this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
+            this.rtbIn = new Sunny.UI.UIRichTextBox();
+            this.uiGroupBox8 = new Sunny.UI.UIGroupBox();
+            this.rtbOut = new Sunny.UI.UIRichTextBox();
             this.tcReverse.SuspendLayout();
             this.tpSettlReverse.SuspendLayout();
             this.panel2.SuspendLayout();
@@ -165,6 +178,15 @@
             this.gbQuery.SuspendLayout();
             this.uiGroupBox4.SuspendLayout();
             ((System.ComponentModel.ISupportInitialize)(this.dgvSignQuery)).BeginInit();
+            this.tabImportIRIS.SuspendLayout();
+            this.uiPanel7.SuspendLayout();
+            this.uiPanel8.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).BeginInit();
+            this.uiSplitContainer1.Panel1.SuspendLayout();
+            this.uiSplitContainer1.Panel2.SuspendLayout();
+            this.uiSplitContainer1.SuspendLayout();
+            this.uiGroupBox1.SuspendLayout();
+            this.uiGroupBox8.SuspendLayout();
             this.SuspendLayout();
             // 
             // tcReverse
@@ -174,6 +196,7 @@
             this.tcReverse.Controls.Add(this.tpHandReverse);
             this.tcReverse.Controls.Add(this.tpCancleOutPatReg);
             this.tcReverse.Controls.Add(this.tpSignQuery);
+            this.tcReverse.Controls.Add(this.tabImportIRIS);
             this.tcReverse.Dock = System.Windows.Forms.DockStyle.Fill;
             this.tcReverse.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
             this.tcReverse.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
@@ -1621,6 +1644,199 @@
             this.dgvSignQuery.TabIndex = 0;
             this.dgvSignQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
+            // tabImportIRIS
+            // 
+            this.tabImportIRIS.Controls.Add(this.uiPanel8);
+            this.tabImportIRIS.Controls.Add(this.uiPanel7);
+            this.tabImportIRIS.Location = new System.Drawing.Point(0, 40);
+            this.tabImportIRIS.Name = "tabImportIRIS";
+            this.tabImportIRIS.Size = new System.Drawing.Size(1321, 580);
+            this.tabImportIRIS.TabIndex = 5;
+            this.tabImportIRIS.Text = "IRIS数据恢复";
+            this.tabImportIRIS.UseVisualStyleBackColor = true;
+            // 
+            // uiPanel7
+            // 
+            this.uiPanel7.Controls.Add(this.rbInsertSettlement);
+            this.uiPanel7.Controls.Add(this.rbUpdateFeeRecord);
+            this.uiPanel7.Controls.Add(this.rbInsertFeeRecord);
+            this.uiPanel7.Controls.Add(this.uiButton5);
+            this.uiPanel7.Controls.Add(this.btHandle);
+            this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Bottom;
+            this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiPanel7.Location = new System.Drawing.Point(0, 467);
+            this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiPanel7.Name = "uiPanel7";
+            this.uiPanel7.Size = new System.Drawing.Size(1321, 113);
+            this.uiPanel7.TabIndex = 6;
+            this.uiPanel7.Text = null;
+            this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // rbInsertSettlement
+            // 
+            this.rbInsertSettlement.AutoSize = true;
+            this.rbInsertSettlement.Location = new System.Drawing.Point(12, 70);
+            this.rbInsertSettlement.Name = "rbInsertSettlement";
+            this.rbInsertSettlement.Size = new System.Drawing.Size(124, 25);
+            this.rbInsertSettlement.TabIndex = 29;
+            this.rbInsertSettlement.TabStop = true;
+            this.rbInsertSettlement.Text = "插入结算数据";
+            this.rbInsertSettlement.UseVisualStyleBackColor = true;
+            // 
+            // rbUpdateFeeRecord
+            // 
+            this.rbUpdateFeeRecord.AutoSize = true;
+            this.rbUpdateFeeRecord.Location = new System.Drawing.Point(12, 39);
+            this.rbUpdateFeeRecord.Name = "rbUpdateFeeRecord";
+            this.rbUpdateFeeRecord.Size = new System.Drawing.Size(124, 25);
+            this.rbUpdateFeeRecord.TabIndex = 28;
+            this.rbUpdateFeeRecord.TabStop = true;
+            this.rbUpdateFeeRecord.Text = "更新费用明细";
+            this.rbUpdateFeeRecord.UseVisualStyleBackColor = true;
+            // 
+            // rbInsertFeeRecord
+            // 
+            this.rbInsertFeeRecord.AutoSize = true;
+            this.rbInsertFeeRecord.Location = new System.Drawing.Point(12, 8);
+            this.rbInsertFeeRecord.Name = "rbInsertFeeRecord";
+            this.rbInsertFeeRecord.Size = new System.Drawing.Size(124, 25);
+            this.rbInsertFeeRecord.TabIndex = 27;
+            this.rbInsertFeeRecord.TabStop = true;
+            this.rbInsertFeeRecord.Text = "插入费用明细";
+            this.rbInsertFeeRecord.UseVisualStyleBackColor = true;
+            // 
+            // uiButton5
+            // 
+            this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+            this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiButton5.Location = new System.Drawing.Point(1170, 25);
+            this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiButton5.Name = "uiButton5";
+            this.uiButton5.Size = new System.Drawing.Size(121, 46);
+            this.uiButton5.TabIndex = 26;
+            this.uiButton5.Text = "退    出";
+            this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.uiButton5.Click += new System.EventHandler(this.uiButton5_Click);
+            // 
+            // btHandle
+            // 
+            this.btHandle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+            this.btHandle.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.btHandle.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btHandle.Location = new System.Drawing.Point(1002, 25);
+            this.btHandle.MinimumSize = new System.Drawing.Size(1, 1);
+            this.btHandle.Name = "btHandle";
+            this.btHandle.Size = new System.Drawing.Size(121, 46);
+            this.btHandle.TabIndex = 1;
+            this.btHandle.Text = "处理";
+            this.btHandle.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btHandle.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.btHandle.Click += new System.EventHandler(this.btHandle_Click);
+            // 
+            // uiPanel8
+            // 
+            this.uiPanel8.Controls.Add(this.uiSplitContainer1);
+            this.uiPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiPanel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiPanel8.Location = new System.Drawing.Point(0, 0);
+            this.uiPanel8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiPanel8.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiPanel8.Name = "uiPanel8";
+            this.uiPanel8.Size = new System.Drawing.Size(1321, 467);
+            this.uiPanel8.TabIndex = 7;
+            this.uiPanel8.Text = null;
+            this.uiPanel8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiSplitContainer1
+            // 
+            this.uiSplitContainer1.Cursor = System.Windows.Forms.Cursors.Default;
+            this.uiSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiSplitContainer1.Location = new System.Drawing.Point(0, 0);
+            this.uiSplitContainer1.MinimumSize = new System.Drawing.Size(20, 20);
+            this.uiSplitContainer1.Name = "uiSplitContainer1";
+            // 
+            // uiSplitContainer1.Panel1
+            // 
+            this.uiSplitContainer1.Panel1.Controls.Add(this.uiGroupBox1);
+            // 
+            // uiSplitContainer1.Panel2
+            // 
+            this.uiSplitContainer1.Panel2.Controls.Add(this.uiGroupBox8);
+            this.uiSplitContainer1.Size = new System.Drawing.Size(1321, 467);
+            this.uiSplitContainer1.SplitterDistance = 753;
+            this.uiSplitContainer1.SplitterWidth = 11;
+            this.uiSplitContainer1.TabIndex = 0;
+            this.uiSplitContainer1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiGroupBox1
+            // 
+            this.uiGroupBox1.Controls.Add(this.rtbIn);
+            this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiGroupBox1.Location = new System.Drawing.Point(0, 0);
+            this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiGroupBox1.Name = "uiGroupBox1";
+            this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox1.Size = new System.Drawing.Size(753, 467);
+            this.uiGroupBox1.TabIndex = 0;
+            this.uiGroupBox1.Text = "入参";
+            this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // rtbIn
+            // 
+            this.rtbIn.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.rtbIn.FillColor = System.Drawing.Color.White;
+            this.rtbIn.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.rtbIn.Location = new System.Drawing.Point(0, 32);
+            this.rtbIn.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.rtbIn.MinimumSize = new System.Drawing.Size(1, 1);
+            this.rtbIn.Name = "rtbIn";
+            this.rtbIn.Padding = new System.Windows.Forms.Padding(2);
+            this.rtbIn.ShowText = false;
+            this.rtbIn.Size = new System.Drawing.Size(753, 435);
+            this.rtbIn.TabIndex = 0;
+            this.rtbIn.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.rtbIn.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiGroupBox8
+            // 
+            this.uiGroupBox8.Controls.Add(this.rtbOut);
+            this.uiGroupBox8.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiGroupBox8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiGroupBox8.Location = new System.Drawing.Point(0, 0);
+            this.uiGroupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiGroupBox8.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiGroupBox8.Name = "uiGroupBox8";
+            this.uiGroupBox8.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
+            this.uiGroupBox8.Size = new System.Drawing.Size(557, 467);
+            this.uiGroupBox8.TabIndex = 1;
+            this.uiGroupBox8.Text = "出参";
+            this.uiGroupBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiGroupBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // rtbOut
+            // 
+            this.rtbOut.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.rtbOut.FillColor = System.Drawing.Color.White;
+            this.rtbOut.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.rtbOut.Location = new System.Drawing.Point(0, 32);
+            this.rtbOut.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.rtbOut.MinimumSize = new System.Drawing.Size(1, 1);
+            this.rtbOut.Name = "rtbOut";
+            this.rtbOut.Padding = new System.Windows.Forms.Padding(2);
+            this.rtbOut.ShowText = false;
+            this.rtbOut.Size = new System.Drawing.Size(557, 435);
+            this.rtbOut.TabIndex = 1;
+            this.rtbOut.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.rtbOut.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
             // HandleException
             // 
             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
@@ -1665,6 +1881,16 @@
             this.gbQuery.ResumeLayout(false);
             this.uiGroupBox4.ResumeLayout(false);
             ((System.ComponentModel.ISupportInitialize)(this.dgvSignQuery)).EndInit();
+            this.tabImportIRIS.ResumeLayout(false);
+            this.uiPanel7.ResumeLayout(false);
+            this.uiPanel7.PerformLayout();
+            this.uiPanel8.ResumeLayout(false);
+            this.uiSplitContainer1.Panel1.ResumeLayout(false);
+            this.uiSplitContainer1.Panel2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).EndInit();
+            this.uiSplitContainer1.ResumeLayout(false);
+            this.uiGroupBox1.ResumeLayout(false);
+            this.uiGroupBox8.ResumeLayout(false);
             this.ResumeLayout(false);
 
         }
@@ -1754,5 +1980,18 @@
         private Sunny.UI.UIButton uiButton2;
         private Sunny.UI.UITextBox tb_DealNo;
         private Sunny.UI.UICheckBox Chk_DealNo;
+        private System.Windows.Forms.TabPage tabImportIRIS;
+        private Sunny.UI.UIPanel uiPanel8;
+        private Sunny.UI.UISplitContainer uiSplitContainer1;
+        private Sunny.UI.UIGroupBox uiGroupBox1;
+        private Sunny.UI.UIRichTextBox rtbIn;
+        private Sunny.UI.UIGroupBox uiGroupBox8;
+        private Sunny.UI.UIRichTextBox rtbOut;
+        private Sunny.UI.UIPanel uiPanel7;
+        private System.Windows.Forms.RadioButton rbInsertSettlement;
+        private System.Windows.Forms.RadioButton rbUpdateFeeRecord;
+        private System.Windows.Forms.RadioButton rbInsertFeeRecord;
+        private Sunny.UI.UIButton uiButton5;
+        private Sunny.UI.UIButton btHandle;
     }
 }