Browse Source

feat: 增加门诊共济支付标志

zhengjie 2 years ago
parent
commit
349c40d3ce

+ 7 - 2
Business/HisMainBusiness.cs

@@ -1266,7 +1266,7 @@ namespace PTMedicalInsurance.Business
                     ExportObj.Add("dise_reim_mon", "");
                     ExportObj.Add("deve_flag", "");
                     ExportObj.Add("otp_reim_flag", "");
-                    ExportObj.Add("local_dise", "");              //单病种编码
+                    ExportObj.Add("local_dise", frmReg.local_dise_code);              //单病种编码
                     ExportObj.Add("ifen_flag", "");                 //传染性标志 
                     //ExportObj.Add("cla_trt_flag", frmReg.claTrtFlag);       //分级诊疗标志
                     ExportObj.Add("trum_flag", frmReg.traumaFlag);          //外伤标志
@@ -1276,6 +1276,7 @@ namespace PTMedicalInsurance.Business
                     ExportObj.Add("elec_bill_code", "");   //电子票据代码
                     ExportObj.Add("elec billno_code", ""); //电子票据号码
                     ExportObj.Add("otp_er_refl_flag", ""); //门诊转急诊
+                    ExportObj.Add("otp_mulaid_used_flag", frmReg.mulaidUsedFlag); //共济支付
 
                     joMdtrtinfo.Add("exp_content", ExportObj);          //字段扩展
 
@@ -1294,7 +1295,11 @@ namespace PTMedicalInsurance.Business
                     joSetlInpar.Add("acct_used_flag", frmReg.personAccountUsedFlag);//个人账户使用标志
                     joSetlInpar.Add("insutype", frmReg.insuType);//险种类型
                     joSetlInpar.Add("pub_hosp_rfom_flag", "");
-                    joSetlInpar.Add("exp_content", "");
+
+                    // 2206A、2207A需要的扩展参数
+                    JObject expSettle = new JObject();
+                    expSettle.Add("otp_mulaid_used_flag", frmReg.mulaidUsedFlag); //共济支付
+                    joSetlInpar.Add("exp_content", expSettle);
                     #endregion
 
                     joReg.Add("data", joRegInpar);

+ 0 - 21
Business/Outpatient/OPPreSettlementProcess.cs

@@ -32,27 +32,6 @@ namespace PTMedicalInsurance.Business
             joSettlement["mdtrt_cert_no"] = Utils.ConvertMdtrtcertNo(false);   //预结算不需要转换
             joSettlement["medfee_sumamt"] = JsonHelper.getDestValue(joSumFee, "data.Sumamt");
 
-            // 个性化(济南),费用不单独上传
-            //joSettlement["patient"] = joReg;
-            //joSettlement.Add("psn_name", Global.pat.name);
-            //joSettlement.Add("gend", ("1".Equals(Global.pat.gend)?"男":"女"));
-            //joSettlement.Add("cardno", Global.pat.card.NO);
-            //joSettlement["admNo"] = Global.pat.adm_Dr; // 病历号
-            // 异地就医标志
-            //string otherAreaFlag = "10";
-            //if (!Utils.isOtherCity() || Global.inf.interfaceDr == 28)
-            //{
-            //    otherAreaFlag = "01"; //本地
-            //}
-            //joSettlement.Add("other_area_flag", otherAreaFlag);
-            //var ret = hBus.getFeeDetail();
-            //if (ret.code < 0)
-            //{
-            //    return Error(ret.code,ret.data.ToString());
-            //}
-            //JArray jaFeeDetail = (JArray)ret.data;
-            //joSettlement["feeDetail"] = jaFeeDetail;
-
 
             //预结算  
             JObject jo2206Data = new JObject();

+ 15 - 5
Forms/OutpatientRegistration.cs

@@ -120,11 +120,17 @@ namespace PTMedicalInsurance.Forms
         //结算方式
         public string psn_setlway { get; set; }
         public string psn_setlway_name { get; set; }
+        //单病种本地编码
+        public string local_dise_code { get; set; }
 
+        //外伤标志
         public string traumaFlag = "0";
+        //第三方标志
         public string relTtpFlag = "0";
         public string hospType = "0";
+        //门诊急诊转诊标志
         public string otpErReflFlag = "0";
+        //人群类型
         public string mdtrtGrpType;
         public string claTrtFlag = "0";
         public string unifPayStdType = "";
@@ -134,9 +140,12 @@ namespace PTMedicalInsurance.Forms
         public string iptTypeName { get; set; }
 
         public DataTable DtDiagnose { get; set; }
-
+        // 个人账户
         public string personAccountUsedFlag = "0";
 
+        // 共济支付
+        public string mulaidUsedFlag = "0";
+
 
         private DataTable GetDBLKComboxTable(string sqlStr)
         {
@@ -218,12 +227,13 @@ namespace PTMedicalInsurance.Forms
                 personAccountUsedFlag = "1";
             }
 
-            //if (string.IsNullOrEmpty(insuType)) {
-            //    MessageBox.Show("请选择险种类型!");
-            //    return;
-            //}
+            if (chkboxMulaidUsedFlag.Checked)
+            {
+                mulaidUsedFlag = "1";
+            }
 
             Global.pat.insuType = insuType;
+            this.local_dise_code = txtLocateCode.Text.Trim();
 
             this.DialogResult = DialogResult.OK;
         }

+ 75 - 38
Forms/OutpatientRegistration.designer.cs

@@ -30,7 +30,7 @@ namespace PTMedicalInsurance.Forms
         /// </summary>
         private void InitializeComponent()
         {
-            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
             this.panel1 = new System.Windows.Forms.Panel();
             this.cbxAccountPay = new Sunny.UI.UICheckBox();
             this.Chk_RelTtpFlag = new Sunny.UI.UICheckBox();
@@ -59,7 +59,6 @@ namespace PTMedicalInsurance.Forms
             this.dise_dor_no = new System.Windows.Forms.DataGridViewTextBoxColumn();
             this.dise_dor_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
             this.diag_time = new System.Windows.Forms.DataGridViewTextBoxColumn();
-            this.panel2 = new System.Windows.Forms.Panel();
             this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
             this.txtBirthDay = new Sunny.UI.UITextBox();
             this.txtInsuType = new Sunny.UI.UITextBox();
@@ -87,6 +86,9 @@ namespace PTMedicalInsurance.Forms
             this.uiLabel21 = new Sunny.UI.UILabel();
             this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
             this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
+            this.chkboxMulaidUsedFlag = new Sunny.UI.UICheckBox();
+            this.txtLocateCode = new Sunny.UI.UITextBox();
+            this.label5 = new System.Windows.Forms.Label();
             this.panel1.SuspendLayout();
             this.panel3.SuspendLayout();
             ((System.ComponentModel.ISupportInitialize)(this.dgvDiagnose)).BeginInit();
@@ -98,9 +100,12 @@ namespace PTMedicalInsurance.Forms
             // panel1
             // 
             this.panel1.BackColor = System.Drawing.SystemColors.Window;
+            this.panel1.Controls.Add(this.txtLocateCode);
+            this.panel1.Controls.Add(this.label5);
             this.panel1.Controls.Add(this.cbxAccountPay);
             this.panel1.Controls.Add(this.Chk_RelTtpFlag);
             this.panel1.Controls.Add(this.chkEmergency);
+            this.panel1.Controls.Add(this.chkboxMulaidUsedFlag);
             this.panel1.Controls.Add(this.Chk_TraumaFlag);
             this.panel1.Controls.Add(this.dblkcbxSettelmentWay);
             this.panel1.Controls.Add(this.dblkcbxDisease);
@@ -113,7 +118,7 @@ namespace PTMedicalInsurance.Forms
             this.panel1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
             this.panel1.Location = new System.Drawing.Point(5, 28);
             this.panel1.Name = "panel1";
-            this.panel1.Size = new System.Drawing.Size(1188, 125);
+            this.panel1.Size = new System.Drawing.Size(1222, 152);
             this.panel1.TabIndex = 12;
             // 
             // cbxAccountPay
@@ -138,7 +143,7 @@ namespace PTMedicalInsurance.Forms
             this.Chk_RelTtpFlag.MinimumSize = new System.Drawing.Size(1, 1);
             this.Chk_RelTtpFlag.Name = "Chk_RelTtpFlag";
             this.Chk_RelTtpFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
-            this.Chk_RelTtpFlag.Size = new System.Drawing.Size(139, 29);
+            this.Chk_RelTtpFlag.Size = new System.Drawing.Size(169, 29);
             this.Chk_RelTtpFlag.TabIndex = 46;
             this.Chk_RelTtpFlag.Text = "涉及第三方";
             this.Chk_RelTtpFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
@@ -180,7 +185,7 @@ namespace PTMedicalInsurance.Forms
             this.dblkcbxSettelmentWay.sDisplayField = "";
             this.dblkcbxSettelmentWay.sDisplayMember = "";
             this.dblkcbxSettelmentWay.SeparatorChar = "|";
-            this.dblkcbxSettelmentWay.Size = new System.Drawing.Size(257, 25);
+            this.dblkcbxSettelmentWay.Size = new System.Drawing.Size(257, 29);
             this.dblkcbxSettelmentWay.sKeyWords = "";
             this.dblkcbxSettelmentWay.sValueMember = "";
             this.dblkcbxSettelmentWay.TabIndex = 22;
@@ -198,7 +203,7 @@ namespace PTMedicalInsurance.Forms
             this.dblkcbxDisease.sDisplayField = "";
             this.dblkcbxDisease.sDisplayMember = "";
             this.dblkcbxDisease.SeparatorChar = "|";
-            this.dblkcbxDisease.Size = new System.Drawing.Size(257, 25);
+            this.dblkcbxDisease.Size = new System.Drawing.Size(257, 29);
             this.dblkcbxDisease.sKeyWords = "";
             this.dblkcbxDisease.sValueMember = "";
             this.dblkcbxDisease.TabIndex = 20;
@@ -216,7 +221,7 @@ namespace PTMedicalInsurance.Forms
             this.dblkcbxMedicalType.sDisplayField = "";
             this.dblkcbxMedicalType.sDisplayMember = "";
             this.dblkcbxMedicalType.SeparatorChar = "|";
-            this.dblkcbxMedicalType.Size = new System.Drawing.Size(257, 25);
+            this.dblkcbxMedicalType.Size = new System.Drawing.Size(257, 29);
             this.dblkcbxMedicalType.sKeyWords = "";
             this.dblkcbxMedicalType.sValueMember = "";
             this.dblkcbxMedicalType.TabIndex = 19;
@@ -234,7 +239,7 @@ namespace PTMedicalInsurance.Forms
             this.dblkcbxInsuranceType.sDisplayField = "";
             this.dblkcbxInsuranceType.sDisplayMember = "";
             this.dblkcbxInsuranceType.SeparatorChar = "|";
-            this.dblkcbxInsuranceType.Size = new System.Drawing.Size(257, 25);
+            this.dblkcbxInsuranceType.Size = new System.Drawing.Size(257, 29);
             this.dblkcbxInsuranceType.sKeyWords = "";
             this.dblkcbxInsuranceType.sValueMember = "";
             this.dblkcbxInsuranceType.TabIndex = 18;
@@ -248,7 +253,7 @@ namespace PTMedicalInsurance.Forms
             this.label4.Location = new System.Drawing.Point(479, 29);
             this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label4.Name = "label4";
-            this.label4.Size = new System.Drawing.Size(80, 18);
+            this.label4.Size = new System.Drawing.Size(94, 21);
             this.label4.TabIndex = 15;
             this.label4.Text = "医疗类别";
             // 
@@ -259,7 +264,7 @@ namespace PTMedicalInsurance.Forms
             this.label3.Location = new System.Drawing.Point(479, 78);
             this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label3.Name = "label3";
-            this.label3.Size = new System.Drawing.Size(80, 18);
+            this.label3.Size = new System.Drawing.Size(94, 21);
             this.label3.TabIndex = 14;
             this.label3.Text = "结算方式";
             // 
@@ -270,7 +275,7 @@ namespace PTMedicalInsurance.Forms
             this.label2.Location = new System.Drawing.Point(40, 78);
             this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label2.Name = "label2";
-            this.label2.Size = new System.Drawing.Size(80, 18);
+            this.label2.Size = new System.Drawing.Size(94, 21);
             this.label2.TabIndex = 13;
             this.label2.Text = "病种名称\r\n";
             // 
@@ -281,7 +286,7 @@ namespace PTMedicalInsurance.Forms
             this.label1.Location = new System.Drawing.Point(40, 29);
             this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
             this.label1.Name = "label1";
-            this.label1.Size = new System.Drawing.Size(80, 18);
+            this.label1.Size = new System.Drawing.Size(94, 21);
             this.label1.TabIndex = 12;
             this.label1.Text = "险种类型";
             // 
@@ -292,9 +297,9 @@ namespace PTMedicalInsurance.Forms
             this.panel3.Controls.Add(this.button2);
             this.panel3.Controls.Add(this.button1);
             this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
-            this.panel3.Location = new System.Drawing.Point(0, 530);
+            this.panel3.Location = new System.Drawing.Point(0, 573);
             this.panel3.Name = "panel3";
-            this.panel3.Size = new System.Drawing.Size(1193, 64);
+            this.panel3.Size = new System.Drawing.Size(1230, 64);
             this.panel3.TabIndex = 14;
             // 
             // uiButton1
@@ -316,7 +321,7 @@ namespace PTMedicalInsurance.Forms
             // 
             this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
             this.button2.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.button2.Location = new System.Drawing.Point(1081, 16);
+            this.button2.Location = new System.Drawing.Point(1118, 16);
             this.button2.Name = "button2";
             this.button2.Size = new System.Drawing.Size(101, 39);
             this.button2.TabIndex = 1;
@@ -328,7 +333,7 @@ namespace PTMedicalInsurance.Forms
             // 
             this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
             this.button1.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.button1.Location = new System.Drawing.Point(960, 16);
+            this.button1.Location = new System.Drawing.Point(997, 16);
             this.button1.Name = "button1";
             this.button1.Size = new System.Drawing.Size(101, 39);
             this.button1.TabIndex = 0;
@@ -340,13 +345,13 @@ namespace PTMedicalInsurance.Forms
             // 
             this.dgvDiagnose.AllowUserToAddRows = false;
             this.dgvDiagnose.BorderStyle = System.Windows.Forms.BorderStyle.None;
-            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.ButtonShadow;
-            dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
-            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
-            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.WindowText;
-            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
-            this.dgvDiagnose.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
+            dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.ButtonShadow;
+            dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
+            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.WindowText;
+            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.dgvDiagnose.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
             this.dgvDiagnose.ColumnHeadersHeight = 40;
             this.dgvDiagnose.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
             this.dgvDiagnose.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
@@ -458,13 +463,6 @@ namespace PTMedicalInsurance.Forms
             this.diag_time.Name = "diag_time";
             this.diag_time.Width = 180;
             // 
-            // panel2
-            // 
-            this.panel2.Location = new System.Drawing.Point(994, 435);
-            this.panel2.Name = "panel2";
-            this.panel2.Size = new System.Drawing.Size(1259, 257);
-            this.panel2.TabIndex = 13;
-            // 
             // uiGroupBox1
             // 
             this.uiGroupBox1.Controls.Add(this.txtBirthDay);
@@ -497,7 +495,7 @@ namespace PTMedicalInsurance.Forms
             this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
             this.uiGroupBox1.Name = "uiGroupBox1";
             this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
-            this.uiGroupBox1.Size = new System.Drawing.Size(1193, 134);
+            this.uiGroupBox1.Size = new System.Drawing.Size(1230, 134);
             this.uiGroupBox1.TabIndex = 15;
             this.uiGroupBox1.Text = "基本信息";
             this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -824,7 +822,7 @@ namespace PTMedicalInsurance.Forms
             this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
             this.uiGroupBox2.Name = "uiGroupBox2";
             this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
-            this.uiGroupBox2.Size = new System.Drawing.Size(1193, 164);
+            this.uiGroupBox2.Size = new System.Drawing.Size(1230, 193);
             this.uiGroupBox2.TabIndex = 15;
             this.uiGroupBox2.Text = "险种信息";
             this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
@@ -834,27 +832,64 @@ namespace PTMedicalInsurance.Forms
             // 
             this.uiGroupBox3.Controls.Add(this.dgvDiagnose);
             this.uiGroupBox3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
-            this.uiGroupBox3.Location = new System.Drawing.Point(0, 308);
+            this.uiGroupBox3.Location = new System.Drawing.Point(0, 350);
             this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
             this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
             this.uiGroupBox3.Name = "uiGroupBox3";
             this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
-            this.uiGroupBox3.Size = new System.Drawing.Size(1193, 221);
+            this.uiGroupBox3.Size = new System.Drawing.Size(1227, 221);
             this.uiGroupBox3.TabIndex = 15;
             this.uiGroupBox3.Text = "诊断信息";
             this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
             this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
             // 
+            // chkboxMulaidUsedFlag
+            // 
+            this.chkboxMulaidUsedFlag.Cursor = System.Windows.Forms.Cursors.Hand;
+            this.chkboxMulaidUsedFlag.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.chkboxMulaidUsedFlag.Location = new System.Drawing.Point(917, 109);
+            this.chkboxMulaidUsedFlag.MinimumSize = new System.Drawing.Size(1, 1);
+            this.chkboxMulaidUsedFlag.Name = "chkboxMulaidUsedFlag";
+            this.chkboxMulaidUsedFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
+            this.chkboxMulaidUsedFlag.Size = new System.Drawing.Size(221, 29);
+            this.chkboxMulaidUsedFlag.TabIndex = 45;
+            this.chkboxMulaidUsedFlag.Text = "使用共济支付";
+            this.chkboxMulaidUsedFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // txtLocateCode
+            // 
+            this.txtLocateCode.Cursor = System.Windows.Forms.Cursors.IBeam;
+            this.txtLocateCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.txtLocateCode.Location = new System.Drawing.Point(136, 118);
+            this.txtLocateCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+            this.txtLocateCode.MinimumSize = new System.Drawing.Size(1, 16);
+            this.txtLocateCode.Name = "txtLocateCode";
+            this.txtLocateCode.ShowText = false;
+            this.txtLocateCode.Size = new System.Drawing.Size(257, 29);
+            this.txtLocateCode.TabIndex = 70;
+            this.txtLocateCode.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
+            this.txtLocateCode.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
+            // 
+            // label5
+            // 
+            this.label5.AutoSize = true;
+            this.label5.ForeColor = System.Drawing.SystemColors.InfoText;
+            this.label5.Location = new System.Drawing.Point(40, 125);
+            this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+            this.label5.Name = "label5";
+            this.label5.Size = new System.Drawing.Size(94, 21);
+            this.label5.TabIndex = 69;
+            this.label5.Text = "本地编码";
+            // 
             // OutpatientRegistration
             // 
-            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
+            this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 22F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
-            this.ClientSize = new System.Drawing.Size(1193, 594);
+            this.ClientSize = new System.Drawing.Size(1230, 637);
             this.Controls.Add(this.uiGroupBox2);
             this.Controls.Add(this.uiGroupBox3);
             this.Controls.Add(this.uiGroupBox1);
             this.Controls.Add(this.panel3);
-            this.Controls.Add(this.panel2);
             this.Font = new System.Drawing.Font("新宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
             this.Margin = new System.Windows.Forms.Padding(4);
             this.Name = "OutpatientRegistration";
@@ -913,7 +948,6 @@ namespace PTMedicalInsurance.Forms
         private System.Windows.Forms.DataGridViewTextBoxColumn dise_dor_no;
         private System.Windows.Forms.DataGridViewTextBoxColumn dise_dor_name;
         private System.Windows.Forms.DataGridViewTextBoxColumn diag_time;
-        private System.Windows.Forms.Panel panel2;
         private Sunny.UI.UIGroupBox uiGroupBox1;
         private Sunny.UI.UITextBox txtBirthDay;
         private Sunny.UI.UITextBox txtAge;
@@ -944,5 +978,8 @@ namespace PTMedicalInsurance.Forms
         public Sunny.UI.UICheckBox chkEmergency;
         public PTControl.DBLookupCombox dblkcbxSettelmentWay;
         private System.Windows.Forms.Label label3;
+        public Sunny.UI.UICheckBox chkboxMulaidUsedFlag;
+        private Sunny.UI.UITextBox txtLocateCode;
+        private System.Windows.Forms.Label label5;
     }
 }