Quellcode durchsuchen

feat: 增加双通道备案

zhengjie vor 1 Jahr
Ursprung
Commit
d6b5339daf

+ 89 - 2
Business/IrisServices.cs

@@ -533,7 +533,7 @@ namespace PTMedicalInsurance.Business
                 hospAmt = getFee(jo, "hosp_part_amt");   //医院承担金额
 
                 medFee = getFee(jo, "medfee_sumamt");    //总费用
-                ybAmt = medFee - psnAcctAmt - psnCashAmt - mutualAidAmt  - hospAmt;  //(医保支付金额)
+                ybAmt = medFee - psnAcctAmt - psnCashAmt  - hospAmt;  //(医保支付金额)
 
                 joSumFee.Add("ybAmt", ybAmt);
                 joSumFee.Add("psnAcctAmt", psnAcctAmt);
@@ -541,7 +541,7 @@ namespace PTMedicalInsurance.Business
                 joSumFee.Add("psnCashAmt", psnCashAmt);
                 //zje(medfee_sumamt) = ybfdje(fund_pay_sumamt) + brfdje(psn_part_amt) + ylbzje(maf_pay) + yyfdje(hosp_part_amt) + yljmje(medis_pay) + pkryzjzje(poor_pay) + mzbzje(hifob_pay)
 
-                decimal total = (ybAmt + psnAcctAmt  + psnCashAmt + mutualAidAmt + hospAmt);
+                decimal total = (ybAmt + psnAcctAmt  + psnCashAmt + hospAmt);
                 if (medFee != total)
                 {
                     Global.writeLog("ybAmt:"+ybAmt+ ",psnAcctAmt:" + psnAcctAmt + "psnCashAmt:"+ psnCashAmt + ",hospAmt:" + hospAmt);
@@ -2571,5 +2571,92 @@ namespace PTMedicalInsurance.Business
 
         #endregion
 
+
+        #region 备案
+        public int SaveReferralRecord(JObject joInput, out string outParam)
+        {
+            try
+            {
+                string errMsg = string.Empty;
+                string serviceCode = "02030004";
+                string inpar = JsonHelper.setIrisInpar(serviceCode, joInput).ToString();
+                JObject joRtn = invoker.invokeInsuService(inpar, "插入备案信息");
+
+                if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
+                {
+                    outParam = errMsg;
+                    return -1;
+                }
+                else
+                {
+                    outParam = joRtn.ToString();
+                    return 0;
+                }
+            }
+            catch (Exception ex)
+            {
+                outParam = "插入备案信息:" + ex.Message;
+                return -1;
+            }
+        }
+
+        public int CancelReferralRecord(JObject joInput, out string outParam)
+        {
+            try
+            {
+                string errMsg = string.Empty;
+                string serviceCode = "02030005";
+                string inpar = JsonHelper.setIrisInpar(serviceCode, joInput).ToString();
+                JObject joRtn = invoker.invokeInsuService(inpar, "撤销备案信息");
+
+                if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
+                {
+                    outParam = errMsg;
+                    return -1;
+                }
+                else
+                {
+                    outParam = joRtn.ToString();
+                    return 0;
+                }
+            }
+            catch (Exception ex)
+            {
+                outParam = "撤销备案信息:" + ex.Message;
+                return -1;
+            }
+
+        }
+
+        public int QueryReferralRecord(JObject joInput, out string outParam)
+        {
+            try
+            {
+                string errMsg = string.Empty;
+                string serviceCode = "02030006";
+                string inpar = JsonHelper.setIrisInpar(serviceCode, joInput).ToString();
+                JObject joRtn = invoker.invokeInsuService(inpar, "查询备案信息");
+
+                if (JsonHelper.parseIrisRtnValue(joRtn, out errMsg) != 0)
+                {
+                    outParam = errMsg;
+                    return -1;
+                }
+                else
+                {
+                    outParam = joRtn.ToString();
+                    return 0;
+                }
+            }
+            catch (Exception ex)
+            {
+                outParam = "查询备案信息:" + ex.Message;
+                return -1;
+            }
+
+        }
+
+        #endregion
+
     }
 }

+ 17 - 0
Common/AppExtension.cs

@@ -22,6 +22,17 @@ namespace PTMedicalInsurance.Common
             FieldInfo fd = type.GetField(tradeEnum.ToString());
             return getFieldCode(fd);
         }
+        /// <summary>
+        /// 获取交易描述信息
+        /// </summary>
+        /// <param name="tradeEnum"></param>
+        /// <returns></returns>
+        public static string GetName(this TradeEnum tradeEnum)
+        {
+            Type type = tradeEnum.GetType();
+            FieldInfo fd = type.GetField(tradeEnum.ToString());
+            return getFieldName(fd);
+        }
 
         public static ModeEnum GetMode(this TradeEnum tradeEnum)
         {
@@ -100,6 +111,12 @@ namespace PTMedicalInsurance.Common
             return attribute?.Code;
         }
 
+        private static string getFieldName(FieldInfo fd)
+        {
+            TradeAttribute attribute = getAttribte(fd);
+            return attribute?.Name;
+        }
+
         public static void Extend(this JObject jObject,string key,object value)
         {
             if (jObject != null && !jObject.ContainsKey(key))

+ 3 - 0
Common/Utils.cs

@@ -359,6 +359,9 @@ namespace PTMedicalInsurance.Common
         /// <returns></returns>
         public static string ConvertMdtrtcertNo(bool flag = true)
         {
+            if (Global.pat.mdtrtcertType == "03" && !string.IsNullOrEmpty(Global.pat.card.NO)) {
+                return Global.pat.card.NO;
+            }
             return Global.pat.mdtrtcertNO;
         }
 

+ 36 - 0
FormSetter/GridViewSetter.cs

@@ -985,6 +985,42 @@ namespace PTMedicalInsurance.FormSetter
         #endregion
 
 
+        #region 双通道备案
+
+        public void SetHeaderTextOfChannelBasicInfo(DataGridView dgv)
+        {
+            dgv.AutoGenerateColumns = false;
+            dgv.Columns.Clear();
+            AddDGVColumn(dgv, "人员编号", "PsnNo", 80);
+            AddDGVColumn(dgv, "人员名称", "Name", 80);
+            AddDGVColumn(dgv, "证件类型", "psn_cert_type", 50);
+            AddDGVColumn(dgv, "证件号码", "CardID", 100);
+            AddDGVColumn(dgv, "申请日期", "CreateDate", 120);
+            AddDGVColumn(dgv, "开始日期", "BegnDate", 120);
+            AddDGVColumn(dgv, "结束日期", "EndDate", 120);
+            AddDGVColumn(dgv, "状态", "iResult", 60); 
+            AddDGVColumn(dgv, "流水号", "InsuSerNo", 200);
+        }
+
+        public void SetHeaderTextOfChannelInsuInfo(DataGridView dgv)
+        {
+            dgv.AutoGenerateColumns = false;
+            dgv.Columns.Clear();
+            AddDGVColumn(dgv, "中心药品项目编码", "InsuCode", 200);
+            AddDGVColumn(dgv, "中心药品项目名称", "InsuName", 300);
+        }
+
+        public void SetHeaderTextOfChannelOrgInfo(DataGridView dgv)
+        {
+            dgv.AutoGenerateColumns = false;
+            dgv.Columns.Clear();
+            AddDGVColumn(dgv, "医疗机构编码", "Code", 200);
+            AddDGVColumn(dgv, "医疗机构名称", "Name", 300);
+            AddDGVColumn(dgv, "统筹区域", "InsuranceArea", 100);
+        }
+
+        #endregion
+
         #region 处方流转
         /// <summary>
         /// 设置HIS就诊信息列标题

+ 1150 - 0
Forms/DualChannelRecordForm.Designer.cs

@@ -0,0 +1,1150 @@
+
+namespace PTMedicalInsurance.Forms
+{
+    partial class DualChannelRecordForm
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
+            this.tc_Main = new Sunny.UI.UITabControl();
+            this.tb_RecordApply = new System.Windows.Forms.TabPage();
+            this.gb_HISInsuReg = new Sunny.UI.UIGroupBox();
+            this.uiPanel3 = new Sunny.UI.UIPanel();
+            this.txtInsuName = new System.Windows.Forms.TextBox();
+            this.txtInsuCode = new System.Windows.Forms.TextBox();
+            this.label6 = new System.Windows.Forms.Label();
+            this.label5 = new System.Windows.Forms.Label();
+            this.btnDelete = new System.Windows.Forms.Button();
+            this.btnAdd = new System.Windows.Forms.Button();
+            this.uiPanel2 = new Sunny.UI.UIPanel();
+            this.dgv_DrugApply = new Sunny.UI.UIDataGridView();
+            this.txtInsuType = new System.Windows.Forms.TextBox();
+            this.lab_ = new System.Windows.Forms.Label();
+            this.txtUnitNo = new System.Windows.Forms.TextBox();
+            this.txtBirth = new System.Windows.Forms.TextBox();
+            this.txtCertType = new System.Windows.Forms.TextBox();
+            this.txtUnitName = new System.Windows.Forms.TextBox();
+            this.dtpEnd = new System.Windows.Forms.DateTimePicker();
+            this.dtpStart = new System.Windows.Forms.DateTimePicker();
+            this.label31 = new System.Windows.Forms.Label();
+            this.label30 = new System.Windows.Forms.Label();
+            this.label1 = new System.Windows.Forms.Label();
+            this.label3 = new System.Windows.Forms.Label();
+            this.label20 = new System.Windows.Forms.Label();
+            this.label2 = new System.Windows.Forms.Label();
+            this.label18 = new System.Windows.Forms.Label();
+            this.label16 = new System.Windows.Forms.Label();
+            this.txtDiag = new System.Windows.Forms.TextBox();
+            this.txtAddress = new System.Windows.Forms.TextBox();
+            this.txtNation = new System.Windows.Forms.TextBox();
+            this.txtSex = new System.Windows.Forms.TextBox();
+            this.label4 = new System.Windows.Forms.Label();
+            this.txtPsnNO = new System.Windows.Forms.TextBox();
+            this.lab_address = new System.Windows.Forms.Label();
+            this.txtCertNo = new System.Windows.Forms.TextBox();
+            this.lab_Work = new System.Windows.Forms.Label();
+            this.lab_Name = new System.Windows.Forms.Label();
+            this.txt_PsnName = new System.Windows.Forms.TextBox();
+            this.lab_IdCard = new System.Windows.Forms.Label();
+            this.btnReadCard = new System.Windows.Forms.Button();
+            this.uiPanel1 = new Sunny.UI.UIPanel();
+            this.btnClose = new Sunny.UI.UIButton();
+            this.btnPresUpload = new Sunny.UI.UIButton();
+            this.tb_RecordQuery = new System.Windows.Forms.TabPage();
+            this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
+            this.uiTabControl2 = new Sunny.UI.UITabControl();
+            this.tp_DrugInfo = new System.Windows.Forms.TabPage();
+            this.dgv_DrugInfo = new Sunny.UI.UIDataGridView();
+            this.tp_OrgInfo = new System.Windows.Forms.TabPage();
+            this.dgv_OrgInfo = new Sunny.UI.UIDataGridView();
+            this.uiPanel4 = new Sunny.UI.UIPanel();
+            this.uiButton6 = new Sunny.UI.UIButton();
+            this.btnLocalQuery = new System.Windows.Forms.Button();
+            this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
+            this.dgv_BasicInfo = new Sunny.UI.UIDataGridView();
+            this.btnCancel = new Sunny.UI.UIButton();
+            this.btnCenterQuery = new System.Windows.Forms.Button();
+            this.tc_Main.SuspendLayout();
+            this.tb_RecordApply.SuspendLayout();
+            this.gb_HISInsuReg.SuspendLayout();
+            this.uiPanel3.SuspendLayout();
+            this.uiPanel2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_DrugApply)).BeginInit();
+            this.uiPanel1.SuspendLayout();
+            this.tb_RecordQuery.SuspendLayout();
+            this.uiGroupBox4.SuspendLayout();
+            this.uiTabControl2.SuspendLayout();
+            this.tp_DrugInfo.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_DrugInfo)).BeginInit();
+            this.tp_OrgInfo.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_OrgInfo)).BeginInit();
+            this.uiPanel4.SuspendLayout();
+            this.uiGroupBox3.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_BasicInfo)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // tc_Main
+            // 
+            this.tc_Main.Controls.Add(this.tb_RecordApply);
+            this.tc_Main.Controls.Add(this.tb_RecordQuery);
+            this.tc_Main.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.tc_Main.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
+            this.tc_Main.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.tc_Main.ItemSize = new System.Drawing.Size(180, 40);
+            this.tc_Main.Location = new System.Drawing.Point(0, 0);
+            this.tc_Main.MainPage = "";
+            this.tc_Main.Margin = new System.Windows.Forms.Padding(4);
+            this.tc_Main.Name = "tc_Main";
+            this.tc_Main.SelectedIndex = 0;
+            this.tc_Main.Size = new System.Drawing.Size(1488, 766);
+            this.tc_Main.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
+            this.tc_Main.TabIndex = 0;
+            this.tc_Main.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.tc_Main.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.tc_Main.TabIndexChanged += new System.EventHandler(this.tc_Main_TabIndexChanged);
+            // 
+            // tb_RecordApply
+            // 
+            this.tb_RecordApply.Controls.Add(this.gb_HISInsuReg);
+            this.tb_RecordApply.Controls.Add(this.uiPanel1);
+            this.tb_RecordApply.Location = new System.Drawing.Point(0, 40);
+            this.tb_RecordApply.Margin = new System.Windows.Forms.Padding(4);
+            this.tb_RecordApply.Name = "tb_RecordApply";
+            this.tb_RecordApply.Size = new System.Drawing.Size(1488, 726);
+            this.tb_RecordApply.TabIndex = 0;
+            this.tb_RecordApply.Text = "备案申请";
+            this.tb_RecordApply.UseVisualStyleBackColor = true;
+            // 
+            // gb_HISInsuReg
+            // 
+            this.gb_HISInsuReg.Controls.Add(this.uiPanel3);
+            this.gb_HISInsuReg.Controls.Add(this.uiPanel2);
+            this.gb_HISInsuReg.Controls.Add(this.txtInsuType);
+            this.gb_HISInsuReg.Controls.Add(this.lab_);
+            this.gb_HISInsuReg.Controls.Add(this.txtUnitNo);
+            this.gb_HISInsuReg.Controls.Add(this.txtBirth);
+            this.gb_HISInsuReg.Controls.Add(this.txtCertType);
+            this.gb_HISInsuReg.Controls.Add(this.txtUnitName);
+            this.gb_HISInsuReg.Controls.Add(this.dtpEnd);
+            this.gb_HISInsuReg.Controls.Add(this.dtpStart);
+            this.gb_HISInsuReg.Controls.Add(this.label31);
+            this.gb_HISInsuReg.Controls.Add(this.label30);
+            this.gb_HISInsuReg.Controls.Add(this.label1);
+            this.gb_HISInsuReg.Controls.Add(this.label3);
+            this.gb_HISInsuReg.Controls.Add(this.label20);
+            this.gb_HISInsuReg.Controls.Add(this.label2);
+            this.gb_HISInsuReg.Controls.Add(this.label18);
+            this.gb_HISInsuReg.Controls.Add(this.label16);
+            this.gb_HISInsuReg.Controls.Add(this.txtDiag);
+            this.gb_HISInsuReg.Controls.Add(this.txtAddress);
+            this.gb_HISInsuReg.Controls.Add(this.txtNation);
+            this.gb_HISInsuReg.Controls.Add(this.txtSex);
+            this.gb_HISInsuReg.Controls.Add(this.label4);
+            this.gb_HISInsuReg.Controls.Add(this.txtPsnNO);
+            this.gb_HISInsuReg.Controls.Add(this.lab_address);
+            this.gb_HISInsuReg.Controls.Add(this.txtCertNo);
+            this.gb_HISInsuReg.Controls.Add(this.lab_Work);
+            this.gb_HISInsuReg.Controls.Add(this.lab_Name);
+            this.gb_HISInsuReg.Controls.Add(this.txt_PsnName);
+            this.gb_HISInsuReg.Controls.Add(this.lab_IdCard);
+            this.gb_HISInsuReg.Controls.Add(this.btnCenterQuery);
+            this.gb_HISInsuReg.Controls.Add(this.btnLocalQuery);
+            this.gb_HISInsuReg.Controls.Add(this.btnReadCard);
+            this.gb_HISInsuReg.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gb_HISInsuReg.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.gb_HISInsuReg.Location = new System.Drawing.Point(0, 0);
+            this.gb_HISInsuReg.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+            this.gb_HISInsuReg.MinimumSize = new System.Drawing.Size(2, 2);
+            this.gb_HISInsuReg.Name = "gb_HISInsuReg";
+            this.gb_HISInsuReg.Padding = new System.Windows.Forms.Padding(0, 48, 0, 0);
+            this.gb_HISInsuReg.Size = new System.Drawing.Size(1488, 627);
+            this.gb_HISInsuReg.TabIndex = 9;
+            this.gb_HISInsuReg.Text = "基本信息";
+            this.gb_HISInsuReg.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.gb_HISInsuReg.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiPanel3
+            // 
+            this.uiPanel3.Controls.Add(this.txtInsuName);
+            this.uiPanel3.Controls.Add(this.txtInsuCode);
+            this.uiPanel3.Controls.Add(this.label6);
+            this.uiPanel3.Controls.Add(this.label5);
+            this.uiPanel3.Controls.Add(this.btnDelete);
+            this.uiPanel3.Controls.Add(this.btnAdd);
+            this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Bottom;
+            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(0, 379);
+            this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiPanel3.Name = "uiPanel3";
+            this.uiPanel3.Size = new System.Drawing.Size(1488, 75);
+            this.uiPanel3.TabIndex = 2120;
+            this.uiPanel3.Text = null;
+            this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // txtInsuName
+            // 
+            this.txtInsuName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtInsuName.Location = new System.Drawing.Point(841, 25);
+            this.txtInsuName.Margin = new System.Windows.Forms.Padding(4);
+            this.txtInsuName.Name = "txtInsuName";
+            this.txtInsuName.Size = new System.Drawing.Size(284, 31);
+            this.txtInsuName.TabIndex = 2114;
+            // 
+            // txtInsuCode
+            // 
+            this.txtInsuCode.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtInsuCode.Location = new System.Drawing.Point(259, 23);
+            this.txtInsuCode.Margin = new System.Windows.Forms.Padding(4);
+            this.txtInsuCode.Name = "txtInsuCode";
+            this.txtInsuCode.Size = new System.Drawing.Size(284, 31);
+            this.txtInsuCode.TabIndex = 2114;
+            // 
+            // label6
+            // 
+            this.label6.AutoSize = true;
+            this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label6.ForeColor = System.Drawing.SystemColors.ControlText;
+            this.label6.Location = new System.Drawing.Point(616, 30);
+            this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label6.Name = "label6";
+            this.label6.Size = new System.Drawing.Size(189, 21);
+            this.label6.TabIndex = 2109;
+            this.label6.Text = "中心药品项目名称:";
+            // 
+            // label5
+            // 
+            this.label5.AutoSize = true;
+            this.label5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label5.ForeColor = System.Drawing.SystemColors.ControlText;
+            this.label5.Location = new System.Drawing.Point(45, 28);
+            this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label5.Name = "label5";
+            this.label5.Size = new System.Drawing.Size(189, 21);
+            this.label5.TabIndex = 2109;
+            this.label5.Text = "中心药品项目编码:";
+            // 
+            // btnDelete
+            // 
+            this.btnDelete.BackColor = System.Drawing.Color.Transparent;
+            this.btnDelete.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
+            this.btnDelete.FlatAppearance.BorderSize = 2;
+            this.btnDelete.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
+            this.btnDelete.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
+            this.btnDelete.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnDelete.Location = new System.Drawing.Point(1308, 20);
+            this.btnDelete.Margin = new System.Windows.Forms.Padding(4);
+            this.btnDelete.Name = "btnDelete";
+            this.btnDelete.Size = new System.Drawing.Size(105, 40);
+            this.btnDelete.TabIndex = 2099;
+            this.btnDelete.TabStop = false;
+            this.btnDelete.Text = "删除(&D)";
+            this.btnDelete.UseVisualStyleBackColor = false;
+            // 
+            // btnAdd
+            // 
+            this.btnAdd.BackColor = System.Drawing.Color.Transparent;
+            this.btnAdd.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
+            this.btnAdd.FlatAppearance.BorderSize = 2;
+            this.btnAdd.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
+            this.btnAdd.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
+            this.btnAdd.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnAdd.Location = new System.Drawing.Point(1167, 20);
+            this.btnAdd.Margin = new System.Windows.Forms.Padding(4);
+            this.btnAdd.Name = "btnAdd";
+            this.btnAdd.Size = new System.Drawing.Size(105, 40);
+            this.btnAdd.TabIndex = 2099;
+            this.btnAdd.TabStop = false;
+            this.btnAdd.Text = "新增(&A)";
+            this.btnAdd.UseVisualStyleBackColor = false;
+            // 
+            // uiPanel2
+            // 
+            this.uiPanel2.Controls.Add(this.dgv_DrugApply);
+            this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
+            this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiPanel2.Location = new System.Drawing.Point(0, 454);
+            this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiPanel2.Name = "uiPanel2";
+            this.uiPanel2.Size = new System.Drawing.Size(1488, 173);
+            this.uiPanel2.TabIndex = 2120;
+            this.uiPanel2.Text = null;
+            this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // dgv_DrugApply
+            // 
+            this.dgv_DrugApply.AllowUserToAddRows = false;
+            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_DrugApply.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
+            this.dgv_DrugApply.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_DrugApply.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
+            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
+            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_DrugApply.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
+            this.dgv_DrugApply.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
+            this.dgv_DrugApply.DefaultCellStyle = dataGridViewCellStyle3;
+            this.dgv_DrugApply.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dgv_DrugApply.EnableHeadersVisualStyles = false;
+            this.dgv_DrugApply.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dgv_DrugApply.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
+            this.dgv_DrugApply.Location = new System.Drawing.Point(0, 0);
+            this.dgv_DrugApply.Name = "dgv_DrugApply";
+            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_DrugApply.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
+            this.dgv_DrugApply.RowHeadersWidth = 62;
+            dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            this.dgv_DrugApply.RowsDefaultCellStyle = dataGridViewCellStyle5;
+            this.dgv_DrugApply.RowTemplate.Height = 23;
+            this.dgv_DrugApply.SelectedIndex = -1;
+            this.dgv_DrugApply.Size = new System.Drawing.Size(1488, 173);
+            this.dgv_DrugApply.TabIndex = 5;
+            this.dgv_DrugApply.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // txtInsuType
+            // 
+            this.txtInsuType.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtInsuType.Location = new System.Drawing.Point(943, 47);
+            this.txtInsuType.Margin = new System.Windows.Forms.Padding(4);
+            this.txtInsuType.Name = "txtInsuType";
+            this.txtInsuType.Size = new System.Drawing.Size(157, 31);
+            this.txtInsuType.TabIndex = 2119;
+            // 
+            // lab_
+            // 
+            this.lab_.AutoSize = true;
+            this.lab_.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.lab_.ForeColor = System.Drawing.Color.Red;
+            this.lab_.Location = new System.Drawing.Point(834, 50);
+            this.lab_.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.lab_.Name = "lab_";
+            this.lab_.Size = new System.Drawing.Size(115, 21);
+            this.lab_.TabIndex = 2118;
+            this.lab_.Text = "险种类型:";
+            // 
+            // txtUnitNo
+            // 
+            this.txtUnitNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtUnitNo.Location = new System.Drawing.Point(145, 173);
+            this.txtUnitNo.Margin = new System.Windows.Forms.Padding(4);
+            this.txtUnitNo.Name = "txtUnitNo";
+            this.txtUnitNo.Size = new System.Drawing.Size(232, 31);
+            this.txtUnitNo.TabIndex = 2114;
+            // 
+            // txtBirth
+            // 
+            this.txtBirth.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtBirth.Location = new System.Drawing.Point(548, 45);
+            this.txtBirth.Margin = new System.Windows.Forms.Padding(4);
+            this.txtBirth.Name = "txtBirth";
+            this.txtBirth.Size = new System.Drawing.Size(232, 31);
+            this.txtBirth.TabIndex = 2113;
+            // 
+            // txtCertType
+            // 
+            this.txtCertType.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtCertType.Location = new System.Drawing.Point(548, 109);
+            this.txtCertType.Margin = new System.Windows.Forms.Padding(4);
+            this.txtCertType.Name = "txtCertType";
+            this.txtCertType.Size = new System.Drawing.Size(232, 31);
+            this.txtCertType.TabIndex = 2113;
+            // 
+            // txtUnitName
+            // 
+            this.txtUnitName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtUnitName.Location = new System.Drawing.Point(548, 173);
+            this.txtUnitName.Margin = new System.Windows.Forms.Padding(4);
+            this.txtUnitName.Name = "txtUnitName";
+            this.txtUnitName.Size = new System.Drawing.Size(232, 31);
+            this.txtUnitName.TabIndex = 2113;
+            // 
+            // dtpEnd
+            // 
+            this.dtpEnd.CalendarTrailingForeColor = System.Drawing.SystemColors.GradientActiveCaption;
+            this.dtpEnd.CustomFormat = "yyyy-MM-dd";
+            this.dtpEnd.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dtpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
+            this.dtpEnd.Location = new System.Drawing.Point(548, 307);
+            this.dtpEnd.Margin = new System.Windows.Forms.Padding(4);
+            this.dtpEnd.Name = "dtpEnd";
+            this.dtpEnd.Size = new System.Drawing.Size(229, 35);
+            this.dtpEnd.TabIndex = 2112;
+            // 
+            // dtpStart
+            // 
+            this.dtpStart.CalendarTrailingForeColor = System.Drawing.SystemColors.GradientActiveCaption;
+            this.dtpStart.CustomFormat = "yyyy-MM-dd";
+            this.dtpStart.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
+            this.dtpStart.Location = new System.Drawing.Point(145, 300);
+            this.dtpStart.Margin = new System.Windows.Forms.Padding(4);
+            this.dtpStart.Name = "dtpStart";
+            this.dtpStart.Size = new System.Drawing.Size(229, 35);
+            this.dtpStart.TabIndex = 2112;
+            // 
+            // label31
+            // 
+            this.label31.AutoSize = true;
+            this.label31.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label31.ForeColor = System.Drawing.SystemColors.ControlText;
+            this.label31.Location = new System.Drawing.Point(437, 177);
+            this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label31.Name = "label31";
+            this.label31.Size = new System.Drawing.Size(105, 21);
+            this.label31.TabIndex = 2110;
+            this.label31.Text = "单位名称:";
+            // 
+            // label30
+            // 
+            this.label30.AutoSize = true;
+            this.label30.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label30.ForeColor = System.Drawing.SystemColors.ControlText;
+            this.label30.Location = new System.Drawing.Point(36, 181);
+            this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label30.Name = "label30";
+            this.label30.Size = new System.Drawing.Size(105, 21);
+            this.label30.TabIndex = 2109;
+            this.label30.Text = "单位编码:";
+            // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label1.ForeColor = System.Drawing.Color.Red;
+            this.label1.Location = new System.Drawing.Point(438, 245);
+            this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(63, 21);
+            this.label1.TabIndex = 2107;
+            this.label1.Text = "民族:";
+            // 
+            // label3
+            // 
+            this.label3.AutoSize = true;
+            this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label3.ForeColor = System.Drawing.Color.Red;
+            this.label3.Location = new System.Drawing.Point(438, 314);
+            this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label3.Name = "label3";
+            this.label3.Size = new System.Drawing.Size(105, 21);
+            this.label3.TabIndex = 2105;
+            this.label3.Text = "结束日期:";
+            // 
+            // label20
+            // 
+            this.label20.AutoSize = true;
+            this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label20.ForeColor = System.Drawing.Color.Red;
+            this.label20.Location = new System.Drawing.Point(37, 243);
+            this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label20.Name = "label20";
+            this.label20.Size = new System.Drawing.Size(63, 21);
+            this.label20.TabIndex = 2107;
+            this.label20.Text = "性别:";
+            // 
+            // label2
+            // 
+            this.label2.AutoSize = true;
+            this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label2.ForeColor = System.Drawing.Color.Red;
+            this.label2.Location = new System.Drawing.Point(35, 307);
+            this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label2.Name = "label2";
+            this.label2.Size = new System.Drawing.Size(105, 21);
+            this.label2.TabIndex = 2105;
+            this.label2.Text = "开始日期:";
+            // 
+            // label18
+            // 
+            this.label18.AutoSize = true;
+            this.label18.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label18.ForeColor = System.Drawing.Color.Red;
+            this.label18.Location = new System.Drawing.Point(35, 119);
+            this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label18.Name = "label18";
+            this.label18.Size = new System.Drawing.Size(105, 21);
+            this.label18.TabIndex = 2106;
+            this.label18.Text = "人员编号:";
+            // 
+            // label16
+            // 
+            this.label16.AutoSize = true;
+            this.label16.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label16.ForeColor = System.Drawing.Color.Red;
+            this.label16.Location = new System.Drawing.Point(438, 55);
+            this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label16.Name = "label16";
+            this.label16.Size = new System.Drawing.Size(115, 21);
+            this.label16.TabIndex = 2105;
+            this.label16.Text = "出生日期:";
+            // 
+            // txtDiag
+            // 
+            this.txtDiag.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtDiag.Location = new System.Drawing.Point(943, 245);
+            this.txtDiag.Margin = new System.Windows.Forms.Padding(4);
+            this.txtDiag.Name = "txtDiag";
+            this.txtDiag.Size = new System.Drawing.Size(354, 31);
+            this.txtDiag.TabIndex = 2098;
+            // 
+            // txtAddress
+            // 
+            this.txtAddress.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtAddress.Location = new System.Drawing.Point(943, 180);
+            this.txtAddress.Margin = new System.Windows.Forms.Padding(4);
+            this.txtAddress.Name = "txtAddress";
+            this.txtAddress.Size = new System.Drawing.Size(354, 31);
+            this.txtAddress.TabIndex = 2098;
+            // 
+            // txtNation
+            // 
+            this.txtNation.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtNation.Location = new System.Drawing.Point(548, 238);
+            this.txtNation.Margin = new System.Windows.Forms.Padding(4);
+            this.txtNation.Name = "txtNation";
+            this.txtNation.Size = new System.Drawing.Size(232, 31);
+            this.txtNation.TabIndex = 2096;
+            // 
+            // txtSex
+            // 
+            this.txtSex.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtSex.Location = new System.Drawing.Point(145, 238);
+            this.txtSex.Margin = new System.Windows.Forms.Padding(4);
+            this.txtSex.Name = "txtSex";
+            this.txtSex.Size = new System.Drawing.Size(232, 31);
+            this.txtSex.TabIndex = 2096;
+            // 
+            // label4
+            // 
+            this.label4.AutoSize = true;
+            this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label4.ForeColor = System.Drawing.Color.Red;
+            this.label4.Location = new System.Drawing.Point(834, 248);
+            this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label4.Name = "label4";
+            this.label4.Size = new System.Drawing.Size(115, 21);
+            this.label4.TabIndex = 2100;
+            this.label4.Text = "诊断依据:";
+            // 
+            // txtPsnNO
+            // 
+            this.txtPsnNO.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtPsnNO.Location = new System.Drawing.Point(143, 114);
+            this.txtPsnNO.Margin = new System.Windows.Forms.Padding(4);
+            this.txtPsnNO.Name = "txtPsnNO";
+            this.txtPsnNO.Size = new System.Drawing.Size(234, 31);
+            this.txtPsnNO.TabIndex = 2096;
+            // 
+            // lab_address
+            // 
+            this.lab_address.AutoSize = true;
+            this.lab_address.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.lab_address.ForeColor = System.Drawing.Color.Red;
+            this.lab_address.Location = new System.Drawing.Point(834, 183);
+            this.lab_address.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.lab_address.Name = "lab_address";
+            this.lab_address.Size = new System.Drawing.Size(115, 21);
+            this.lab_address.TabIndex = 2100;
+            this.lab_address.Text = "联系地址:";
+            // 
+            // txtCertNo
+            // 
+            this.txtCertNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtCertNo.Location = new System.Drawing.Point(943, 104);
+            this.txtCertNo.Margin = new System.Windows.Forms.Padding(4);
+            this.txtCertNo.Name = "txtCertNo";
+            this.txtCertNo.Size = new System.Drawing.Size(354, 31);
+            this.txtCertNo.TabIndex = 2095;
+            // 
+            // lab_Work
+            // 
+            this.lab_Work.AutoSize = true;
+            this.lab_Work.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.lab_Work.ForeColor = System.Drawing.Color.Red;
+            this.lab_Work.Location = new System.Drawing.Point(834, 114);
+            this.lab_Work.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.lab_Work.Name = "lab_Work";
+            this.lab_Work.Size = new System.Drawing.Size(115, 21);
+            this.lab_Work.TabIndex = 2103;
+            this.lab_Work.Text = "证件号码:";
+            // 
+            // lab_Name
+            // 
+            this.lab_Name.AutoSize = true;
+            this.lab_Name.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.lab_Name.ForeColor = System.Drawing.Color.Red;
+            this.lab_Name.Location = new System.Drawing.Point(437, 112);
+            this.lab_Name.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.lab_Name.Name = "lab_Name";
+            this.lab_Name.Size = new System.Drawing.Size(115, 21);
+            this.lab_Name.TabIndex = 2102;
+            this.lab_Name.Text = "证件类型:";
+            // 
+            // txt_PsnName
+            // 
+            this.txt_PsnName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txt_PsnName.Location = new System.Drawing.Point(145, 47);
+            this.txt_PsnName.Margin = new System.Windows.Forms.Padding(4);
+            this.txt_PsnName.Name = "txt_PsnName";
+            this.txt_PsnName.Size = new System.Drawing.Size(232, 31);
+            this.txt_PsnName.TabIndex = 2094;
+            // 
+            // lab_IdCard
+            // 
+            this.lab_IdCard.AutoSize = true;
+            this.lab_IdCard.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.lab_IdCard.ForeColor = System.Drawing.Color.Red;
+            this.lab_IdCard.Location = new System.Drawing.Point(37, 55);
+            this.lab_IdCard.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.lab_IdCard.Name = "lab_IdCard";
+            this.lab_IdCard.Size = new System.Drawing.Size(115, 21);
+            this.lab_IdCard.TabIndex = 2101;
+            this.lab_IdCard.Text = "人员姓名:";
+            // 
+            // btnReadCard
+            // 
+            this.btnReadCard.BackColor = System.Drawing.Color.Transparent;
+            this.btnReadCard.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
+            this.btnReadCard.FlatAppearance.BorderSize = 2;
+            this.btnReadCard.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
+            this.btnReadCard.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
+            this.btnReadCard.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+            this.btnReadCard.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnReadCard.Location = new System.Drawing.Point(1131, 38);
+            this.btnReadCard.Margin = new System.Windows.Forms.Padding(4);
+            this.btnReadCard.Name = "btnReadCard";
+            this.btnReadCard.Size = new System.Drawing.Size(166, 40);
+            this.btnReadCard.TabIndex = 2099;
+            this.btnReadCard.TabStop = false;
+            this.btnReadCard.Text = "读卡(&R)";
+            this.btnReadCard.UseVisualStyleBackColor = false;
+            this.btnReadCard.Click += new System.EventHandler(this.btnReadCard_Click);
+            // 
+            // uiPanel1
+            // 
+            this.uiPanel1.Controls.Add(this.btnClose);
+            this.uiPanel1.Controls.Add(this.btnPresUpload);
+            this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
+            this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiPanel1.Location = new System.Drawing.Point(0, 627);
+            this.uiPanel1.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+            this.uiPanel1.MinimumSize = new System.Drawing.Size(2, 2);
+            this.uiPanel1.Name = "uiPanel1";
+            this.uiPanel1.Size = new System.Drawing.Size(1488, 99);
+            this.uiPanel1.TabIndex = 0;
+            this.uiPanel1.Text = null;
+            this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // btnClose
+            // 
+            this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+            this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.btnClose.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnClose.Location = new System.Drawing.Point(777, 23);
+            this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
+            this.btnClose.Name = "btnClose";
+            this.btnClose.Size = new System.Drawing.Size(164, 51);
+            this.btnClose.TabIndex = 1;
+            this.btnClose.Text = "退    出";
+            this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
+            // 
+            // btnPresUpload
+            // 
+            this.btnPresUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+            this.btnPresUpload.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.btnPresUpload.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnPresUpload.Location = new System.Drawing.Point(406, 23);
+            this.btnPresUpload.MinimumSize = new System.Drawing.Size(1, 1);
+            this.btnPresUpload.Name = "btnPresUpload";
+            this.btnPresUpload.Size = new System.Drawing.Size(161, 51);
+            this.btnPresUpload.TabIndex = 0;
+            this.btnPresUpload.Text = "申请备案";
+            this.btnPresUpload.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnPresUpload.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.btnPresUpload.Click += new System.EventHandler(this.btnPresUpload_Click);
+            // 
+            // tb_RecordQuery
+            // 
+            this.tb_RecordQuery.Controls.Add(this.uiGroupBox4);
+            this.tb_RecordQuery.Controls.Add(this.uiGroupBox3);
+            this.tb_RecordQuery.Controls.Add(this.uiPanel4);
+            this.tb_RecordQuery.Location = new System.Drawing.Point(0, 40);
+            this.tb_RecordQuery.Margin = new System.Windows.Forms.Padding(4);
+            this.tb_RecordQuery.Name = "tb_RecordQuery";
+            this.tb_RecordQuery.Size = new System.Drawing.Size(1488, 726);
+            this.tb_RecordQuery.TabIndex = 2;
+            this.tb_RecordQuery.Text = "备案查询";
+            this.tb_RecordQuery.UseVisualStyleBackColor = true;
+            // 
+            // uiGroupBox4
+            // 
+            this.uiGroupBox4.Controls.Add(this.uiTabControl2);
+            this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiGroupBox4.Location = new System.Drawing.Point(0, 270);
+            this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+            this.uiGroupBox4.MinimumSize = new System.Drawing.Size(2, 2);
+            this.uiGroupBox4.Name = "uiGroupBox4";
+            this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 48, 0, 0);
+            this.uiGroupBox4.Size = new System.Drawing.Size(1488, 340);
+            this.uiGroupBox4.TabIndex = 11;
+            this.uiGroupBox4.Text = "其它信息";
+            this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiTabControl2
+            // 
+            this.uiTabControl2.Controls.Add(this.tp_DrugInfo);
+            this.uiTabControl2.Controls.Add(this.tp_OrgInfo);
+            this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
+            this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 40);
+            this.uiTabControl2.Location = new System.Drawing.Point(0, 48);
+            this.uiTabControl2.MainPage = "";
+            this.uiTabControl2.Name = "uiTabControl2";
+            this.uiTabControl2.SelectedIndex = 0;
+            this.uiTabControl2.Size = new System.Drawing.Size(1488, 292);
+            this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
+            this.uiTabControl2.TabIndex = 0;
+            this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // tp_DrugInfo
+            // 
+            this.tp_DrugInfo.Controls.Add(this.dgv_DrugInfo);
+            this.tp_DrugInfo.Location = new System.Drawing.Point(0, 40);
+            this.tp_DrugInfo.Name = "tp_DrugInfo";
+            this.tp_DrugInfo.Size = new System.Drawing.Size(1488, 252);
+            this.tp_DrugInfo.TabIndex = 1;
+            this.tp_DrugInfo.Text = "药品信息";
+            this.tp_DrugInfo.UseVisualStyleBackColor = true;
+            // 
+            // dgv_DrugInfo
+            // 
+            this.dgv_DrugInfo.AllowUserToAddRows = false;
+            dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_DrugInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
+            this.dgv_DrugInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_DrugInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
+            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
+            dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+            dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_DrugInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
+            this.dgv_DrugInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle8.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
+            this.dgv_DrugInfo.DefaultCellStyle = dataGridViewCellStyle8;
+            this.dgv_DrugInfo.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dgv_DrugInfo.EnableHeadersVisualStyles = false;
+            this.dgv_DrugInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dgv_DrugInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
+            this.dgv_DrugInfo.Location = new System.Drawing.Point(0, 0);
+            this.dgv_DrugInfo.Name = "dgv_DrugInfo";
+            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_DrugInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
+            this.dgv_DrugInfo.RowHeadersWidth = 62;
+            dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            this.dgv_DrugInfo.RowsDefaultCellStyle = dataGridViewCellStyle10;
+            this.dgv_DrugInfo.RowTemplate.Height = 23;
+            this.dgv_DrugInfo.SelectedIndex = -1;
+            this.dgv_DrugInfo.Size = new System.Drawing.Size(1488, 252);
+            this.dgv_DrugInfo.TabIndex = 1;
+            this.dgv_DrugInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // tp_OrgInfo
+            // 
+            this.tp_OrgInfo.Controls.Add(this.dgv_OrgInfo);
+            this.tp_OrgInfo.Location = new System.Drawing.Point(0, 40);
+            this.tp_OrgInfo.Name = "tp_OrgInfo";
+            this.tp_OrgInfo.Size = new System.Drawing.Size(1426, 79);
+            this.tp_OrgInfo.TabIndex = 2;
+            this.tp_OrgInfo.Text = "机构信息";
+            this.tp_OrgInfo.UseVisualStyleBackColor = true;
+            // 
+            // dgv_OrgInfo
+            // 
+            this.dgv_OrgInfo.AllowUserToAddRows = false;
+            dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_OrgInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
+            this.dgv_OrgInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_OrgInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
+            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
+            dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_OrgInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
+            this.dgv_OrgInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle13.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
+            this.dgv_OrgInfo.DefaultCellStyle = dataGridViewCellStyle13;
+            this.dgv_OrgInfo.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dgv_OrgInfo.EnableHeadersVisualStyles = false;
+            this.dgv_OrgInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dgv_OrgInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
+            this.dgv_OrgInfo.Location = new System.Drawing.Point(0, 0);
+            this.dgv_OrgInfo.Name = "dgv_OrgInfo";
+            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_OrgInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
+            this.dgv_OrgInfo.RowHeadersWidth = 62;
+            dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            this.dgv_OrgInfo.RowsDefaultCellStyle = dataGridViewCellStyle15;
+            this.dgv_OrgInfo.RowTemplate.Height = 23;
+            this.dgv_OrgInfo.SelectedIndex = -1;
+            this.dgv_OrgInfo.Size = new System.Drawing.Size(1426, 79);
+            this.dgv_OrgInfo.TabIndex = 1;
+            this.dgv_OrgInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiPanel4
+            // 
+            this.uiPanel4.Controls.Add(this.btnCancel);
+            this.uiPanel4.Controls.Add(this.uiButton6);
+            this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
+            this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiPanel4.Location = new System.Drawing.Point(0, 610);
+            this.uiPanel4.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+            this.uiPanel4.MinimumSize = new System.Drawing.Size(2, 2);
+            this.uiPanel4.Name = "uiPanel4";
+            this.uiPanel4.Size = new System.Drawing.Size(1488, 116);
+            this.uiPanel4.TabIndex = 9;
+            this.uiPanel4.Text = null;
+            this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // uiButton6
+            // 
+            this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiButton6.Location = new System.Drawing.Point(947, 30);
+            this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
+            this.uiButton6.Name = "uiButton6";
+            this.uiButton6.Size = new System.Drawing.Size(177, 50);
+            this.uiButton6.TabIndex = 1;
+            this.uiButton6.Text = "退    出";
+            this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
+            // 
+            // btnLocalQuery
+            // 
+            this.btnLocalQuery.BackColor = System.Drawing.Color.Transparent;
+            this.btnLocalQuery.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
+            this.btnLocalQuery.FlatAppearance.BorderSize = 2;
+            this.btnLocalQuery.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
+            this.btnLocalQuery.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
+            this.btnLocalQuery.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnLocalQuery.Location = new System.Drawing.Point(838, 304);
+            this.btnLocalQuery.Margin = new System.Windows.Forms.Padding(4);
+            this.btnLocalQuery.Name = "btnLocalQuery";
+            this.btnLocalQuery.Size = new System.Drawing.Size(208, 40);
+            this.btnLocalQuery.TabIndex = 2099;
+            this.btnLocalQuery.TabStop = false;
+            this.btnLocalQuery.Text = "查询本院备案信息";
+            this.btnLocalQuery.UseVisualStyleBackColor = false;
+            this.btnLocalQuery.Click += new System.EventHandler(this.btnQuery_Click);
+            // 
+            // uiGroupBox3
+            // 
+            this.uiGroupBox3.Controls.Add(this.dgv_BasicInfo);
+            this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
+            this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.uiGroupBox3.Location = new System.Drawing.Point(0, 0);
+            this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+            this.uiGroupBox3.MinimumSize = new System.Drawing.Size(2, 2);
+            this.uiGroupBox3.Name = "uiGroupBox3";
+            this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 48, 0, 0);
+            this.uiGroupBox3.Size = new System.Drawing.Size(1488, 270);
+            this.uiGroupBox3.TabIndex = 10;
+            this.uiGroupBox3.Text = "备案记录";
+            this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
+            this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // dgv_BasicInfo
+            // 
+            this.dgv_BasicInfo.AllowUserToAddRows = false;
+            dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_BasicInfo.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
+            this.dgv_BasicInfo.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            this.dgv_BasicInfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
+            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
+            dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+            dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_BasicInfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
+            this.dgv_BasicInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle18.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle18.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
+            this.dgv_BasicInfo.DefaultCellStyle = dataGridViewCellStyle18;
+            this.dgv_BasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dgv_BasicInfo.EnableHeadersVisualStyles = false;
+            this.dgv_BasicInfo.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.dgv_BasicInfo.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
+            this.dgv_BasicInfo.Location = new System.Drawing.Point(0, 48);
+            this.dgv_BasicInfo.Name = "dgv_BasicInfo";
+            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+            dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgv_BasicInfo.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
+            this.dgv_BasicInfo.RowHeadersWidth = 62;
+            dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
+            dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            dataGridViewCellStyle20.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
+            dataGridViewCellStyle20.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
+            this.dgv_BasicInfo.RowsDefaultCellStyle = dataGridViewCellStyle20;
+            this.dgv_BasicInfo.RowTemplate.Height = 23;
+            this.dgv_BasicInfo.SelectedIndex = -1;
+            this.dgv_BasicInfo.Size = new System.Drawing.Size(1488, 222);
+            this.dgv_BasicInfo.TabIndex = 0;
+            this.dgv_BasicInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // btnCancel
+            // 
+            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.btnCancel.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.btnCancel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnCancel.Location = new System.Drawing.Point(647, 30);
+            this.btnCancel.MinimumSize = new System.Drawing.Size(1, 1);
+            this.btnCancel.Name = "btnCancel";
+            this.btnCancel.Size = new System.Drawing.Size(177, 50);
+            this.btnCancel.TabIndex = 1;
+            this.btnCancel.Text = "撤销备案";
+            this.btnCancel.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnCancel.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
+            // 
+            // btnCenterQuery
+            // 
+            this.btnCenterQuery.BackColor = System.Drawing.Color.Transparent;
+            this.btnCenterQuery.FlatAppearance.BorderColor = System.Drawing.Color.Blue;
+            this.btnCenterQuery.FlatAppearance.BorderSize = 2;
+            this.btnCenterQuery.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
+            this.btnCenterQuery.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
+            this.btnCenterQuery.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.btnCenterQuery.Location = new System.Drawing.Point(1093, 302);
+            this.btnCenterQuery.Margin = new System.Windows.Forms.Padding(4);
+            this.btnCenterQuery.Name = "btnCenterQuery";
+            this.btnCenterQuery.Size = new System.Drawing.Size(204, 40);
+            this.btnCenterQuery.TabIndex = 2099;
+            this.btnCenterQuery.TabStop = false;
+            this.btnCenterQuery.Text = "查询中心备案信息";
+            this.btnCenterQuery.UseVisualStyleBackColor = false;
+            this.btnCenterQuery.Click += new System.EventHandler(this.btnQuery_Click);
+            // 
+            // DualChannelRecordForm
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(1488, 766);
+            this.Controls.Add(this.tc_Main);
+            this.Margin = new System.Windows.Forms.Padding(4);
+            this.Name = "DualChannelRecordForm";
+            this.Text = "双通道备案";
+            this.Load += new System.EventHandler(this.DualChannelRecordForm_Load);
+            this.tc_Main.ResumeLayout(false);
+            this.tb_RecordApply.ResumeLayout(false);
+            this.gb_HISInsuReg.ResumeLayout(false);
+            this.gb_HISInsuReg.PerformLayout();
+            this.uiPanel3.ResumeLayout(false);
+            this.uiPanel3.PerformLayout();
+            this.uiPanel2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_DrugApply)).EndInit();
+            this.uiPanel1.ResumeLayout(false);
+            this.tb_RecordQuery.ResumeLayout(false);
+            this.uiGroupBox4.ResumeLayout(false);
+            this.uiTabControl2.ResumeLayout(false);
+            this.tp_DrugInfo.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_DrugInfo)).EndInit();
+            this.tp_OrgInfo.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_OrgInfo)).EndInit();
+            this.uiPanel4.ResumeLayout(false);
+            this.uiGroupBox3.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dgv_BasicInfo)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private Sunny.UI.UITabControl tc_Main;
+        private System.Windows.Forms.TabPage tb_RecordApply;
+        private System.Windows.Forms.TabPage tb_RecordQuery;
+        private Sunny.UI.UIDataGridView dgv_DrugApply;
+        private Sunny.UI.UIGroupBox gb_HISInsuReg;
+        private Sunny.UI.UIGroupBox uiGroupBox4;
+        private Sunny.UI.UITabControl uiTabControl2;
+        private System.Windows.Forms.TabPage tp_DrugInfo;
+        private Sunny.UI.UIDataGridView dgv_DrugInfo;
+        private System.Windows.Forms.TabPage tp_OrgInfo;
+        private Sunny.UI.UIDataGridView dgv_OrgInfo;
+        private Sunny.UI.UIPanel uiPanel4;
+        private Sunny.UI.UIButton uiButton6;
+        private Sunny.UI.UIPanel uiPanel1;
+        private Sunny.UI.UIButton btnClose;
+        private Sunny.UI.UIButton btnPresUpload;
+        private System.Windows.Forms.TextBox txtInsuType;
+        private System.Windows.Forms.Label lab_;
+        private System.Windows.Forms.TextBox txtUnitNo;
+        private System.Windows.Forms.TextBox txtUnitName;
+        private System.Windows.Forms.Label label31;
+        private System.Windows.Forms.Label label30;
+        private System.Windows.Forms.Label label20;
+        private System.Windows.Forms.Label label18;
+        private System.Windows.Forms.Label label16;
+        private System.Windows.Forms.TextBox txtAddress;
+        private System.Windows.Forms.TextBox txtPsnNO;
+        private System.Windows.Forms.Label lab_address;
+        private System.Windows.Forms.TextBox txtCertNo;
+        private System.Windows.Forms.Label lab_Work;
+        private System.Windows.Forms.Label lab_Name;
+        private System.Windows.Forms.TextBox txt_PsnName;
+        private System.Windows.Forms.Label lab_IdCard;
+        private System.Windows.Forms.Button btnReadCard;
+        private System.Windows.Forms.Label label1;
+        private System.Windows.Forms.TextBox txtNation;
+        private System.Windows.Forms.TextBox txtSex;
+        private System.Windows.Forms.DateTimePicker dtpEnd;
+        private System.Windows.Forms.DateTimePicker dtpStart;
+        private System.Windows.Forms.Label label3;
+        private System.Windows.Forms.Label label2;
+        private System.Windows.Forms.TextBox txtDiag;
+        private System.Windows.Forms.Label label4;
+        private System.Windows.Forms.TextBox txtInsuName;
+        private System.Windows.Forms.Label label6;
+        private System.Windows.Forms.TextBox txtInsuCode;
+        private System.Windows.Forms.Label label5;
+        private System.Windows.Forms.TextBox txtCertType;
+        private System.Windows.Forms.TextBox txtBirth;
+        private Sunny.UI.UIPanel uiPanel3;
+        private Sunny.UI.UIPanel uiPanel2;
+        private System.Windows.Forms.Button btnAdd;
+        private System.Windows.Forms.Button btnDelete;
+        private System.Windows.Forms.Button btnLocalQuery;
+        private Sunny.UI.UIGroupBox uiGroupBox3;
+        private Sunny.UI.UIDataGridView dgv_BasicInfo;
+        private Sunny.UI.UIButton btnCancel;
+        private System.Windows.Forms.Button btnCenterQuery;
+    }
+}

+ 325 - 0
Forms/DualChannelRecordForm.cs

@@ -0,0 +1,325 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using PTMedicalInsurance.Common;
+using PTMedicalInsurance.Helper;
+using PTMedicalInsurance.FormSetter;
+using PTMedicalInsurance.Business;
+using PTMedicalInsurance.Variables;
+using System.IO;
+using Newtonsoft.Json.Linq;
+using Newtonsoft.Json;
+using GMCrypto.Lib;
+
+namespace PTMedicalInsurance.Forms
+{
+    /// <summary>
+    /// 南昌双通道备案申请、查询和撤销
+    /// 查询时支持查询本地申请记录(用于撤销或查看历史)、查询中心记录并显示结果
+    /// 本地表结构与中心做了格式转换,用于表格显示
+    /// </summary>
+    public partial class DualChannelRecordForm : Form
+    {
+        //设置业务实例
+        HisMainBusiness hBus = new HisMainBusiness();
+        MIIrisServices mIS = new MIIrisServices();
+        InvokeHelper invoker = new InvokeHelper();
+
+        public bool LocalQueryMode = true;
+
+        private JObject joBasicInfo = null;
+
+        DataTable dtApplyDrug = null;
+        public DualChannelRecordForm()
+        {
+            InitializeComponent();
+
+            //asc.controllInitializeSize(this);
+            //asc.controlAutoSize(this);
+
+            this.StartPosition = FormStartPosition.CenterScreen;
+
+            GridViewSetter grdSetter = new GridViewSetter();
+
+            grdSetter.SetHeaderTextOfChannelBasicInfo(dgv_BasicInfo);
+            grdSetter.DatagridviewColumnWidthAdaptation(dgv_BasicInfo);
+
+            grdSetter.SetHeaderTextOfChannelInsuInfo(dgv_DrugApply);
+            grdSetter.DatagridviewColumnWidthAdaptation(dgv_DrugApply);
+
+            grdSetter.SetHeaderTextOfChannelInsuInfo(dgv_DrugInfo);
+            grdSetter.DatagridviewColumnWidthAdaptation(dgv_DrugInfo);
+
+            grdSetter.SetHeaderTextOfChannelOrgInfo(dgv_OrgInfo);
+            grdSetter.DatagridviewColumnWidthAdaptation(dgv_OrgInfo);
+
+        }
+
+        private void btnClose_Click(object sender, EventArgs e)
+        {
+            Close();
+        }
+
+        private void DualChannelRecordForm_Load(object sender, EventArgs e)
+        {
+            this.Height = 600;
+            this.Width = 1200;
+
+            //asc.controllInitializeSize(this);
+            //asc.controlAutoSize(this);            
+        }
+
+        private void btnPresUpload_Click(object sender, EventArgs e)
+        {
+            if (joBasicInfo == null)
+            {
+                MessageBox.Show("请先读卡获取基本信息");
+                return;
+            }
+            if(dtApplyDrug == null || dtApplyDrug.Rows.Count < 1)
+            {
+                MessageBox.Show("请先增加药品信息");
+                return;
+            }
+            // 调用申请
+            string errMsg = string.Empty;
+            JObject joRtn = invoker.invokeCenterService(TradeEnum.DualChannelApply, GetApplyParam());
+            if (JsonHelper.parseCenterRtnValue(joRtn, out errMsg)!=0)
+            {
+                MessageBox.Show("申请失败:" + errMsg);
+                return;
+            }
+            // 保存申请记录
+            if (SaveApply(joRtn))
+            {
+                MessageBox.Show("申请成功!");
+            }
+        }
+
+        private JObject GetApplyParam()
+        {
+            JArray jaDrugs = new JArray();
+            foreach (DataRow row in dtApplyDrug.Rows)
+            {
+                dynamic obj = new JObject();
+                obj.med_list_codg = row["med_list_codg"].ToString();
+                obj.med_list_name = row["med_list_name"].ToString();
+                jaDrugs.Add(obj);
+            }
+
+            dynamic joOrg = new JObject();
+            joOrg.fixmedins_code = Global.inf.hospitalNO;
+            joOrg.fixmedins_name = Global.inf.hospitalName;
+            joOrg.poolarea_no = Global.inf.areaCode;
+
+            if (joBasicInfo != null)
+            {
+                joBasicInfo["appy_type"] = "32";
+                joBasicInfo["begndate"] = dtpStart.Value.ToString("yyyy-MM-dd");
+                joBasicInfo["enddate"] = dtpEnd.Value.ToString("yyyy-MM-dd");
+                joBasicInfo["addr"] = txtAddress.Text.Trim();
+                joBasicInfo["cond_abst"] = txtDiag.Text.Trim();
+            }
+
+            dynamic joInput = new JObject();
+            joInput.data = joBasicInfo;
+            joInput.twopathdruglist = jaDrugs;
+            joInput.twopathfixmedins = new JArray() { joOrg };
+
+            return joInput;
+        }
+
+        private bool SaveApply(JObject joRtn)
+        {
+            string errorMessage = string.Empty;
+            string dcla = joRtn["two_path_reg_sn"].ToString();
+            JObject joParams = GetApplyParam();
+            // 兼容通用备案
+            JObject joInput = (JObject)joParams["data"].DeepClone();
+            joInput["trt_dcla_detl_sn"] = dcla;
+            joInput["transCode"] = TradeEnum.DualChannelApply.GetCode();
+            joInput["transDesc"] = TradeEnum.DualChannelApply.GetName();
+            joInput["cond_abst_diag"] = joInput["cond_abst"];
+            joInput["cond_abst"].Remove();
+            joInput["drugs"] = joParams["twopathdruglist"];
+            joInput["fixmedins"] = joParams["twopathfixmedins"];
+            joInput["iresult"] = "0";
+            joInput["HospitalDr"] = Global.inf.hospitalDr;
+
+            string outparam = string.Empty;
+            int status = mIS.SaveReferralRecord(joInput, out outparam);
+            if (status != 0)
+            {
+                MessageBox.Show("保存失败:" + outparam);
+                return false;
+            }
+
+            return true;
+        }
+
+        private void btnReadCard_Click(object sender, EventArgs e)
+        {
+            CallResult ret = new ReadCardProcess().Process(new JObject());
+            if (ret.Success)
+            {
+                string outparam = string.Empty;
+                string patInfo = ret.PureData?.ToString();
+                hBus.convertPatientInfo(patInfo, out outparam);
+                if (string.IsNullOrEmpty(outparam))
+                {
+                    JObject joRtn = JObject.Parse(outparam);
+                    this.joBasicInfo = JObject.Parse(JsonHelper.getDestValue(joRtn, "output.baseinfo"));
+                    joBasicInfo["emp_no"] = JsonHelper.getDestValue(joRtn, "selectedInsuInfo.emp_no");
+                    joBasicInfo["emp_name"] = JsonHelper.getDestValue(joRtn, "selectedInsuInfo.emp_name");
+                    joBasicInfo["insutype"] = JsonHelper.getDestValue(joRtn, "selectedInsuInfo.insutype");
+
+                    txt_PsnName.Text = joBasicInfo["psn_name"].Text();
+                    txtPsnNO.Text = joBasicInfo["psn_no"].Text();
+                    txtInsuType.Text = joBasicInfo["insutype"].Text();
+                    txtCertType.Text = joBasicInfo["psn_cert_type"].Text();
+                    txtCertNo.Text = joBasicInfo["certno"].Text();
+                    txtBirth.Text = joBasicInfo["brdy"].Text();
+                    txtSex.Text = joBasicInfo["gend"].Text();
+                    txtNation.Text = joBasicInfo["naty"].Text();
+                    txtUnitNo.Text = joBasicInfo["emp_no"].Text();
+                    txtUnitName.Text = joBasicInfo["emp_name"].Text();
+                    
+                }
+
+            }
+            else
+            {
+                MessageBox.Show(ret.Data);
+            }
+        }
+
+        private void tc_Main_TabIndexChanged(object sender, EventArgs e)
+        {
+        }
+
+        private void btnQuery_Click(object sender, EventArgs e)
+        {
+            if (this.joBasicInfo == null)
+            {
+                MessageBox.Show("请先读卡获取基本信息");
+                return;
+            }
+            dynamic joParam = new JObject();
+            JObject joRtn = new JObject();
+            string errMsg = string.Empty;
+
+            JArray jaDrugs = new JArray();
+            JArray jaOrgs = new JArray();
+            JArray jaBasic = new JArray();
+
+            // 查询本院
+            if (LocalQueryMode)
+            {
+                joParam = new JObject();
+                joParam["CardID"] = joBasicInfo["certno"];
+                joParam["TransCode"] = TradeEnum.DualChannelApply.GetCode();
+                int status = mIS.QueryReferralRecord(joParam, out errMsg);
+                if (status != 0)
+                {
+                    MessageBox.Show("没有查询到申请记录!");
+                    return;
+                }
+                joRtn = JObject.Parse(errMsg);
+                jaBasic = JArray.Parse(joRtn["result"].Text());
+            }
+            else 
+            {
+                dynamic joInput = new JObject();
+                joParam.psn_no = this.joBasicInfo["psn_no"].Text();
+                joParam.begndate = dtpStart.Value.ToString("yyyy-MM-dd"); ;
+                joParam.enddate = dtpEnd.Value.ToString("yyyy-MM-dd");
+                joInput.data = joParam;
+                //查询中心
+                joRtn = invoker.invokeCenterService(TradeEnum.DualChannelQuery, joInput);
+                if (JsonHelper.parseCenterRtnValue(joRtn, out errMsg) != 0)
+                {
+                    MessageBox.Show("查询失败:" + errMsg);
+                    return;
+                }
+                JObject joBasic = JObject.Parse(joRtn["result"].Text());
+                jaDrugs = JArray.Parse(joRtn["twopathdruglist"].Text());
+                jaOrgs = JArray.Parse(joRtn["twopathfixmedins"].Text());
+                // 转换为本地格式
+                jaBasic["PsnNo"] = jaBasic["psn_no"];
+                jaBasic["Name"] = jaBasic["psn_name"];
+                jaBasic["CardID"] = jaBasic["certno"];
+                jaBasic["CreateDate"] = jaBasic["apply_date"];
+                jaBasic["BegnDate"] = jaBasic["begndate"];
+                jaBasic["EndDate"] = jaBasic["enddate"];
+                jaBasic["iResult"] = "0";
+                jaBasic["begndate"].Remove();
+                jaBasic["enddate"].Remove();
+                jaBasic = new JArray() { joBasic };
+
+                jaDrugs.ToList().ForEach(drug =>
+                {
+                    drug["InsuCode"] = drug["med_list_codg"];
+                    drug["InsuName"] = drug["med_list_name"];
+                });
+
+                jaOrgs.ToList().ForEach(org =>
+                {
+                    org["Code"] = org["fixmedins_code"];
+                    org["Name"] = org["fixmedins_name"];
+                    org["InsuranceArea"] = org["poolarea_no"];
+                });
+            }
+
+            DataTable dtBasic = jaBasic.ToObject<DataTable>();
+            DataTable dtDrugs = jaDrugs.ToObject<DataTable>();
+            DataTable dtOrgs = jaOrgs.ToObject<DataTable>();
+
+            dgv_BasicInfo.DataSource = dtBasic;
+            dgv_DrugInfo.DataSource = dtDrugs;
+            dgv_OrgInfo.DataSource = dtOrgs;
+        }
+
+        private void btnCancel_Click(object sender, EventArgs e)
+        {
+            if (dgv_BasicInfo.SelectedIndex == -1)
+            {
+                MessageBox.Show("请先选择申请记录!");
+                return;
+            }
+
+            DataGridViewRow row = dgv_BasicInfo.Rows[dgv_BasicInfo.SelectedIndex];
+            string trt_id = row.Cells["InsuSerNo"].Value.ToString();
+            dynamic joInput = new JObject();
+            dynamic joParam = new JObject();
+            joParam.two_path_reg_sn_list = new List<string>() { trt_id };
+            joInput.data = joParam;
+
+            string errMsg = string.Empty;
+            JObject joRtn = invoker.invokeCenterService(TradeEnum.DualChannelCancel, joInput);
+            if (JsonHelper.parseCenterRtnValue(joRtn, out errMsg) != 0)
+            {
+                MessageBox.Show("撤销失败:" + errMsg);
+                return;
+            }
+
+            //修改iris状态
+            joParam = new JObject();
+            joParam["ID"] = row.Cells["ID"].Value;
+            joParam["trtDclaDetlSn"] = trt_id;
+            int status = mIS.CancelReferralRecord(joParam, out errMsg);
+            if (status != 0)
+            {
+                MessageBox.Show("没有查询到申请记录!");
+                return;
+            }
+            MessageBox.Show("撤销成功!");
+
+        }
+    }
+}

+ 120 - 0
Forms/DualChannelRecordForm.resx

@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>

+ 282 - 208
Forms/SlowSpecRecord.Designer.cs

@@ -33,6 +33,13 @@ namespace PTMedicalInsurance.Forms
             this.btn_Cancel = new System.Windows.Forms.Button();
             this.btn_OK = new System.Windows.Forms.Button();
             this.panel3 = new System.Windows.Forms.Panel();
+            this.tbx_HospTel = new System.Windows.Forms.TextBox();
+            this.textBox4 = new System.Windows.Forms.TextBox();
+            this.label1 = new System.Windows.Forms.Label();
+            this.textBox5 = new System.Windows.Forms.TextBox();
+            this.label4 = new System.Windows.Forms.Label();
+            this.label7 = new System.Windows.Forms.Label();
+            this.tbx_Dise = new System.Windows.Forms.TextBox();
             this.tbx_ChiefDoctor = new System.Windows.Forms.TextBox();
             this.tbx_DoctorNo = new System.Windows.Forms.TextBox();
             this.label2 = new System.Windows.Forms.Label();
@@ -94,13 +101,6 @@ namespace PTMedicalInsurance.Forms
             this.tbx_Name = new System.Windows.Forms.TextBox();
             this.lab_IdCard = new System.Windows.Forms.Label();
             this.btn_GetMsg = new System.Windows.Forms.Button();
-            this.tbx_Dise = new System.Windows.Forms.TextBox();
-            this.tbx_HospTel = new System.Windows.Forms.TextBox();
-            this.textBox4 = new System.Windows.Forms.TextBox();
-            this.label1 = new System.Windows.Forms.Label();
-            this.textBox5 = new System.Windows.Forms.TextBox();
-            this.label4 = new System.Windows.Forms.Label();
-            this.label7 = new System.Windows.Forms.Label();
             this.panel2.SuspendLayout();
             this.panel3.SuspendLayout();
             this.panel4.SuspendLayout();
@@ -114,16 +114,18 @@ namespace PTMedicalInsurance.Forms
             this.panel2.Controls.Add(this.panel4);
             this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
             this.panel2.Location = new System.Drawing.Point(0, 0);
+            this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.panel2.Name = "panel2";
-            this.panel2.Size = new System.Drawing.Size(938, 637);
+            this.panel2.Size = new System.Drawing.Size(1407, 956);
             this.panel2.TabIndex = 2048;
             // 
             // btn_Cancel
             // 
             this.btn_Cancel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btn_Cancel.Location = new System.Drawing.Point(508, 592);
+            this.btn_Cancel.Location = new System.Drawing.Point(762, 888);
+            this.btn_Cancel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.btn_Cancel.Name = "btn_Cancel";
-            this.btn_Cancel.Size = new System.Drawing.Size(75, 33);
+            this.btn_Cancel.Size = new System.Drawing.Size(112, 50);
             this.btn_Cancel.TabIndex = 2047;
             this.btn_Cancel.Text = "取 消";
             this.btn_Cancel.UseVisualStyleBackColor = true;
@@ -131,11 +133,12 @@ namespace PTMedicalInsurance.Forms
             // btn_OK
             // 
             this.btn_OK.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btn_OK.Location = new System.Drawing.Point(392, 592);
+            this.btn_OK.Location = new System.Drawing.Point(588, 888);
+            this.btn_OK.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.btn_OK.Name = "btn_OK";
-            this.btn_OK.Size = new System.Drawing.Size(75, 33);
+            this.btn_OK.Size = new System.Drawing.Size(112, 50);
             this.btn_OK.TabIndex = 2046;
-            this.btn_OK.Text = "确 定";
+            this.btn_OK.Text = "申  请";
             this.btn_OK.UseVisualStyleBackColor = true;
             this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
             // 
@@ -175,26 +178,103 @@ namespace PTMedicalInsurance.Forms
             this.panel3.Controls.Add(this.lab_EndDate);
             this.panel3.Controls.Add(this.label12);
             this.panel3.Controls.Add(this.lab_StaDate);
-            this.panel3.Location = new System.Drawing.Point(6, 241);
+            this.panel3.Location = new System.Drawing.Point(9, 362);
+            this.panel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.panel3.Name = "panel3";
-            this.panel3.Size = new System.Drawing.Size(925, 325);
+            this.panel3.Size = new System.Drawing.Size(1386, 486);
             this.panel3.TabIndex = 2044;
             this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint);
             // 
+            // tbx_HospTel
+            // 
+            this.tbx_HospTel.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.tbx_HospTel.Location = new System.Drawing.Point(897, 162);
+            this.tbx_HospTel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+            this.tbx_HospTel.Name = "tbx_HospTel";
+            this.tbx_HospTel.Size = new System.Drawing.Size(472, 31);
+            this.tbx_HospTel.TabIndex = 2104;
+            // 
+            // textBox4
+            // 
+            this.textBox4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.textBox4.Location = new System.Drawing.Point(600, 160);
+            this.textBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+            this.textBox4.Name = "textBox4";
+            this.textBox4.Size = new System.Drawing.Size(164, 31);
+            this.textBox4.TabIndex = 2103;
+            this.textBox4.Text = "A10";
+            // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label1.ForeColor = System.Drawing.Color.Red;
+            this.label1.Location = new System.Drawing.Point(15, 166);
+            this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(105, 21);
+            this.label1.TabIndex = 2102;
+            this.label1.Text = "科室名称:";
+            // 
+            // textBox5
+            // 
+            this.textBox5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.textBox5.Location = new System.Drawing.Point(124, 162);
+            this.textBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+            this.textBox5.Name = "textBox5";
+            this.textBox5.Size = new System.Drawing.Size(283, 31);
+            this.textBox5.TabIndex = 2101;
+            this.textBox5.Text = "眼科";
+            // 
+            // label4
+            // 
+            this.label4.AutoSize = true;
+            this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label4.ForeColor = System.Drawing.Color.Red;
+            this.label4.Location = new System.Drawing.Point(783, 165);
+            this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label4.Name = "label4";
+            this.label4.Size = new System.Drawing.Size(105, 21);
+            this.label4.TabIndex = 2100;
+            this.label4.Text = "科室电话:";
+            // 
+            // label7
+            // 
+            this.label7.AutoSize = true;
+            this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label7.ForeColor = System.Drawing.Color.Red;
+            this.label7.Location = new System.Drawing.Point(429, 166);
+            this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label7.Name = "label7";
+            this.label7.Size = new System.Drawing.Size(105, 21);
+            this.label7.TabIndex = 2099;
+            this.label7.Text = "科室编码:";
+            // 
+            // tbx_Dise
+            // 
+            this.tbx_Dise.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.tbx_Dise.Location = new System.Drawing.Point(123, 230);
+            this.tbx_Dise.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+            this.tbx_Dise.Name = "tbx_Dise";
+            this.tbx_Dise.Size = new System.Drawing.Size(283, 31);
+            this.tbx_Dise.TabIndex = 2098;
+            // 
             // tbx_ChiefDoctor
             // 
             this.tbx_ChiefDoctor.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_ChiefDoctor.Location = new System.Drawing.Point(598, 79);
+            this.tbx_ChiefDoctor.Location = new System.Drawing.Point(897, 118);
+            this.tbx_ChiefDoctor.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_ChiefDoctor.Name = "tbx_ChiefDoctor";
-            this.tbx_ChiefDoctor.Size = new System.Drawing.Size(316, 23);
+            this.tbx_ChiefDoctor.Size = new System.Drawing.Size(472, 31);
             this.tbx_ChiefDoctor.TabIndex = 2097;
             // 
             // tbx_DoctorNo
             // 
             this.tbx_DoctorNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_DoctorNo.Location = new System.Drawing.Point(400, 78);
+            this.tbx_DoctorNo.Location = new System.Drawing.Point(600, 117);
+            this.tbx_DoctorNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_DoctorNo.Name = "tbx_DoctorNo";
-            this.tbx_DoctorNo.Size = new System.Drawing.Size(111, 23);
+            this.tbx_DoctorNo.Size = new System.Drawing.Size(164, 31);
             this.tbx_DoctorNo.TabIndex = 2096;
             this.tbx_DoctorNo.Text = " ";
             // 
@@ -203,45 +283,50 @@ namespace PTMedicalInsurance.Forms
             this.label2.AutoSize = true;
             this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label2.ForeColor = System.Drawing.Color.Red;
-            this.label2.Location = new System.Drawing.Point(10, 82);
+            this.label2.Location = new System.Drawing.Point(15, 123);
+            this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label2.Name = "label2";
-            this.label2.Size = new System.Drawing.Size(98, 14);
+            this.label2.Size = new System.Drawing.Size(147, 21);
             this.label2.TabIndex = 2095;
             this.label2.Text = "诊断医师姓名:";
             // 
             // tbx_Doctor
             // 
             this.tbx_Doctor.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_Doctor.Location = new System.Drawing.Point(111, 79);
+            this.tbx_Doctor.Location = new System.Drawing.Point(166, 118);
+            this.tbx_Doctor.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_Doctor.Name = "tbx_Doctor";
-            this.tbx_Doctor.Size = new System.Drawing.Size(162, 23);
+            this.tbx_Doctor.Size = new System.Drawing.Size(241, 31);
             this.tbx_Doctor.TabIndex = 2093;
             // 
             // cbx_Slow
             // 
             this.cbx_Slow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.cbx_Slow.FormattingEnabled = true;
-            this.cbx_Slow.Location = new System.Drawing.Point(111, 40);
+            this.cbx_Slow.Location = new System.Drawing.Point(166, 60);
+            this.cbx_Slow.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.cbx_Slow.Name = "cbx_Slow";
-            this.cbx_Slow.Size = new System.Drawing.Size(400, 28);
+            this.cbx_Slow.Size = new System.Drawing.Size(598, 36);
             this.cbx_Slow.TabIndex = 2089;
             // 
             // cbx_MedInst
             // 
             this.cbx_MedInst.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.cbx_MedInst.FormattingEnabled = true;
-            this.cbx_MedInst.Location = new System.Drawing.Point(668, 40);
+            this.cbx_MedInst.Location = new System.Drawing.Point(1002, 60);
+            this.cbx_MedInst.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.cbx_MedInst.Name = "cbx_MedInst";
-            this.cbx_MedInst.Size = new System.Drawing.Size(246, 28);
+            this.cbx_MedInst.Size = new System.Drawing.Size(367, 36);
             this.cbx_MedInst.TabIndex = 2068;
             this.cbx_MedInst.TabStop = false;
             // 
             // tbx_HospOpin
             // 
             this.tbx_HospOpin.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_HospOpin.Location = new System.Drawing.Point(368, 287);
+            this.tbx_HospOpin.Location = new System.Drawing.Point(552, 430);
+            this.tbx_HospOpin.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_HospOpin.Name = "tbx_HospOpin";
-            this.tbx_HospOpin.Size = new System.Drawing.Size(546, 23);
+            this.tbx_HospOpin.Size = new System.Drawing.Size(817, 31);
             this.tbx_HospOpin.TabIndex = 2088;
             // 
             // lab_TranOpin
@@ -249,9 +334,10 @@ namespace PTMedicalInsurance.Forms
             this.lab_TranOpin.AutoSize = true;
             this.lab_TranOpin.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_TranOpin.ForeColor = System.Drawing.Color.Red;
-            this.lab_TranOpin.Location = new System.Drawing.Point(286, 291);
+            this.lab_TranOpin.Location = new System.Drawing.Point(429, 436);
+            this.lab_TranOpin.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_TranOpin.Name = "lab_TranOpin";
-            this.lab_TranOpin.Size = new System.Drawing.Size(77, 14);
+            this.lab_TranOpin.Size = new System.Drawing.Size(115, 21);
             this.lab_TranOpin.TabIndex = 2087;
             this.lab_TranOpin.Text = "医院意见:";
             // 
@@ -261,9 +347,10 @@ namespace PTMedicalInsurance.Forms
             this.dpt_HospDate.CustomFormat = "yyyy-MM-dd";
             this.dpt_HospDate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dpt_HospDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
-            this.dpt_HospDate.Location = new System.Drawing.Point(109, 285);
+            this.dpt_HospDate.Location = new System.Drawing.Point(164, 428);
+            this.dpt_HospDate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.dpt_HospDate.Name = "dpt_HospDate";
-            this.dpt_HospDate.Size = new System.Drawing.Size(164, 26);
+            this.dpt_HospDate.Size = new System.Drawing.Size(244, 35);
             this.dpt_HospDate.TabIndex = 2086;
             // 
             // label9
@@ -271,18 +358,20 @@ namespace PTMedicalInsurance.Forms
             this.label9.AutoSize = true;
             this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label9.ForeColor = System.Drawing.Color.Red;
-            this.label9.Location = new System.Drawing.Point(10, 291);
+            this.label9.Location = new System.Drawing.Point(15, 436);
+            this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label9.Name = "label9";
-            this.label9.Size = new System.Drawing.Size(98, 14);
+            this.label9.Size = new System.Drawing.Size(147, 21);
             this.label9.TabIndex = 2085;
             this.label9.Text = "医院鉴定日期:";
             // 
             // tbx_BizAppy
             // 
             this.tbx_BizAppy.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_BizAppy.Location = new System.Drawing.Point(615, 256);
+            this.tbx_BizAppy.Location = new System.Drawing.Point(922, 384);
+            this.tbx_BizAppy.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_BizAppy.Name = "tbx_BizAppy";
-            this.tbx_BizAppy.Size = new System.Drawing.Size(299, 23);
+            this.tbx_BizAppy.Size = new System.Drawing.Size(446, 31);
             this.tbx_BizAppy.TabIndex = 2084;
             // 
             // label11
@@ -290,9 +379,10 @@ namespace PTMedicalInsurance.Forms
             this.label11.AutoSize = true;
             this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label11.ForeColor = System.Drawing.Color.Red;
-            this.label11.Location = new System.Drawing.Point(516, 262);
+            this.label11.Location = new System.Drawing.Point(774, 393);
+            this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label11.Name = "label11";
-            this.label11.Size = new System.Drawing.Size(98, 14);
+            this.label11.Size = new System.Drawing.Size(147, 21);
             this.label11.TabIndex = 2083;
             this.label11.Text = "业务类型标志:";
             // 
@@ -302,9 +392,10 @@ namespace PTMedicalInsurance.Forms
             this.dpk_EndDate.CustomFormat = "yyyy-MM-dd";
             this.dpk_EndDate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dpk_EndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
-            this.dpk_EndDate.Location = new System.Drawing.Point(352, 253);
+            this.dpk_EndDate.Location = new System.Drawing.Point(528, 380);
+            this.dpk_EndDate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.dpk_EndDate.Name = "dpk_EndDate";
-            this.dpk_EndDate.Size = new System.Drawing.Size(156, 26);
+            this.dpk_EndDate.Size = new System.Drawing.Size(232, 35);
             this.dpk_EndDate.TabIndex = 2082;
             // 
             // dpk_StaDate
@@ -313,26 +404,29 @@ namespace PTMedicalInsurance.Forms
             this.dpk_StaDate.CustomFormat = "yyyy-MM-dd";
             this.dpk_StaDate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dpk_StaDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
-            this.dpk_StaDate.Location = new System.Drawing.Point(83, 253);
+            this.dpk_StaDate.Location = new System.Drawing.Point(124, 380);
+            this.dpk_StaDate.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.dpk_StaDate.Name = "dpk_StaDate";
-            this.dpk_StaDate.Size = new System.Drawing.Size(191, 26);
+            this.dpk_StaDate.Size = new System.Drawing.Size(284, 35);
             this.dpk_StaDate.TabIndex = 2081;
             // 
             // rtb_Treatment
             // 
             this.rtb_Treatment.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.rtb_Treatment.Location = new System.Drawing.Point(156, 195);
+            this.rtb_Treatment.Location = new System.Drawing.Point(234, 292);
+            this.rtb_Treatment.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.rtb_Treatment.Name = "rtb_Treatment";
-            this.rtb_Treatment.Size = new System.Drawing.Size(758, 52);
+            this.rtb_Treatment.Size = new System.Drawing.Size(1135, 76);
             this.rtb_Treatment.TabIndex = 2080;
             this.rtb_Treatment.Text = "";
             // 
             // rtb_Condition
             // 
             this.rtb_Condition.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.rtb_Condition.Location = new System.Drawing.Point(400, 137);
+            this.rtb_Condition.Location = new System.Drawing.Point(600, 206);
+            this.rtb_Condition.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.rtb_Condition.Name = "rtb_Condition";
-            this.rtb_Condition.Size = new System.Drawing.Size(514, 52);
+            this.rtb_Condition.Size = new System.Drawing.Size(769, 76);
             this.rtb_Condition.TabIndex = 2079;
             this.rtb_Condition.Text = "";
             // 
@@ -341,9 +435,10 @@ namespace PTMedicalInsurance.Forms
             this.label24.AutoSize = true;
             this.label24.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label24.ForeColor = System.Drawing.Color.Red;
-            this.label24.Location = new System.Drawing.Point(10, 156);
+            this.label24.Location = new System.Drawing.Point(15, 234);
+            this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label24.Name = "label24";
-            this.label24.Size = new System.Drawing.Size(70, 14);
+            this.label24.Size = new System.Drawing.Size(105, 21);
             this.label24.TabIndex = 2077;
             this.label24.Text = "病种名称:";
             // 
@@ -352,9 +447,10 @@ namespace PTMedicalInsurance.Forms
             this.label8.AutoSize = true;
             this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label8.ForeColor = System.Drawing.Color.Red;
-            this.label8.Location = new System.Drawing.Point(516, 47);
+            this.label8.Location = new System.Drawing.Point(774, 70);
+            this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label8.Name = "label8";
-            this.label8.Size = new System.Drawing.Size(161, 14);
+            this.label8.Size = new System.Drawing.Size(241, 21);
             this.label8.TabIndex = 2061;
             this.label8.Text = "鉴定定点医药机构名称:";
             // 
@@ -363,9 +459,10 @@ namespace PTMedicalInsurance.Forms
             this.label21.AutoSize = true;
             this.label21.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label21.ForeColor = System.Drawing.Color.Red;
-            this.label21.Location = new System.Drawing.Point(10, 211);
+            this.label21.Location = new System.Drawing.Point(15, 316);
+            this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label21.Name = "label21";
-            this.label21.Size = new System.Drawing.Size(140, 14);
+            this.label21.Size = new System.Drawing.Size(210, 21);
             this.label21.TabIndex = 1326;
             this.label21.Text = "诊治方案及项目构成:";
             // 
@@ -374,9 +471,10 @@ namespace PTMedicalInsurance.Forms
             this.label5.AutoSize = true;
             this.label5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label5.ForeColor = System.Drawing.Color.Red;
-            this.label5.Location = new System.Drawing.Point(7, 47);
+            this.label5.Location = new System.Drawing.Point(10, 70);
+            this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label5.Name = "label5";
-            this.label5.Size = new System.Drawing.Size(105, 14);
+            this.label5.Size = new System.Drawing.Size(157, 21);
             this.label5.TabIndex = 2056;
             this.label5.Text = "慢特病种名称:";
             // 
@@ -385,9 +483,10 @@ namespace PTMedicalInsurance.Forms
             this.label22.AutoSize = true;
             this.label22.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label22.ForeColor = System.Drawing.Color.Red;
-            this.label22.Location = new System.Drawing.Point(522, 81);
+            this.label22.Location = new System.Drawing.Point(783, 122);
+            this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label22.Name = "label22";
-            this.label22.Size = new System.Drawing.Size(70, 14);
+            this.label22.Size = new System.Drawing.Size(105, 21);
             this.label22.TabIndex = 1327;
             this.label22.Text = "主任医师:";
             // 
@@ -396,22 +495,24 @@ namespace PTMedicalInsurance.Forms
             this.label17.AutoSize = true;
             this.label17.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label17.ForeColor = System.Drawing.Color.Red;
-            this.label17.Location = new System.Drawing.Point(286, 156);
+            this.label17.Location = new System.Drawing.Point(429, 234);
+            this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label17.Name = "label17";
-            this.label17.Size = new System.Drawing.Size(112, 14);
+            this.label17.Size = new System.Drawing.Size(168, 21);
             this.label17.TabIndex = 1322;
             this.label17.Text = "病情摘要及诊断:";
             // 
             // textBox3
             // 
-            this.textBox3.BackColor = System.Drawing.Color.Turquoise;
+            this.textBox3.BackColor = System.Drawing.SystemColors.Control;
             this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
             this.textBox3.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.textBox3.Location = new System.Drawing.Point(-2, 0);
+            this.textBox3.Location = new System.Drawing.Point(-3, 0);
+            this.textBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.textBox3.Multiline = true;
             this.textBox3.Name = "textBox3";
             this.textBox3.ReadOnly = true;
-            this.textBox3.Size = new System.Drawing.Size(925, 33);
+            this.textBox3.Size = new System.Drawing.Size(1386, 48);
             this.textBox3.TabIndex = 2055;
             this.textBox3.TabStop = false;
             this.textBox3.Text = "慢特病信息";
@@ -422,9 +523,10 @@ namespace PTMedicalInsurance.Forms
             this.lab_EndDate.AutoSize = true;
             this.lab_EndDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_EndDate.ForeColor = System.Drawing.Color.Red;
-            this.lab_EndDate.Location = new System.Drawing.Point(283, 262);
+            this.lab_EndDate.Location = new System.Drawing.Point(424, 393);
+            this.lab_EndDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_EndDate.Name = "lab_EndDate";
-            this.lab_EndDate.Size = new System.Drawing.Size(77, 14);
+            this.lab_EndDate.Size = new System.Drawing.Size(115, 21);
             this.lab_EndDate.TabIndex = 2053;
             this.lab_EndDate.Text = "结束日期:";
             // 
@@ -433,9 +535,10 @@ namespace PTMedicalInsurance.Forms
             this.label12.AutoSize = true;
             this.label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label12.ForeColor = System.Drawing.Color.Red;
-            this.label12.Location = new System.Drawing.Point(286, 82);
+            this.label12.Location = new System.Drawing.Point(429, 123);
+            this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label12.Name = "label12";
-            this.label12.Size = new System.Drawing.Size(98, 14);
+            this.label12.Size = new System.Drawing.Size(147, 21);
             this.label12.TabIndex = 1317;
             this.label12.Text = "诊断医师编码:";
             // 
@@ -444,9 +547,10 @@ namespace PTMedicalInsurance.Forms
             this.lab_StaDate.AutoSize = true;
             this.lab_StaDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_StaDate.ForeColor = System.Drawing.Color.Red;
-            this.lab_StaDate.Location = new System.Drawing.Point(10, 262);
+            this.lab_StaDate.Location = new System.Drawing.Point(15, 393);
+            this.lab_StaDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_StaDate.Name = "lab_StaDate";
-            this.lab_StaDate.Size = new System.Drawing.Size(77, 14);
+            this.lab_StaDate.Size = new System.Drawing.Size(115, 21);
             this.lab_StaDate.TabIndex = 2052;
             this.lab_StaDate.Text = "开始日期:";
             // 
@@ -487,9 +591,10 @@ namespace PTMedicalInsurance.Forms
             this.panel4.Controls.Add(this.tbx_Name);
             this.panel4.Controls.Add(this.lab_IdCard);
             this.panel4.Controls.Add(this.btn_GetMsg);
-            this.panel4.Location = new System.Drawing.Point(6, 6);
+            this.panel4.Location = new System.Drawing.Point(9, 9);
+            this.panel4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.panel4.Name = "panel4";
-            this.panel4.Size = new System.Drawing.Size(925, 223);
+            this.panel4.Size = new System.Drawing.Size(1386, 332);
             this.panel4.TabIndex = 2043;
             this.panel4.TabStop = true;
             // 
@@ -499,18 +604,20 @@ namespace PTMedicalInsurance.Forms
             this.cbx_CardType.FormattingEnabled = true;
             this.cbx_CardType.Items.AddRange(new object[] {
             "居民身份证"});
-            this.cbx_CardType.Location = new System.Drawing.Point(357, 35);
+            this.cbx_CardType.Location = new System.Drawing.Point(536, 52);
+            this.cbx_CardType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.cbx_CardType.Name = "cbx_CardType";
-            this.cbx_CardType.Size = new System.Drawing.Size(154, 28);
+            this.cbx_CardType.Size = new System.Drawing.Size(229, 36);
             this.cbx_CardType.TabIndex = 2093;
             this.cbx_CardType.TabStop = false;
             // 
             // tbx_AddParentNo
             // 
             this.tbx_AddParentNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_AddParentNo.Location = new System.Drawing.Point(149, 187);
+            this.tbx_AddParentNo.Location = new System.Drawing.Point(224, 280);
+            this.tbx_AddParentNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_AddParentNo.Name = "tbx_AddParentNo";
-            this.tbx_AddParentNo.Size = new System.Drawing.Size(124, 23);
+            this.tbx_AddParentNo.Size = new System.Drawing.Size(184, 31);
             this.tbx_AddParentNo.TabIndex = 2067;
             // 
             // label3
@@ -518,18 +625,20 @@ namespace PTMedicalInsurance.Forms
             this.label3.AutoSize = true;
             this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label3.ForeColor = System.Drawing.Color.Red;
-            this.label3.Location = new System.Drawing.Point(10, 190);
+            this.label3.Location = new System.Drawing.Point(15, 285);
+            this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label3.Name = "label3";
-            this.label3.Size = new System.Drawing.Size(133, 14);
+            this.label3.Size = new System.Drawing.Size(199, 21);
             this.label3.TabIndex = 2066;
             this.label3.Text = "参保所属医保区划:";
             // 
             // tbx_AddNo
             // 
             this.tbx_AddNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_AddNo.Location = new System.Drawing.Point(645, 158);
+            this.tbx_AddNo.Location = new System.Drawing.Point(968, 237);
+            this.tbx_AddNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_AddNo.Name = "tbx_AddNo";
-            this.tbx_AddNo.Size = new System.Drawing.Size(269, 23);
+            this.tbx_AddNo.Size = new System.Drawing.Size(402, 31);
             this.tbx_AddNo.TabIndex = 2065;
             // 
             // label6
@@ -537,18 +646,20 @@ namespace PTMedicalInsurance.Forms
             this.label6.AutoSize = true;
             this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label6.ForeColor = System.Drawing.Color.Red;
-            this.label6.Location = new System.Drawing.Point(519, 161);
+            this.label6.Location = new System.Drawing.Point(778, 242);
+            this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label6.Name = "label6";
-            this.label6.Size = new System.Drawing.Size(133, 14);
+            this.label6.Size = new System.Drawing.Size(199, 21);
             this.label6.TabIndex = 2063;
             this.label6.Text = "参保机构医保区划:";
             // 
             // tbx_MedType
             // 
             this.tbx_MedType.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_MedType.Location = new System.Drawing.Point(357, 158);
+            this.tbx_MedType.Location = new System.Drawing.Point(536, 237);
+            this.tbx_MedType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_MedType.Name = "tbx_MedType";
-            this.tbx_MedType.Size = new System.Drawing.Size(154, 23);
+            this.tbx_MedType.Size = new System.Drawing.Size(229, 31);
             this.tbx_MedType.TabIndex = 2062;
             // 
             // label14
@@ -556,18 +667,20 @@ namespace PTMedicalInsurance.Forms
             this.label14.AutoSize = true;
             this.label14.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label14.ForeColor = System.Drawing.Color.Red;
-            this.label14.Location = new System.Drawing.Point(288, 161);
+            this.label14.Location = new System.Drawing.Point(432, 242);
+            this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label14.Name = "label14";
-            this.label14.Size = new System.Drawing.Size(70, 14);
+            this.label14.Size = new System.Drawing.Size(105, 21);
             this.label14.TabIndex = 2061;
             this.label14.Text = "待遇类型:";
             // 
             // tbx_InsuType
             // 
             this.tbx_InsuType.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_InsuType.Location = new System.Drawing.Point(83, 158);
+            this.tbx_InsuType.Location = new System.Drawing.Point(124, 237);
+            this.tbx_InsuType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_InsuType.Name = "tbx_InsuType";
-            this.tbx_InsuType.Size = new System.Drawing.Size(190, 23);
+            this.tbx_InsuType.Size = new System.Drawing.Size(283, 31);
             this.tbx_InsuType.TabIndex = 2058;
             // 
             // lab_
@@ -575,18 +688,20 @@ namespace PTMedicalInsurance.Forms
             this.lab_.AutoSize = true;
             this.lab_.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_.ForeColor = System.Drawing.Color.Red;
-            this.lab_.Location = new System.Drawing.Point(10, 161);
+            this.lab_.Location = new System.Drawing.Point(15, 242);
+            this.lab_.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_.Name = "lab_";
-            this.lab_.Size = new System.Drawing.Size(77, 14);
+            this.lab_.Size = new System.Drawing.Size(115, 21);
             this.lab_.TabIndex = 2057;
             this.lab_.Text = "险种类型:";
             // 
             // tbx_No
             // 
             this.tbx_No.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_No.Location = new System.Drawing.Point(591, 129);
+            this.tbx_No.Location = new System.Drawing.Point(886, 194);
+            this.tbx_No.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_No.Name = "tbx_No";
-            this.tbx_No.Size = new System.Drawing.Size(323, 23);
+            this.tbx_No.Size = new System.Drawing.Size(482, 31);
             this.tbx_No.TabIndex = 2056;
             // 
             // lab_No
@@ -594,34 +709,38 @@ namespace PTMedicalInsurance.Forms
             this.lab_No.AutoSize = true;
             this.lab_No.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_No.ForeColor = System.Drawing.Color.Red;
-            this.lab_No.Location = new System.Drawing.Point(518, 135);
+            this.lab_No.Location = new System.Drawing.Point(777, 202);
+            this.lab_No.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_No.Name = "lab_No";
-            this.lab_No.Size = new System.Drawing.Size(77, 14);
+            this.lab_No.Size = new System.Drawing.Size(115, 21);
             this.lab_No.TabIndex = 2055;
             this.lab_No.Text = "人员编号:";
             // 
             // tbx_perType
             // 
             this.tbx_perType.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_perType.Location = new System.Drawing.Point(357, 129);
+            this.tbx_perType.Location = new System.Drawing.Point(536, 194);
+            this.tbx_perType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_perType.Name = "tbx_perType";
-            this.tbx_perType.Size = new System.Drawing.Size(154, 23);
+            this.tbx_perType.Size = new System.Drawing.Size(229, 31);
             this.tbx_perType.TabIndex = 2048;
             // 
             // tbx_CompNo
             // 
             this.tbx_CompNo.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_CompNo.Location = new System.Drawing.Point(83, 129);
+            this.tbx_CompNo.Location = new System.Drawing.Point(124, 194);
+            this.tbx_CompNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_CompNo.Name = "tbx_CompNo";
-            this.tbx_CompNo.Size = new System.Drawing.Size(191, 23);
+            this.tbx_CompNo.Size = new System.Drawing.Size(284, 31);
             this.tbx_CompNo.TabIndex = 2045;
             // 
             // tbx_comp
             // 
             this.tbx_comp.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_comp.Location = new System.Drawing.Point(591, 96);
+            this.tbx_comp.Location = new System.Drawing.Point(886, 144);
+            this.tbx_comp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_comp.Name = "tbx_comp";
-            this.tbx_comp.Size = new System.Drawing.Size(323, 23);
+            this.tbx_comp.Size = new System.Drawing.Size(482, 31);
             this.tbx_comp.TabIndex = 2044;
             // 
             // dpk_Birth
@@ -630,9 +749,10 @@ namespace PTMedicalInsurance.Forms
             this.dpk_Birth.CustomFormat = "yyyy-MM-dd";
             this.dpk_Birth.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.dpk_Birth.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
-            this.dpk_Birth.Location = new System.Drawing.Point(357, 95);
+            this.dpk_Birth.Location = new System.Drawing.Point(536, 142);
+            this.dpk_Birth.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.dpk_Birth.Name = "dpk_Birth";
-            this.dpk_Birth.Size = new System.Drawing.Size(154, 26);
+            this.dpk_Birth.Size = new System.Drawing.Size(229, 35);
             this.dpk_Birth.TabIndex = 2043;
             // 
             // cbx_Sex
@@ -642,9 +762,10 @@ namespace PTMedicalInsurance.Forms
             this.cbx_Sex.Items.AddRange(new object[] {
             "男",
             "女"});
-            this.cbx_Sex.Location = new System.Drawing.Point(83, 95);
+            this.cbx_Sex.Location = new System.Drawing.Point(124, 142);
+            this.cbx_Sex.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.cbx_Sex.Name = "cbx_Sex";
-            this.cbx_Sex.Size = new System.Drawing.Size(190, 28);
+            this.cbx_Sex.Size = new System.Drawing.Size(283, 36);
             this.cbx_Sex.TabIndex = 1338;
             this.cbx_Sex.TabStop = false;
             // 
@@ -653,9 +774,10 @@ namespace PTMedicalInsurance.Forms
             this.label31.AutoSize = true;
             this.label31.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label31.ForeColor = System.Drawing.SystemColors.ControlText;
-            this.label31.Location = new System.Drawing.Point(519, 99);
+            this.label31.Location = new System.Drawing.Point(778, 148);
+            this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label31.Name = "label31";
-            this.label31.Size = new System.Drawing.Size(70, 14);
+            this.label31.Size = new System.Drawing.Size(105, 21);
             this.label31.TabIndex = 1336;
             this.label31.Text = "公司名称:";
             // 
@@ -664,9 +786,10 @@ namespace PTMedicalInsurance.Forms
             this.label30.AutoSize = true;
             this.label30.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label30.ForeColor = System.Drawing.SystemColors.ControlText;
-            this.label30.Location = new System.Drawing.Point(10, 135);
+            this.label30.Location = new System.Drawing.Point(15, 202);
+            this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label30.Name = "label30";
-            this.label30.Size = new System.Drawing.Size(70, 14);
+            this.label30.Size = new System.Drawing.Size(105, 21);
             this.label30.TabIndex = 1335;
             this.label30.Text = "公司编码:";
             // 
@@ -675,9 +798,10 @@ namespace PTMedicalInsurance.Forms
             this.label29.AutoSize = true;
             this.label29.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label29.ForeColor = System.Drawing.Color.Red;
-            this.label29.Location = new System.Drawing.Point(286, 132);
+            this.label29.Location = new System.Drawing.Point(429, 198);
+            this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label29.Name = "label29";
-            this.label29.Size = new System.Drawing.Size(70, 14);
+            this.label29.Size = new System.Drawing.Size(105, 21);
             this.label29.TabIndex = 1334;
             this.label29.Text = "人员类别:";
             // 
@@ -686,9 +810,10 @@ namespace PTMedicalInsurance.Forms
             this.label20.AutoSize = true;
             this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label20.ForeColor = System.Drawing.Color.Red;
-            this.label20.Location = new System.Drawing.Point(10, 104);
+            this.label20.Location = new System.Drawing.Point(15, 156);
+            this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label20.Name = "label20";
-            this.label20.Size = new System.Drawing.Size(42, 14);
+            this.label20.Size = new System.Drawing.Size(63, 21);
             this.label20.TabIndex = 1325;
             this.label20.Text = "性别:";
             // 
@@ -697,9 +822,10 @@ namespace PTMedicalInsurance.Forms
             this.label18.AutoSize = true;
             this.label18.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label18.ForeColor = System.Drawing.Color.Red;
-            this.label18.Location = new System.Drawing.Point(10, 69);
+            this.label18.Location = new System.Drawing.Point(15, 104);
+            this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label18.Name = "label18";
-            this.label18.Size = new System.Drawing.Size(42, 14);
+            this.label18.Size = new System.Drawing.Size(63, 21);
             this.label18.TabIndex = 1323;
             this.label18.Text = "国籍:";
             // 
@@ -708,22 +834,24 @@ namespace PTMedicalInsurance.Forms
             this.label16.AutoSize = true;
             this.label16.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.label16.ForeColor = System.Drawing.Color.Red;
-            this.label16.Location = new System.Drawing.Point(286, 99);
+            this.label16.Location = new System.Drawing.Point(429, 148);
+            this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label16.Name = "label16";
-            this.label16.Size = new System.Drawing.Size(70, 14);
+            this.label16.Size = new System.Drawing.Size(105, 21);
             this.label16.TabIndex = 1321;
             this.label16.Text = "出生日期:";
             // 
             // textBox1
             // 
-            this.textBox1.BackColor = System.Drawing.Color.Turquoise;
+            this.textBox1.BackColor = System.Drawing.SystemColors.Control;
             this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
             this.textBox1.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.textBox1.Location = new System.Drawing.Point(-2, -2);
+            this.textBox1.Location = new System.Drawing.Point(-3, -3);
+            this.textBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.textBox1.Multiline = true;
             this.textBox1.Name = "textBox1";
             this.textBox1.ReadOnly = true;
-            this.textBox1.Size = new System.Drawing.Size(925, 33);
+            this.textBox1.Size = new System.Drawing.Size(1386, 48);
             this.textBox1.TabIndex = 1300;
             this.textBox1.TabStop = false;
             this.textBox1.Text = "基本信息";
@@ -732,17 +860,19 @@ namespace PTMedicalInsurance.Forms
             // tbx_address
             // 
             this.tbx_address.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_address.Location = new System.Drawing.Point(591, 66);
+            this.tbx_address.Location = new System.Drawing.Point(886, 99);
+            this.tbx_address.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_address.Name = "tbx_address";
-            this.tbx_address.Size = new System.Drawing.Size(323, 23);
+            this.tbx_address.Size = new System.Drawing.Size(482, 31);
             this.tbx_address.TabIndex = 5;
             // 
             // tbx_Natio
             // 
             this.tbx_Natio.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_Natio.Location = new System.Drawing.Point(82, 66);
+            this.tbx_Natio.Location = new System.Drawing.Point(123, 99);
+            this.tbx_Natio.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_Natio.Name = "tbx_Natio";
-            this.tbx_Natio.Size = new System.Drawing.Size(191, 23);
+            this.tbx_Natio.Size = new System.Drawing.Size(284, 31);
             this.tbx_Natio.TabIndex = 3;
             // 
             // lab_address
@@ -750,18 +880,20 @@ namespace PTMedicalInsurance.Forms
             this.lab_address.AutoSize = true;
             this.lab_address.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_address.ForeColor = System.Drawing.Color.Red;
-            this.lab_address.Location = new System.Drawing.Point(519, 69);
+            this.lab_address.Location = new System.Drawing.Point(778, 104);
+            this.lab_address.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_address.Name = "lab_address";
-            this.lab_address.Size = new System.Drawing.Size(77, 14);
+            this.lab_address.Size = new System.Drawing.Size(115, 21);
             this.lab_address.TabIndex = 111;
             this.lab_address.Text = "联系地址:";
             // 
             // tbx_Phone
             // 
             this.tbx_Phone.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_Phone.Location = new System.Drawing.Point(357, 66);
+            this.tbx_Phone.Location = new System.Drawing.Point(536, 99);
+            this.tbx_Phone.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_Phone.Name = "tbx_Phone";
-            this.tbx_Phone.Size = new System.Drawing.Size(154, 23);
+            this.tbx_Phone.Size = new System.Drawing.Size(229, 31);
             this.tbx_Phone.TabIndex = 4;
             // 
             // lab_Phone
@@ -769,18 +901,20 @@ namespace PTMedicalInsurance.Forms
             this.lab_Phone.AutoSize = true;
             this.lab_Phone.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_Phone.ForeColor = System.Drawing.Color.Red;
-            this.lab_Phone.Location = new System.Drawing.Point(286, 69);
+            this.lab_Phone.Location = new System.Drawing.Point(429, 104);
+            this.lab_Phone.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_Phone.Name = "lab_Phone";
-            this.lab_Phone.Size = new System.Drawing.Size(77, 14);
+            this.lab_Phone.Size = new System.Drawing.Size(115, 21);
             this.lab_Phone.TabIndex = 932;
             this.lab_Phone.Text = "联系电话:";
             // 
             // tbx_IdCard
             // 
             this.tbx_IdCard.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_IdCard.Location = new System.Drawing.Point(591, 37);
+            this.tbx_IdCard.Location = new System.Drawing.Point(886, 56);
+            this.tbx_IdCard.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_IdCard.Name = "tbx_IdCard";
-            this.tbx_IdCard.Size = new System.Drawing.Size(196, 23);
+            this.tbx_IdCard.Size = new System.Drawing.Size(292, 31);
             this.tbx_IdCard.TabIndex = 2;
             // 
             // lab_Work
@@ -788,9 +922,10 @@ namespace PTMedicalInsurance.Forms
             this.lab_Work.AutoSize = true;
             this.lab_Work.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_Work.ForeColor = System.Drawing.Color.Red;
-            this.lab_Work.Location = new System.Drawing.Point(519, 43);
+            this.lab_Work.Location = new System.Drawing.Point(778, 64);
+            this.lab_Work.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_Work.Name = "lab_Work";
-            this.lab_Work.Size = new System.Drawing.Size(77, 14);
+            this.lab_Work.Size = new System.Drawing.Size(115, 21);
             this.lab_Work.TabIndex = 731;
             this.lab_Work.Text = "证件号码:";
             // 
@@ -799,18 +934,20 @@ namespace PTMedicalInsurance.Forms
             this.lab_Name.AutoSize = true;
             this.lab_Name.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_Name.ForeColor = System.Drawing.Color.Red;
-            this.lab_Name.Location = new System.Drawing.Point(286, 43);
+            this.lab_Name.Location = new System.Drawing.Point(429, 64);
+            this.lab_Name.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_Name.Name = "lab_Name";
-            this.lab_Name.Size = new System.Drawing.Size(77, 14);
+            this.lab_Name.Size = new System.Drawing.Size(115, 21);
             this.lab_Name.TabIndex = 311;
             this.lab_Name.Text = "证件类型:";
             // 
             // tbx_Name
             // 
             this.tbx_Name.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_Name.Location = new System.Drawing.Point(82, 37);
+            this.tbx_Name.Location = new System.Drawing.Point(123, 56);
+            this.tbx_Name.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.tbx_Name.Name = "tbx_Name";
-            this.tbx_Name.Size = new System.Drawing.Size(191, 23);
+            this.tbx_Name.Size = new System.Drawing.Size(284, 31);
             this.tbx_Name.TabIndex = 0;
             // 
             // lab_IdCard
@@ -818,9 +955,10 @@ namespace PTMedicalInsurance.Forms
             this.lab_IdCard.AutoSize = true;
             this.lab_IdCard.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.lab_IdCard.ForeColor = System.Drawing.Color.Red;
-            this.lab_IdCard.Location = new System.Drawing.Point(10, 43);
+            this.lab_IdCard.Location = new System.Drawing.Point(15, 64);
+            this.lab_IdCard.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.lab_IdCard.Name = "lab_IdCard";
-            this.lab_IdCard.Size = new System.Drawing.Size(77, 14);
+            this.lab_IdCard.Size = new System.Drawing.Size(115, 21);
             this.lab_IdCard.TabIndex = 133;
             this.lab_IdCard.Text = "人员姓名:";
             // 
@@ -833,87 +971,23 @@ namespace PTMedicalInsurance.Forms
             this.btn_GetMsg.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
             this.btn_GetMsg.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
             this.btn_GetMsg.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.btn_GetMsg.Location = new System.Drawing.Point(803, 34);
+            this.btn_GetMsg.Location = new System.Drawing.Point(1204, 51);
+            this.btn_GetMsg.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.btn_GetMsg.Name = "btn_GetMsg";
-            this.btn_GetMsg.Size = new System.Drawing.Size(111, 27);
+            this.btn_GetMsg.Size = new System.Drawing.Size(166, 40);
             this.btn_GetMsg.TabIndex = 6;
             this.btn_GetMsg.TabStop = false;
             this.btn_GetMsg.Text = "获取用户信息";
             this.btn_GetMsg.UseVisualStyleBackColor = false;
-            // 
-            // tbx_Dise
-            // 
-            this.tbx_Dise.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_Dise.Location = new System.Drawing.Point(82, 153);
-            this.tbx_Dise.Name = "tbx_Dise";
-            this.tbx_Dise.Size = new System.Drawing.Size(190, 23);
-            this.tbx_Dise.TabIndex = 2098;
-            // 
-            // tbx_HospTel
-            // 
-            this.tbx_HospTel.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.tbx_HospTel.Location = new System.Drawing.Point(598, 108);
-            this.tbx_HospTel.Name = "tbx_HospTel";
-            this.tbx_HospTel.Size = new System.Drawing.Size(316, 23);
-            this.tbx_HospTel.TabIndex = 2104;
-            // 
-            // textBox4
-            // 
-            this.textBox4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.textBox4.Location = new System.Drawing.Point(400, 107);
-            this.textBox4.Name = "textBox4";
-            this.textBox4.Size = new System.Drawing.Size(111, 23);
-            this.textBox4.TabIndex = 2103;
-            this.textBox4.Text = "A10";
-            // 
-            // label1
-            // 
-            this.label1.AutoSize = true;
-            this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.label1.ForeColor = System.Drawing.Color.Red;
-            this.label1.Location = new System.Drawing.Point(10, 111);
-            this.label1.Name = "label1";
-            this.label1.Size = new System.Drawing.Size(70, 14);
-            this.label1.TabIndex = 2102;
-            this.label1.Text = "科室名称:";
-            // 
-            // textBox5
-            // 
-            this.textBox5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.textBox5.Location = new System.Drawing.Point(83, 108);
-            this.textBox5.Name = "textBox5";
-            this.textBox5.Size = new System.Drawing.Size(190, 23);
-            this.textBox5.TabIndex = 2101;
-            this.textBox5.Text = "眼科";
-            // 
-            // label4
-            // 
-            this.label4.AutoSize = true;
-            this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.label4.ForeColor = System.Drawing.Color.Red;
-            this.label4.Location = new System.Drawing.Point(522, 110);
-            this.label4.Name = "label4";
-            this.label4.Size = new System.Drawing.Size(70, 14);
-            this.label4.TabIndex = 2100;
-            this.label4.Text = "科室电话:";
-            // 
-            // label7
-            // 
-            this.label7.AutoSize = true;
-            this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.label7.ForeColor = System.Drawing.Color.Red;
-            this.label7.Location = new System.Drawing.Point(286, 111);
-            this.label7.Name = "label7";
-            this.label7.Size = new System.Drawing.Size(70, 14);
-            this.label7.TabIndex = 2099;
-            this.label7.Text = "科室编码:";
+            this.btn_GetMsg.Click += new System.EventHandler(this.btn_GetMsg_Click);
             // 
             // SlowSpecRecord
             // 
-            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
+            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
-            this.ClientSize = new System.Drawing.Size(938, 637);
+            this.ClientSize = new System.Drawing.Size(1407, 956);
             this.Controls.Add(this.panel2);
+            this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
             this.Name = "SlowSpecRecord";
             this.Text = "慢特病备案";
             this.Load += new System.EventHandler(this.SlowSpecRecord_Load);

+ 5 - 0
Forms/SlowSpecRecord.cs

@@ -146,5 +146,10 @@ namespace PTMedicalInsurance.Forms
         {
 
         }
+
+        private void btn_GetMsg_Click(object sender, EventArgs e)
+        {
+
+        }
     }
 }

+ 5 - 0
InsuBusiness.cs

@@ -667,6 +667,11 @@ namespace PTMedicalInsurance
                         TradeEnum trade = TradeEnum.DEFAULT.GetByCode(funNo);
                         new OtherQueryProcess(trade).Process(JObject.Parse(InParam));
                         break;
+                    case "DualChannelRecord":
+                        // 双通道备案
+                        DualChannelRecordForm recordForm = new DualChannelRecordForm();
+                        recordForm.ShowDialog();
+                        break;
                     default:
                         {
                             rtnResult = JsonHelper.setExceptionJson(-1, "AgentFun 交易", "传入的业务编码不对!").ToString();

+ 12 - 0
NanChangMI.csproj

@@ -205,6 +205,12 @@
     <Compile Include="Forms\OutpatientRegistration.designer.cs">
       <DependentUpon>OutpatientRegistration.cs</DependentUpon>
     </Compile>
+    <Compile Include="Forms\DualChannelRecordForm.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="Forms\DualChannelRecordForm.Designer.cs">
+      <DependentUpon>DualChannelRecordForm.cs</DependentUpon>
+    </Compile>
     <Compile Include="Forms\PrescriptionCirculation.cs">
       <SubType>Form</SubType>
     </Compile>
@@ -415,6 +421,9 @@
     <EmbeddedResource Include="Forms\PreAndInProcessAnalysisForm.resx">
       <DependentUpon>PreAndInProcessAnalysisForm.cs</DependentUpon>
     </EmbeddedResource>
+    <EmbeddedResource Include="Forms\DualChannelRecordForm.resx">
+      <DependentUpon>DualChannelRecordForm.cs</DependentUpon>
+    </EmbeddedResource>
     <EmbeddedResource Include="Forms\PrescriptionCirculation.resx">
       <DependentUpon>PrescriptionCirculation.cs</DependentUpon>
     </EmbeddedResource>
@@ -454,6 +463,9 @@
     <EmbeddedResource Include="Forms\SettlementForm.resx">
       <DependentUpon>SettlementForm.cs</DependentUpon>
     </EmbeddedResource>
+    <EmbeddedResource Include="Forms\SlowSpecRecord.resx">
+      <DependentUpon>SlowSpecRecord.cs</DependentUpon>
+    </EmbeddedResource>
     <EmbeddedResource Include="Properties\Resources.resx">
       <Generator>ResXFileCodeGenerator</Generator>
       <LastGenOutput>Resources.Designer.cs</LastGenOutput>

+ 10 - 0
Variables/TradeEnum.cs

@@ -475,6 +475,16 @@ namespace PTMedicalInsurance
         [Trade("5280", "历史处方查询")]
         HistoryPrescriptionQuery,
 
+        [Trade("2511", "双通道备案申请")]
+        DualChannelApply,
+
+        [Trade("5311", "双通道备案查询")]
+        DualChannelQuery,
+
+        [Trade("2512", "双通道备案撤销")]
+        DualChannelCancel,
+
+
         #endregion
 
         /// <summary>