From 2ce824ad5dcbdf9fde11e9caab43f3c2c113859b Mon Sep 17 00:00:00 2001 From: leomo Date: Thu, 27 Oct 2022 22:13:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BA=BB=E9=86=89=E6=9C=AF=E5=89=8D=E8=AE=BF?= =?UTF-8?q?=E8=A7=86=E5=8D=95=E5=8A=A8=E6=80=81=E5=8A=A0=E8=BD=BDlis?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AIMS/AIMS.csproj | 20 +- AIMS/AIMS.xml | 2 +- AIMS/DocManager/PatientLisResult.cs | 67 + AIMS/DocManager/PatientRecord.cs | 189 +++ AIMS/DocManager/frmSelectPatient.Designer.cs | 416 ------ AIMS/DocManager/frmSelectPatient.cs | 380 ----- AIMS/DocManager/frmSelectPatient.resx | 165 --- .../AnasRecordBill/frmAnasRecordBill2.cs | 7 +- .../oldSystemCode/frmLISResult.cs | 41 + .../oldSystemCode/frmLISResult.designer.cs | 610 ++++++++ .../oldSystemCode/frmLISResult.resx | 1283 +++++++++++++++++ AIMS/OremrUserControl/ucDocument.cs | 19 +- BeginScreen/PublicMethod.cs | 6 +- BeginScreen/SchedulingPlan.aspx.cs | 5 +- BeginScreen/Web.config | 2 +- .../DocumentEntity/DocumentDAL.cs | 52 +- DocumentManagement/UI/frmKB.Designer.cs | 195 +-- DocumentManagement/UI/frmKB.cs | 8 +- DocumentManagement/UI/frmKB.resx | 3 - DocumentManagement/UI/frmTemplate.resx | 24 +- DocumentManagement/UI/frmViewSelect.cs | 8 +- DrawGraph/AreaManage/OperationRecord.cs | 2 +- DrawGraph/GUtil/EntityObjectChangeNotifier.cs | 6 +- DrawGraphManagement/Main.cs | 2 +- DrawGraphManagement/Program.cs | 2 +- 25 files changed, 2405 insertions(+), 1109 deletions(-) create mode 100644 AIMS/DocManager/PatientLisResult.cs create mode 100644 AIMS/DocManager/PatientRecord.cs delete mode 100644 AIMS/DocManager/frmSelectPatient.Designer.cs delete mode 100644 AIMS/DocManager/frmSelectPatient.cs delete mode 100644 AIMS/DocManager/frmSelectPatient.resx create mode 100644 AIMS/OperationDoing/oldSystemCode/frmLISResult.cs create mode 100644 AIMS/OperationDoing/oldSystemCode/frmLISResult.designer.cs create mode 100644 AIMS/OperationDoing/oldSystemCode/frmLISResult.resx diff --git a/AIMS/AIMS.csproj b/AIMS/AIMS.csproj index aab4017..12bca6c 100644 --- a/AIMS/AIMS.csproj +++ b/AIMS/AIMS.csproj @@ -159,18 +159,14 @@ frmDocument3.cs - - Form - - - frmSelectPatient.cs - Form frmTemplateD.cs + + Form @@ -333,6 +329,12 @@ frmKnowledgeBase.cs + + Form + + + frmLISResult.cs + Form @@ -898,9 +900,6 @@ frmDocument3.cs - - frmSelectPatient.cs - frmTemplateD.cs Designer @@ -989,6 +988,9 @@ frmKnowledgeBase.cs + + frmLISResult.cs + frmNoticeLargeScreen.cs diff --git a/AIMS/AIMS.xml b/AIMS/AIMS.xml index ddbe2b5..a1d6e41 100644 --- a/AIMS/AIMS.xml +++ b/AIMS/AIMS.xml @@ -1,6 +1,6 @@  - Data Source=.;Initial Catalog=AIMSDB_SXTLYY_Temp;User ID=sa;Password=Test2020; + Data Source=.;Initial Catalog=AIMSDB_QHDSGRYY;User ID=sa;Password=Test2020; Data Source=.;Initial Catalog=AIMSDB_DATA;User ID=sa;Password=Test2020; Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.7)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl2))));Persist Security Info=True;User ID=smview;Password=i39; diff --git a/AIMS/DocManager/PatientLisResult.cs b/AIMS/DocManager/PatientLisResult.cs new file mode 100644 index 0000000..498ce3d --- /dev/null +++ b/AIMS/DocManager/PatientLisResult.cs @@ -0,0 +1,67 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Text; + +namespace AIMS.DocManager +{ + /// + /// V_OperationRecordALL + /// + public class PatientLisResult + { + public string PATIENT_ID { get; set; } + public string Item1 { get; set; } + public string Item2 { get; set; } + public string Item3 { get; set; } + public string Item4 { get; set; } + public string Item5 { get; set; } + public string Item6 { get; set; } + public string Item7 { get; set; } + public string Item8 { get; set; } + public string Item9 { get; set; } + public string Item10 { get; set; } + public string Item11 { get; set; } + public string Item12 { get; set; } + public string Item13 { get; set; } + public string Item14 { get; set; } + public string Item15 { get; set; } + public string Item16 { get; set; } + public string Item17 { get; set; } + public string Item18 { get; set; } + public string Item19 { get; set; } + public string Item20 { get; set; } + + public static PatientLisResult GetLisResult(string patientNo) + { + PatientLisResult patient = new PatientLisResult (); + DataTable dt = DocumentManagement.DocumentDAL.GetLisResult (patientNo ); + if (dt.Rows.Count > 0) + { + patient.PATIENT_ID = dt.Rows[0]["PATIENT_ID"].ToString(); + patient.Item1 = dt.Rows[0]["Item1"].ToString(); + patient.Item2 = dt.Rows[0]["Item2"].ToString(); + patient.Item3 = dt.Rows[0]["Item3"].ToString(); + patient.Item4 = dt.Rows[0]["Item4"].ToString(); + patient.Item5 = dt.Rows[0]["Item5"].ToString(); + patient.Item6 = dt.Rows[0]["Item6"].ToString(); + patient.Item7 = dt.Rows[0]["Item7"].ToString(); + patient.Item8 = dt.Rows[0]["Item8"].ToString(); + patient.Item9 = dt.Rows[0]["Item9"].ToString(); + patient.Item10 = dt.Rows[0]["Item10"].ToString(); + patient.Item11 = dt.Rows[0]["Item11"].ToString(); + patient.Item12 = dt.Rows[0]["Item12"].ToString(); + patient.Item13 = dt.Rows[0]["Item13"].ToString(); + patient.Item14 = dt.Rows[0]["Item14"].ToString(); + patient.Item15 = dt.Rows[0]["Item15"].ToString(); + patient.Item16 = dt.Rows[0]["Item16"].ToString(); + patient.Item17 = dt.Rows[0]["Item17"].ToString(); + patient.Item18 = dt.Rows[0]["Item18"].ToString(); + patient.Item19 = dt.Rows[0]["Item19"].ToString(); + patient.Item20 = dt.Rows[0]["Item20"].ToString(); + } + return patient; + } + } +} diff --git a/AIMS/DocManager/PatientRecord.cs b/AIMS/DocManager/PatientRecord.cs new file mode 100644 index 0000000..d5edba7 --- /dev/null +++ b/AIMS/DocManager/PatientRecord.cs @@ -0,0 +1,189 @@ +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Text; + +namespace AIMS.DocManager +{ + /// + /// V_OperationRecordALL + /// + public class PatientRecord + { + public int PatientId { get; set; } + public int ApplyId { get; set; } + public String MdrecNo { get; set; } + public String ArchivesNo { get; set; } + public String PatientName { get; set; } + public String PatientName1 { get; set; } + public String ApplyDepName { get; set; } + public String PatientKind { get; set; } + public String Sex { get; set; } + public String BirthDay { get; set; } + public String Age { get; set; } + public String Height { get; set; } + public String Weight { get; set; } + public String BloodType { get; set; } + public String RHBloodType { get; set; } + public String SickBed { get; set; } + public String OperationType { get; set; } + public String OrderOperationTime { get; set; } + public String OperationTimeLeight { get; set; } + public String IsReturnOperation { get; set; } + public String IsPlanReturnOperation { get; set; } + public String ApplyDiagnoseInfoName { get; set; } + public String DiagnoseRemark { get; set; } + public String ApplyOperationInfoName { get; set; } + public String OperationRemark { get; set; } + public String ApplyOperationLevelName { get; set; } + public String ApplyOperationCutTypeName { get; set; } + public String ApplyOperationPositionName { get; set; } + public String ApplyAnaesthesiaMethodName { get; set; } + public String Contagion { get; set; } + public String ApplyOperationDoctor { get; set; } + public String Assistant1 { get; set; } + public String Assistant2 { get; set; } + public String Assistant3 { get; set; } + public String Intern { get; set; } + public String Other { get; set; } + public String ApplyTime { get; set; } + public String ApplyOperatorName { get; set; } + public String VerifyTime { get; set; } + public String VerifyOperatorName { get; set; } + public String PlanOperationTime { get; set; } + public String OperationRoomId { get; set; } + public String OperationRoom { get; set; } + public String PlanOrder { get; set; } + public String ApplyAnesthesiaDoctor { get; set; } + public String InstrumentNurse { get; set; } + public String TourNurse { get; set; } + public String AnesthesiaDoctorSucceed { get; set; } + public String InstrumentNurseSucceed { get; set; } + public String TourNurseSucceed { get; set; } + public String ASA { get; set; } + public String HeartFunctionLevel { get; set; } + public String IsFasting { get; set; } + public String State { get; set; } + public String InRoomTime { get; set; } + public String OutRoomTime { get; set; } + public String OperationBeginTime { get; set; } + public String OperationEndTime { get; set; } + public String OperationLevelName { get; set; } + public String OpeAfterMode { get; set; } + public String SpecialSituation { get; set; } + public String PunctureBodyPosition { get; set; } + public String PuncturePosition { get; set; } + public String CatheterDepth { get; set; } + public String NeedleSize { get; set; } + public String NeedleDirection { get; set; } + public String AnaesthesiaPlane { get; set; } + public String AnaesthesiaEffect { get; set; } + public String DiagnoseInfoName { get; set; } + public String OperationInfoName { get; set; } + public String AnaesthesiaMethodName { get; set; } + public String OperationCutTypeName { get; set; } + public String OperationBodyPositionName { get; set; } + public String OperationPositionName { get; set; } + public String OperationDoctor { get; set; } + public String Assistant { get; set; } + public String AnesthesiaDoctor { get; set; } + public String Nurse { get; set; } + public String Illdistrict { get; set; } + public String Remarks { get; set; } + public String SysDate { get; set; } + public String SysTime { get; set; } + public String OpeTime { get; set; } + public String MedicalRecord { get; set; } + public PatientLisResult LisResult { get; set; } + + public static PatientRecord GetPatientRecord(int patientId) + { + PatientRecord patient = new PatientRecord(); + #region 患者信息赋值 + DataTable dt = DocumentManagement.DocumentDAL.GetPatient(patientId); + if (dt.Rows.Count > 0) + { + patient.PatientId = int.Parse(dt.Rows[0]["PatientId"].ToString()); + //patient.PatientId = int.Parse(dt.Rows[0]["PatientId"].ToString()); + patient.ApplyId = int.Parse(dt.Rows[0]["ApplyId"].ToString()); + patient.MdrecNo = dt.Rows[0]["MdrecNo"].ToString(); + patient.ArchivesNo = dt.Rows[0]["ArchivesNo"].ToString(); + patient.PatientName = dt.Rows[0]["PatientName"].ToString(); + patient.PatientName1 = dt.Rows[0]["PatientName"].ToString(); + patient.PatientKind = dt.Rows[0]["PatientKind"].ToString(); + patient.Sex = dt.Rows[0]["Sex"].ToString(); + patient.ApplyDepName = dt.Rows[0]["ApplyDepName"].ToString(); + patient.Age = dt.Rows[0]["Age"].ToString(); + patient.BirthDay = dt.Rows[0]["BirthDay"].ToString(); + patient.Height = dt.Rows[0]["Height"].ToString(); + patient.Weight = dt.Rows[0]["Weight"].ToString(); + patient.BloodType = dt.Rows[0]["BloodType"].ToString(); + patient.SickBed = dt.Rows[0]["SickBed"].ToString(); + patient.OperationType = dt.Rows[0]["OperationType"].ToString(); + patient.OrderOperationTime = dt.Rows[0]["OrderOperationTime"].ToString(); + patient.OperationTimeLeight = dt.Rows[0]["OperationTimeLeight"].ToString(); + patient.IsReturnOperation = dt.Rows[0]["IsReturnOperation"].ToString(); + patient.IsPlanReturnOperation = dt.Rows[0]["IsPlanReturnOperation"].ToString(); + patient.ApplyDiagnoseInfoName = dt.Rows[0]["ApplyDiagnoseInfoName"].ToString(); + patient.DiagnoseRemark = dt.Rows[0]["DiagnoseRemark"].ToString(); + patient.ApplyOperationInfoName = dt.Rows[0]["ApplyOperationInfoName"].ToString(); + patient.OperationRemark = dt.Rows[0]["OperationRemark"].ToString(); + patient.ApplyOperationLevelName = dt.Rows[0]["ApplyOperationLevelName"].ToString(); + patient.ApplyOperationCutTypeName = dt.Rows[0]["ApplyOperationCutTypeName"].ToString(); + patient.ApplyOperationPositionName = dt.Rows[0]["ApplyOperationPositionName"].ToString(); + patient.ApplyAnaesthesiaMethodName = dt.Rows[0]["ApplyAnaesthesiaMethodName"].ToString(); + patient.Contagion = dt.Rows[0]["Contagion"].ToString(); + patient.ApplyOperationDoctor = dt.Rows[0]["ApplyOperationDoctor"].ToString(); + patient.Assistant1 = dt.Rows[0]["Assistant1"].ToString(); + patient.Assistant2 = dt.Rows[0]["Assistant2"].ToString(); + patient.Assistant3 = dt.Rows[0]["Assistant3"].ToString(); + patient.Intern = dt.Rows[0]["Intern"].ToString(); + patient.Other = dt.Rows[0]["Other"].ToString(); + patient.ApplyTime = dt.Rows[0]["ApplyTime"].ToString(); + patient.ApplyOperatorName = dt.Rows[0]["ApplyOperatorName"].ToString(); + patient.VerifyOperatorName = dt.Rows[0]["VerifyOperatorName"].ToString(); + patient.PlanOperationTime = dt.Rows[0]["PlanOperationTime"].ToString(); + patient.OperationRoomId = dt.Rows[0]["OperationRoomId"].ToString(); + patient.OperationRoom = dt.Rows[0]["OperationRoom"].ToString(); + patient.PlanOrder = dt.Rows[0]["PlanOrder"].ToString(); + patient.ApplyAnesthesiaDoctor = dt.Rows[0]["ApplyAnesthesiaDoctor"].ToString(); + patient.InstrumentNurse = dt.Rows[0]["InstrumentNurse"].ToString(); + patient.TourNurse = dt.Rows[0]["TourNurse"].ToString(); + patient.AnesthesiaDoctorSucceed = dt.Rows[0]["AnesthesiaDoctorSucceed"].ToString(); + patient.InstrumentNurseSucceed = dt.Rows[0]["InstrumentNurseSucceed"].ToString(); + patient.TourNurseSucceed = dt.Rows[0]["TourNurseSucceed"].ToString(); + patient.ASA = dt.Rows[0]["ASA"].ToString(); + patient.HeartFunctionLevel = dt.Rows[0]["HeartFunctionLevel"].ToString(); + patient.IsFasting = dt.Rows[0]["IsFasting"].ToString(); + patient.State = dt.Rows[0]["State"].ToString(); + patient.InRoomTime = dt.Rows[0]["InRoomTime"].ToString(); + patient.OutRoomTime = dt.Rows[0]["OutRoomTime"].ToString(); + patient.OperationBeginTime = dt.Rows[0]["OperationBeginTime"].ToString(); + patient.OperationEndTime = dt.Rows[0]["OperationEndTime"].ToString(); + patient.OperationLevelName = dt.Rows[0]["OperationLevelName"].ToString(); + patient.SpecialSituation = dt.Rows[0]["SpecialSituation"].ToString(); + patient.AnaesthesiaPlane = dt.Rows[0]["AnaesthesiaPlane"].ToString(); + patient.DiagnoseInfoName = dt.Rows[0]["DiagnoseInfoName"].ToString(); + patient.OperationInfoName = dt.Rows[0]["OperationInfoName"].ToString(); + patient.AnaesthesiaMethodName = dt.Rows[0]["AnaesthesiaMethodName"].ToString(); + patient.OperationCutTypeName = dt.Rows[0]["OperationCutTypeName"].ToString(); + patient.OperationBodyPositionName = dt.Rows[0]["OperationBodyPositionName"].ToString(); + patient.OperationPositionName = dt.Rows[0]["OperationPositionName"].ToString(); + patient.OperationDoctor = dt.Rows[0]["OperationDoctor"].ToString(); + patient.Assistant = dt.Rows[0]["Assistant"].ToString(); + patient.AnesthesiaDoctor = dt.Rows[0]["AnesthesiaDoctor"].ToString(); + patient.Nurse = dt.Rows[0]["Nurse"].ToString(); + patient.Illdistrict = dt.Rows[0]["Illdistrict"].ToString(); + patient.Remarks = dt.Rows[0]["Remarks"].ToString(); + patient.SysDate = dt.Rows[0]["SysDate"].ToString(); + patient.SysTime = dt.Rows[0]["SysTime"].ToString(); + patient.OpeTime = dt.Rows[0]["OpeTime"].ToString(); + patient.MedicalRecord = dt.Rows[0]["MedicalRecord"].ToString(); + } + patient.LisResult = PatientLisResult.GetLisResult(patient.MdrecNo); + #endregion + return patient; + } + } +} diff --git a/AIMS/DocManager/frmSelectPatient.Designer.cs b/AIMS/DocManager/frmSelectPatient.Designer.cs deleted file mode 100644 index 47dff3f..0000000 --- a/AIMS/DocManager/frmSelectPatient.Designer.cs +++ /dev/null @@ -1,416 +0,0 @@ -namespace AIMS.DocManager -{ - partial class frmSelectPatient - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); - this.panel1 = new System.Windows.Forms.Panel(); - this.groupBox3 = new System.Windows.Forms.GroupBox(); - this.dtpBegInDate = new System.Windows.Forms.DateTimePicker(); - this.dtpEndDate = new System.Windows.Forms.DateTimePicker(); - this.label3 = new System.Windows.Forms.Label(); - this.chkIsApply = new System.Windows.Forms.CheckBox(); - this.groupBox2 = new System.Windows.Forms.GroupBox(); - this.rdDoingOrAfter = new System.Windows.Forms.RadioButton(); - this.rdFront = new System.Windows.Forms.RadioButton(); - this.groupBox1 = new System.Windows.Forms.GroupBox(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.btnFind = new System.Windows.Forms.Button(); - this.dgv = new System.Windows.Forms.DataGridView(); - this.PatientId = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ApplyId = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ArchivesNoColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.MdrecNoColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.SickBedColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.PatientNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.SexColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.OperationRoomColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ApplyDepNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ApplyTimeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.OperationBeginTimeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ApplyDiagnoseInfoNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ApplyOperationInfoNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.OperationInfoNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.StateColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.panel1.SuspendLayout(); - this.groupBox3.SuspendLayout(); - this.groupBox2.SuspendLayout(); - this.groupBox1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit(); - this.SuspendLayout(); - // - // panel1 - // - this.panel1.BackColor = System.Drawing.Color.AliceBlue; - this.panel1.Controls.Add(this.groupBox3); - this.panel1.Controls.Add(this.groupBox2); - this.panel1.Controls.Add(this.groupBox1); - this.panel1.Controls.Add(this.btnFind); - this.panel1.Dock = System.Windows.Forms.DockStyle.Top; - this.panel1.Font = new System.Drawing.Font("宋体", 9F); - this.panel1.Location = new System.Drawing.Point(0, 0); - this.panel1.Margin = new System.Windows.Forms.Padding(4); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(1163, 62); - this.panel1.TabIndex = 2; - // - // groupBox3 - // - this.groupBox3.Controls.Add(this.dtpBegInDate); - this.groupBox3.Controls.Add(this.dtpEndDate); - this.groupBox3.Controls.Add(this.label3); - this.groupBox3.Controls.Add(this.chkIsApply); - this.groupBox3.Location = new System.Drawing.Point(469, 10); - this.groupBox3.Name = "groupBox3"; - this.groupBox3.Size = new System.Drawing.Size(420, 46); - this.groupBox3.TabIndex = 42; - this.groupBox3.TabStop = false; - this.groupBox3.Text = "手术时间"; - // - // dtpBegInDate - // - this.dtpBegInDate.CustomFormat = "yyyy-MM-dd"; - this.dtpBegInDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom; - this.dtpBegInDate.Location = new System.Drawing.Point(7, 18); - this.dtpBegInDate.Margin = new System.Windows.Forms.Padding(4); - this.dtpBegInDate.Name = "dtpBegInDate"; - this.dtpBegInDate.Size = new System.Drawing.Size(128, 21); - this.dtpBegInDate.TabIndex = 32; - // - // dtpEndDate - // - this.dtpEndDate.CustomFormat = "yyyy-MM-dd"; - this.dtpEndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom; - this.dtpEndDate.Location = new System.Drawing.Point(177, 18); - this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4); - this.dtpEndDate.Name = "dtpEndDate"; - this.dtpEndDate.Size = new System.Drawing.Size(128, 21); - this.dtpEndDate.TabIndex = 34; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(143, 22); - this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(17, 12); - this.label3.TabIndex = 33; - this.label3.Text = "至"; - // - // chkIsApply - // - this.chkIsApply.AutoSize = true; - this.chkIsApply.Location = new System.Drawing.Point(312, 20); - this.chkIsApply.Name = "chkIsApply"; - this.chkIsApply.Size = new System.Drawing.Size(72, 16); - this.chkIsApply.TabIndex = 39; - this.chkIsApply.Text = "申请时间"; - this.chkIsApply.UseVisualStyleBackColor = true; - this.chkIsApply.CheckedChanged += new System.EventHandler(this.chkIsApply_CheckedChanged); - // - // groupBox2 - // - this.groupBox2.Controls.Add(this.rdDoingOrAfter); - this.groupBox2.Controls.Add(this.rdFront); - this.groupBox2.Location = new System.Drawing.Point(192, 12); - this.groupBox2.Name = "groupBox2"; - this.groupBox2.Size = new System.Drawing.Size(249, 44); - this.groupBox2.TabIndex = 41; - this.groupBox2.TabStop = false; - this.groupBox2.Text = "状态"; - // - // rdDoingOrAfter - // - this.rdDoingOrAfter.AutoSize = true; - this.rdDoingOrAfter.Location = new System.Drawing.Point(102, 20); - this.rdDoingOrAfter.Name = "rdDoingOrAfter"; - this.rdDoingOrAfter.Size = new System.Drawing.Size(83, 16); - this.rdDoingOrAfter.TabIndex = 37; - this.rdDoingOrAfter.Text = "术中及术后"; - this.rdDoingOrAfter.UseVisualStyleBackColor = true; - // - // rdFront - // - this.rdFront.AutoSize = true; - this.rdFront.Checked = true; - this.rdFront.Location = new System.Drawing.Point(16, 20); - this.rdFront.Name = "rdFront"; - this.rdFront.Size = new System.Drawing.Size(47, 16); - this.rdFront.TabIndex = 36; - this.rdFront.TabStop = true; - this.rdFront.Text = "术前"; - this.rdFront.UseVisualStyleBackColor = true; - // - // groupBox1 - // - this.groupBox1.Controls.Add(this.textBox1); - this.groupBox1.Location = new System.Drawing.Point(12, 12); - this.groupBox1.Name = "groupBox1"; - this.groupBox1.Size = new System.Drawing.Size(174, 44); - this.groupBox1.TabIndex = 40; - this.groupBox1.TabStop = false; - this.groupBox1.Text = "住院号或姓名"; - // - // textBox1 - // - this.textBox1.Location = new System.Drawing.Point(6, 17); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(162, 21); - this.textBox1.TabIndex = 2; - // - // btnFind - // - this.btnFind.Font = new System.Drawing.Font("宋体", 12F); - this.btnFind.Location = new System.Drawing.Point(908, 18); - this.btnFind.Margin = new System.Windows.Forms.Padding(4); - this.btnFind.Name = "btnFind"; - this.btnFind.Size = new System.Drawing.Size(89, 36); - this.btnFind.TabIndex = 9; - this.btnFind.Text = "查询"; - this.btnFind.UseVisualStyleBackColor = true; - this.btnFind.Click += new System.EventHandler(this.btnFind_Click); - // - // dgv - // - this.dgv.AllowUserToAddRows = false; - this.dgv.BackgroundColor = System.Drawing.Color.White; - dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; - dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control; - dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9.5F); - dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; - dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; - dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; - dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; - this.dgv.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; - this.dgv.ColumnHeadersHeight = 40; - this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.PatientId, - this.ApplyId, - this.ArchivesNoColumn, - this.MdrecNoColumn, - this.SickBedColumn, - this.PatientNameColumn, - this.SexColumn, - this.OperationRoomColumn, - this.ApplyDepNameColumn, - this.ApplyTimeColumn, - this.OperationBeginTimeColumn, - this.ApplyDiagnoseInfoNameColumn, - this.ApplyOperationInfoNameColumn, - this.OperationInfoNameColumn, - this.StateColumn}); - this.dgv.Dock = System.Windows.Forms.DockStyle.Fill; - this.dgv.Location = new System.Drawing.Point(0, 62); - this.dgv.Margin = new System.Windows.Forms.Padding(4); - this.dgv.MultiSelect = false; - this.dgv.Name = "dgv"; - this.dgv.ReadOnly = true; - this.dgv.RowHeadersVisible = false; - this.dgv.RowHeadersWidth = 35; - this.dgv.RowTemplate.Height = 23; - this.dgv.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; - this.dgv.Size = new System.Drawing.Size(1163, 462); - this.dgv.TabIndex = 5; - this.dgv.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_CellClick); - // - // PatientId - // - this.PatientId.DataPropertyName = "PatientId"; - this.PatientId.HeaderText = "PatientId"; - this.PatientId.Name = "PatientId"; - this.PatientId.ReadOnly = true; - this.PatientId.Visible = false; - // - // ApplyId - // - this.ApplyId.DataPropertyName = "ApplyId"; - this.ApplyId.HeaderText = "ApplyId"; - this.ApplyId.Name = "ApplyId"; - this.ApplyId.ReadOnly = true; - this.ApplyId.Visible = false; - // - // ArchivesNoColumn - // - this.ArchivesNoColumn.DataPropertyName = "ArchivesNo"; - this.ArchivesNoColumn.HeaderText = "病历号"; - this.ArchivesNoColumn.Name = "ArchivesNoColumn"; - this.ArchivesNoColumn.ReadOnly = true; - this.ArchivesNoColumn.Width = 80; - // - // MdrecNoColumn - // - this.MdrecNoColumn.DataPropertyName = "MdrecNo"; - this.MdrecNoColumn.HeaderText = "住院号"; - this.MdrecNoColumn.Name = "MdrecNoColumn"; - this.MdrecNoColumn.ReadOnly = true; - this.MdrecNoColumn.Width = 80; - // - // SickBedColumn - // - this.SickBedColumn.DataPropertyName = "SickBed"; - this.SickBedColumn.HeaderText = "床号"; - this.SickBedColumn.Name = "SickBedColumn"; - this.SickBedColumn.ReadOnly = true; - this.SickBedColumn.Width = 50; - // - // PatientNameColumn - // - this.PatientNameColumn.DataPropertyName = "PatientName"; - this.PatientNameColumn.HeaderText = "姓名"; - this.PatientNameColumn.Name = "PatientNameColumn"; - this.PatientNameColumn.ReadOnly = true; - this.PatientNameColumn.Width = 80; - // - // SexColumn - // - this.SexColumn.DataPropertyName = "Sex"; - this.SexColumn.HeaderText = "性别"; - this.SexColumn.Name = "SexColumn"; - this.SexColumn.ReadOnly = true; - this.SexColumn.Width = 50; - // - // OperationRoomColumn - // - this.OperationRoomColumn.DataPropertyName = "OperationRoom"; - this.OperationRoomColumn.HeaderText = "手术室"; - this.OperationRoomColumn.Name = "OperationRoomColumn"; - this.OperationRoomColumn.ReadOnly = true; - this.OperationRoomColumn.Width = 80; - // - // ApplyDepNameColumn - // - this.ApplyDepNameColumn.DataPropertyName = "ApplyDepName"; - this.ApplyDepNameColumn.HeaderText = "科室"; - this.ApplyDepNameColumn.Name = "ApplyDepNameColumn"; - this.ApplyDepNameColumn.ReadOnly = true; - // - // ApplyTimeColumn - // - this.ApplyTimeColumn.DataPropertyName = "ApplyTime"; - this.ApplyTimeColumn.HeaderText = "申请时间"; - this.ApplyTimeColumn.Name = "ApplyTimeColumn"; - this.ApplyTimeColumn.ReadOnly = true; - // - // OperationBeginTimeColumn - // - this.OperationBeginTimeColumn.DataPropertyName = "OperationBeginTime"; - this.OperationBeginTimeColumn.HeaderText = "开始时间"; - this.OperationBeginTimeColumn.Name = "OperationBeginTimeColumn"; - this.OperationBeginTimeColumn.ReadOnly = true; - // - // ApplyDiagnoseInfoNameColumn - // - this.ApplyDiagnoseInfoNameColumn.DataPropertyName = "ApplyDiagnoseInfoName"; - this.ApplyDiagnoseInfoNameColumn.HeaderText = "术前诊断"; - this.ApplyDiagnoseInfoNameColumn.Name = "ApplyDiagnoseInfoNameColumn"; - this.ApplyDiagnoseInfoNameColumn.ReadOnly = true; - this.ApplyDiagnoseInfoNameColumn.Width = 120; - // - // ApplyOperationInfoNameColumn - // - this.ApplyOperationInfoNameColumn.DataPropertyName = "ApplyOperationInfoName"; - this.ApplyOperationInfoNameColumn.HeaderText = "拟施手术"; - this.ApplyOperationInfoNameColumn.Name = "ApplyOperationInfoNameColumn"; - this.ApplyOperationInfoNameColumn.ReadOnly = true; - this.ApplyOperationInfoNameColumn.Width = 120; - // - // OperationInfoNameColumn - // - this.OperationInfoNameColumn.DataPropertyName = "OperationInfoName"; - this.OperationInfoNameColumn.HeaderText = "实施手术"; - this.OperationInfoNameColumn.Name = "OperationInfoNameColumn"; - this.OperationInfoNameColumn.ReadOnly = true; - this.OperationInfoNameColumn.Width = 120; - // - // StateColumn - // - this.StateColumn.DataPropertyName = "State"; - this.StateColumn.HeaderText = "状态"; - this.StateColumn.Name = "StateColumn"; - this.StateColumn.ReadOnly = true; - this.StateColumn.Width = 75; - // - // frmSelectPatient - // - this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.AutoScroll = true; - this.ClientSize = new System.Drawing.Size(1163, 524); - this.Controls.Add(this.dgv); - this.Controls.Add(this.panel1); - this.Font = new System.Drawing.Font("宋体", 9.5F); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "frmSelectPatient"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "选择患者"; - this.Load += new System.EventHandler(this.frmSelectPatient_Load); - this.panel1.ResumeLayout(false); - this.groupBox3.ResumeLayout(false); - this.groupBox3.PerformLayout(); - this.groupBox2.ResumeLayout(false); - this.groupBox2.PerformLayout(); - this.groupBox1.ResumeLayout(false); - this.groupBox1.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Panel panel1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Button btnFind; - private System.Windows.Forms.DataGridView dgv; - private System.Windows.Forms.RadioButton rdDoingOrAfter; - private System.Windows.Forms.RadioButton rdFront; - private System.Windows.Forms.DateTimePicker dtpBegInDate; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.DateTimePicker dtpEndDate; - private System.Windows.Forms.GroupBox groupBox1; - private System.Windows.Forms.CheckBox chkIsApply; - private System.Windows.Forms.GroupBox groupBox3; - private System.Windows.Forms.GroupBox groupBox2; - private System.Windows.Forms.DataGridViewTextBoxColumn PatientId; - private System.Windows.Forms.DataGridViewTextBoxColumn ApplyId; - private System.Windows.Forms.DataGridViewTextBoxColumn ArchivesNoColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn MdrecNoColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn SickBedColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn PatientNameColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn SexColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn OperationRoomColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn ApplyDepNameColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn ApplyTimeColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn OperationBeginTimeColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn ApplyDiagnoseInfoNameColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn ApplyOperationInfoNameColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn OperationInfoNameColumn; - private System.Windows.Forms.DataGridViewTextBoxColumn StateColumn; - } -} \ No newline at end of file diff --git a/AIMS/DocManager/frmSelectPatient.cs b/AIMS/DocManager/frmSelectPatient.cs deleted file mode 100644 index a3560c0..0000000 --- a/AIMS/DocManager/frmSelectPatient.cs +++ /dev/null @@ -1,380 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Windows.Forms; -using DocumentManagement; - -namespace AIMS.DocManager -{ - public partial class frmSelectPatient : Form - { - //返回的PatientId - public PatientRecord Patient = new PatientRecord(); - - private DataTable dt; - - public frmSelectPatient() - { - InitializeComponent(); - dgv.AutoGenerateColumns = false; - AIMSExtension.PublicMethod.SetDgvAttribute(dgv); - dgv.CellMouseEnter += new DataGridViewCellEventHandler(dgv_CellMouseEnter); - dgv.CellMouseLeave += new DataGridViewCellEventHandler(dgv_CellMouseLeave); - - - dtpEndDate.Value = DateTime.Parse(dtpEndDate.Value.ToString("yyyy-MM-dd")).AddDays(4); - } - - void dgv_CellMouseLeave(object sender, DataGridViewCellEventArgs e) - { - var rowIndex = e.RowIndex; - if (rowIndex < 0 || rowIndex >= dgv.Rows.Count) - { - return; - } - dgv.Rows[rowIndex].DefaultCellStyle = dgv.DefaultCellStyle; - } - - void dgv_CellMouseEnter(object sender, DataGridViewCellEventArgs e) - { - var rowIndex = e.RowIndex; - if (rowIndex < 0 || rowIndex >= dgv.Rows.Count) - { - return; - } - dgv.Rows[rowIndex].DefaultCellStyle = new DataGridViewCellStyle() { BackColor = Color.Yellow }; - } - - private void btnFind_Click(object sender, EventArgs e) - { - StringBuilder sb = new StringBuilder(); - string strNameOrMdrecNo = this.textBox1.Text.Trim(); - if (!strNameOrMdrecNo.Equals(string.Empty)) - { - sb.Append(" (PatientName like '%" + strNameOrMdrecNo + "%' or MdrecNo like '%" + strNameOrMdrecNo + "%')"); - } - if (rdFront.Checked) - { - sb.Append(" and [State] in ('已申请','已审核','预排程','已排程','已访视')"); - } - else - { - sb.Append(" and [State] in ('手术中','麻醉恢复中','手术结束','麻醉恢复结束')"); - } - if (chkIsApply.Checked) - { - sb.Append(" and ApplyTime >= '" + this.dtpBegInDate.Value.ToString("yyyy-MM-dd") + "' "); - sb.Append(" and ApplyTime <= '" + this.dtpEndDate.Value.ToString("yyyy-MM-dd") + "' "); - } - else - { - sb.Append(" and InRoomTime >= '" + this.dtpBegInDate.Value.ToString("yyyy-MM-dd") + "' "); - sb.Append(" and InRoomTime <= '" + this.dtpEndDate.Value.ToString("yyyy-MM-dd") + "' "); - } - dt = DocumentDAL.GetPatients(sb.ToString()); - dgv.DataSource = dt; - } - - private void dgv_CellContentClick(object sender, DataGridViewCellEventArgs e) - { - - } - - private void dgv_CellClick(object sender, DataGridViewCellEventArgs e) - { - var rowIndex = e.RowIndex; - if (rowIndex < 0 || rowIndex >= dgv.Rows.Count) - { - return; - } - this.Patient.PatientId = int.Parse(dgv.Rows[rowIndex].Cells["PatientId"].Value.ToString()); - //this.Patient.PatientId = int.Parse(dt.Rows[rowIndex]["PatientId"].ToString()); - this.Patient.ApplyId = int.Parse(dgv.Rows[rowIndex].Cells["ApplyId"].Value.ToString()); - this.Patient.MdrecNo = dgv.Rows[rowIndex].Cells["MdrecNoColumn"].Value.ToString(); - this.Patient.ArchivesNo = dgv.Rows[rowIndex].Cells["ArchivesNoColumn"].Value.ToString(); - this.Patient.PatientName = dgv.Rows[rowIndex].Cells["PatientNameColumn"].Value.ToString(); - this.Patient.PatientName1 = dgv.Rows[rowIndex].Cells["PatientNameColumn"].Value.ToString(); - this.Patient.PatientKind = dt.Rows[rowIndex]["PatientKind"].ToString(); - this.Patient.Sex = dgv.Rows[rowIndex].Cells["SexColumn"].Value.ToString(); - this.Patient.ApplyDepName = dt.Rows[rowIndex]["ApplyDepName"].ToString(); - this.Patient.BirthDay = dt.Rows[rowIndex]["BirthDay"].ToString(); - this.Patient.Age = dt.Rows[rowIndex]["Age"].ToString(); - this.Patient.Height = dt.Rows[rowIndex]["Height"].ToString(); - this.Patient.Weight = dt.Rows[rowIndex]["Weight"].ToString(); - this.Patient.BloodType = dt.Rows[rowIndex]["BloodType"].ToString(); - this.Patient.SickBed = dt.Rows[rowIndex]["SickBed"].ToString(); - this.Patient.OperationType = dt.Rows[rowIndex]["OperationType"].ToString(); - this.Patient.OrderOperationTime = dt.Rows[rowIndex]["OrderOperationTime"].ToString(); - this.Patient.OperationTimeLeight = dt.Rows[rowIndex]["OperationTimeLeight"].ToString(); - this.Patient.IsReturnOperation = dt.Rows[rowIndex]["IsReturnOperation"].ToString(); - this.Patient.IsPlanReturnOperation = dt.Rows[rowIndex]["IsPlanReturnOperation"].ToString(); - this.Patient.ApplyDiagnoseInfoName = dt.Rows[rowIndex]["ApplyDiagnoseInfoName"].ToString(); - this.Patient.DiagnoseRemark = dt.Rows[rowIndex]["DiagnoseRemark"].ToString(); - this.Patient.ApplyOperationInfoName = dt.Rows[rowIndex]["ApplyOperationInfoName"].ToString(); - this.Patient.OperationRemark = dt.Rows[rowIndex]["OperationRemark"].ToString(); - this.Patient.ApplyOperationLevelName = dt.Rows[rowIndex]["ApplyOperationLevelName"].ToString(); - this.Patient.ApplyOperationCutTypeName = dt.Rows[rowIndex]["ApplyOperationCutTypeName"].ToString(); - this.Patient.ApplyOperationPositionName = dt.Rows[rowIndex]["ApplyOperationPositionName"].ToString(); - this.Patient.ApplyAnaesthesiaMethodName = dt.Rows[rowIndex]["ApplyAnaesthesiaMethodName"].ToString(); - this.Patient.Contagion = dt.Rows[rowIndex]["Contagion"].ToString(); - this.Patient.ApplyOperationDoctor = dt.Rows[rowIndex]["ApplyOperationDoctor"].ToString(); - this.Patient.Assistant1 = dt.Rows[rowIndex]["Assistant1"].ToString(); - this.Patient.Assistant2 = dt.Rows[rowIndex]["Assistant2"].ToString(); - this.Patient.Assistant3 = dt.Rows[rowIndex]["Assistant3"].ToString(); - this.Patient.Intern = dt.Rows[rowIndex]["Intern"].ToString(); - this.Patient.Other = dt.Rows[rowIndex]["Other"].ToString(); - this.Patient.ApplyTime = dt.Rows[rowIndex]["ApplyTime"].ToString(); - this.Patient.ApplyOperatorName = dt.Rows[rowIndex]["ApplyOperatorName"].ToString(); - this.Patient.VerifyOperatorName = dt.Rows[rowIndex]["VerifyOperatorName"].ToString(); - this.Patient.PlanOperationTime = dt.Rows[rowIndex]["PlanOperationTime"].ToString(); - this.Patient.OperationRoomId = dt.Rows[rowIndex]["OperationRoomId"].ToString(); - this.Patient.OperationRoom = dt.Rows[rowIndex]["OperationRoom"].ToString(); - this.Patient.PlanOrder = dt.Rows[rowIndex]["PlanOrder"].ToString(); - this.Patient.ApplyAnesthesiaDoctor = dt.Rows[rowIndex]["ApplyAnesthesiaDoctor"].ToString(); - this.Patient.InstrumentNurse = dt.Rows[rowIndex]["InstrumentNurse"].ToString(); - this.Patient.TourNurse = dt.Rows[rowIndex]["TourNurse"].ToString(); - this.Patient.AnesthesiaDoctorSucceed = dt.Rows[rowIndex]["AnesthesiaDoctorSucceed"].ToString(); - this.Patient.InstrumentNurseSucceed = dt.Rows[rowIndex]["InstrumentNurseSucceed"].ToString(); - this.Patient.TourNurseSucceed = dt.Rows[rowIndex]["TourNurseSucceed"].ToString(); - this.Patient.ASA = dt.Rows[rowIndex]["ASA"].ToString(); - this.Patient.HeartFunctionLevel = dt.Rows[rowIndex]["HeartFunctionLevel"].ToString(); - this.Patient.IsFasting = dt.Rows[rowIndex]["IsFasting"].ToString(); - this.Patient.State = dt.Rows[rowIndex]["State"].ToString(); - this.Patient.InRoomTime = dt.Rows[rowIndex]["InRoomTime"].ToString(); - this.Patient.OutRoomTime = dt.Rows[rowIndex]["OutRoomTime"].ToString(); - this.Patient.OperationBeginTime = dt.Rows[rowIndex]["OperationBeginTime"].ToString(); - this.Patient.OperationEndTime = dt.Rows[rowIndex]["OperationEndTime"].ToString(); - this.Patient.OperationLevelName = dt.Rows[rowIndex]["OperationLevelName"].ToString(); - this.Patient.OpeAfterMode = dt.Rows[rowIndex]["OpeAfterMode"].ToString(); - this.Patient.SpecialSituation = dt.Rows[rowIndex]["SpecialSituation"].ToString(); - this.Patient.PunctureBodyPosition = dt.Rows[rowIndex]["PunctureBodyPosition"].ToString(); - this.Patient.PuncturePosition = dt.Rows[rowIndex]["PuncturePosition"].ToString(); - this.Patient.CatheterDepth = dt.Rows[rowIndex]["CatheterDepth"].ToString(); - this.Patient.NeedleSize = dt.Rows[rowIndex]["NeedleSize"].ToString(); - this.Patient.NeedleDirection = dt.Rows[rowIndex]["NeedleDirection"].ToString(); - this.Patient.AnaesthesiaPlane = dt.Rows[rowIndex]["AnaesthesiaPlane"].ToString(); - this.Patient.AnaesthesiaEffect = dt.Rows[rowIndex]["AnaesthesiaEffect"].ToString(); - this.Patient.DiagnoseInfoName = dt.Rows[rowIndex]["DiagnoseInfoName"].ToString(); - this.Patient.OperationInfoName = dt.Rows[rowIndex]["OperationInfoName"].ToString(); - this.Patient.AnaesthesiaMethodName = dt.Rows[rowIndex]["AnaesthesiaMethodName"].ToString(); - this.Patient.OperationCutTypeName = dt.Rows[rowIndex]["OperationCutTypeName"].ToString(); - this.Patient.OperationBodyPositionName = dt.Rows[rowIndex]["OperationBodyPositionName"].ToString(); - this.Patient.OperationPositionName = dt.Rows[rowIndex]["OperationPositionName"].ToString(); - this.Patient.OperationDoctor = dt.Rows[rowIndex]["OperationDoctor"].ToString(); - this.Patient.Assistant = dt.Rows[rowIndex]["Assistant"].ToString(); - this.Patient.AnesthesiaDoctor = dt.Rows[rowIndex]["AnesthesiaDoctor"].ToString(); - this.Patient.Nurse = dt.Rows[rowIndex]["Nurse"].ToString(); - this.Patient.Illdistrict = dt.Rows[rowIndex]["Illdistrict"].ToString(); - this.Patient.Remarks = dt.Rows[rowIndex]["Remarks"].ToString(); - this.Patient.SysDate = dt.Rows[rowIndex]["SysDate"].ToString(); - this.Close(); - } - - private void chkIsApply_CheckedChanged(object sender, EventArgs e) - { - if (chkIsApply.Checked) - { - groupBox3.Text = "申请时间"; - } - else - { - groupBox3.Text = "手术时间"; - } - } - - private void frmSelectPatient_Load(object sender, EventArgs e) - { - - } - } - - /// - /// V_OperationRecordALL - /// - public class PatientRecord - { - public int PatientId { get; set; } - public int ApplyId { get; set; } - public String MdrecNo { get; set; } - public String ArchivesNo { get; set; } - public String PatientName { get; set; } - public String PatientName1 { get; set; } - public String ApplyDepName { get; set; } - public String PatientKind { get; set; } - public String Sex { get; set; } - public String BirthDay { get; set; } - public String Age { get; set; } - public String Height { get; set; } - public String Weight { get; set; } - public String BloodType { get; set; } - public String RHBloodType { get; set; } - public String SickBed { get; set; } - public String OperationType { get; set; } - public String OrderOperationTime { get; set; } - public String OperationTimeLeight { get; set; } - public String IsReturnOperation { get; set; } - public String IsPlanReturnOperation { get; set; } - public String ApplyDiagnoseInfoName { get; set; } - public String DiagnoseRemark { get; set; } - public String ApplyOperationInfoName { get; set; } - public String OperationRemark { get; set; } - public String ApplyOperationLevelName { get; set; } - public String ApplyOperationCutTypeName { get; set; } - public String ApplyOperationPositionName { get; set; } - public String ApplyAnaesthesiaMethodName { get; set; } - public String Contagion { get; set; } - public String ApplyOperationDoctor { get; set; } - public String Assistant1 { get; set; } - public String Assistant2 { get; set; } - public String Assistant3 { get; set; } - public String Intern { get; set; } - public String Other { get; set; } - public String ApplyTime { get; set; } - public String ApplyOperatorName { get; set; } - public String VerifyTime { get; set; } - public String VerifyOperatorName { get; set; } - public String PlanOperationTime { get; set; } - public String OperationRoomId { get; set; } - public String OperationRoom { get; set; } - public String PlanOrder { get; set; } - public String ApplyAnesthesiaDoctor { get; set; } - public String InstrumentNurse { get; set; } - public String TourNurse { get; set; } - public String AnesthesiaDoctorSucceed { get; set; } - public String InstrumentNurseSucceed { get; set; } - public String TourNurseSucceed { get; set; } - public String ASA { get; set; } - public String HeartFunctionLevel { get; set; } - public String IsFasting { get; set; } - public String State { get; set; } - public String InRoomTime { get; set; } - public String OutRoomTime { get; set; } - public String OperationBeginTime { get; set; } - public String OperationEndTime { get; set; } - public String OperationLevelName { get; set; } - public String OpeAfterMode { get; set; } - public String SpecialSituation { get; set; } - public String PunctureBodyPosition { get; set; } - public String PuncturePosition { get; set; } - public String CatheterDepth { get; set; } - public String NeedleSize { get; set; } - public String NeedleDirection { get; set; } - public String AnaesthesiaPlane { get; set; } - public String AnaesthesiaEffect { get; set; } - public String DiagnoseInfoName { get; set; } - public String OperationInfoName { get; set; } - public String AnaesthesiaMethodName { get; set; } - public String OperationCutTypeName { get; set; } - public String OperationBodyPositionName { get; set; } - public String OperationPositionName { get; set; } - public String OperationDoctor { get; set; } - public String Assistant { get; set; } - public String AnesthesiaDoctor { get; set; } - public String Nurse { get; set; } - public String Illdistrict { get; set; } - public String Remarks { get; set; } - public String SysDate { get; set; } - public String SysTime { get; set; } - public String OpeTime { get; set; } - public String MedicalRecord { get; set; } - - public static PatientRecord GetPatientRecord(int patientId) - { - PatientRecord patient = new PatientRecord(); - #region 患者信息赋值 - DataTable dt = DocumentManagement.DocumentDAL.GetPatient(patientId); - if (dt.Rows.Count > 0) - { - patient.PatientId = int.Parse(dt.Rows[0]["PatientId"].ToString()); - //patient.PatientId = int.Parse(dt.Rows[0]["PatientId"].ToString()); - patient.ApplyId = int.Parse(dt.Rows[0]["ApplyId"].ToString()); - patient.MdrecNo = dt.Rows[0]["MdrecNo"].ToString(); - patient.ArchivesNo = dt.Rows[0]["ArchivesNo"].ToString(); - patient.PatientName = dt.Rows[0]["PatientName"].ToString(); - patient.PatientName1 = dt.Rows[0]["PatientName"].ToString(); - patient.PatientKind = dt.Rows[0]["PatientKind"].ToString(); - patient.Sex = dt.Rows[0]["Sex"].ToString(); - patient.ApplyDepName = dt.Rows[0]["ApplyDepName"].ToString(); - patient.Age = dt.Rows[0]["Age"].ToString(); - patient.BirthDay = dt.Rows[0]["BirthDay"].ToString(); - patient.Height = dt.Rows[0]["Height"].ToString(); - patient.Weight = dt.Rows[0]["Weight"].ToString(); - patient.BloodType = dt.Rows[0]["BloodType"].ToString(); - patient.SickBed = dt.Rows[0]["SickBed"].ToString(); - patient.OperationType = dt.Rows[0]["OperationType"].ToString(); - patient.OrderOperationTime = dt.Rows[0]["OrderOperationTime"].ToString(); - patient.OperationTimeLeight = dt.Rows[0]["OperationTimeLeight"].ToString(); - patient.IsReturnOperation = dt.Rows[0]["IsReturnOperation"].ToString(); - patient.IsPlanReturnOperation = dt.Rows[0]["IsPlanReturnOperation"].ToString(); - patient.ApplyDiagnoseInfoName = dt.Rows[0]["ApplyDiagnoseInfoName"].ToString(); - patient.DiagnoseRemark = dt.Rows[0]["DiagnoseRemark"].ToString(); - patient.ApplyOperationInfoName = dt.Rows[0]["ApplyOperationInfoName"].ToString(); - patient.OperationRemark = dt.Rows[0]["OperationRemark"].ToString(); - patient.ApplyOperationLevelName = dt.Rows[0]["ApplyOperationLevelName"].ToString(); - patient.ApplyOperationCutTypeName = dt.Rows[0]["ApplyOperationCutTypeName"].ToString(); - patient.ApplyOperationPositionName = dt.Rows[0]["ApplyOperationPositionName"].ToString(); - patient.ApplyAnaesthesiaMethodName = dt.Rows[0]["ApplyAnaesthesiaMethodName"].ToString(); - patient.Contagion = dt.Rows[0]["Contagion"].ToString(); - patient.ApplyOperationDoctor = dt.Rows[0]["ApplyOperationDoctor"].ToString(); - patient.Assistant1 = dt.Rows[0]["Assistant1"].ToString(); - patient.Assistant2 = dt.Rows[0]["Assistant2"].ToString(); - patient.Assistant3 = dt.Rows[0]["Assistant3"].ToString(); - patient.Intern = dt.Rows[0]["Intern"].ToString(); - patient.Other = dt.Rows[0]["Other"].ToString(); - patient.ApplyTime = dt.Rows[0]["ApplyTime"].ToString(); - patient.ApplyOperatorName = dt.Rows[0]["ApplyOperatorName"].ToString(); - patient.VerifyOperatorName = dt.Rows[0]["VerifyOperatorName"].ToString(); - patient.PlanOperationTime = dt.Rows[0]["PlanOperationTime"].ToString(); - patient.OperationRoomId = dt.Rows[0]["OperationRoomId"].ToString(); - patient.OperationRoom = dt.Rows[0]["OperationRoom"].ToString(); - patient.PlanOrder = dt.Rows[0]["PlanOrder"].ToString(); - patient.ApplyAnesthesiaDoctor = dt.Rows[0]["ApplyAnesthesiaDoctor"].ToString(); - patient.InstrumentNurse = dt.Rows[0]["InstrumentNurse"].ToString(); - patient.TourNurse = dt.Rows[0]["TourNurse"].ToString(); - patient.AnesthesiaDoctorSucceed = dt.Rows[0]["AnesthesiaDoctorSucceed"].ToString(); - patient.InstrumentNurseSucceed = dt.Rows[0]["InstrumentNurseSucceed"].ToString(); - patient.TourNurseSucceed = dt.Rows[0]["TourNurseSucceed"].ToString(); - patient.ASA = dt.Rows[0]["ASA"].ToString(); - patient.HeartFunctionLevel = dt.Rows[0]["HeartFunctionLevel"].ToString(); - patient.IsFasting = dt.Rows[0]["IsFasting"].ToString(); - patient.State = dt.Rows[0]["State"].ToString(); - patient.InRoomTime = dt.Rows[0]["InRoomTime"].ToString(); - patient.OutRoomTime = dt.Rows[0]["OutRoomTime"].ToString(); - patient.OperationBeginTime = dt.Rows[0]["OperationBeginTime"].ToString(); - patient.OperationEndTime = dt.Rows[0]["OperationEndTime"].ToString(); - patient.OperationLevelName = dt.Rows[0]["OperationLevelName"].ToString(); - patient.OpeAfterMode = dt.Rows[0]["OpeAfterMode"].ToString(); - patient.SpecialSituation = dt.Rows[0]["SpecialSituation"].ToString(); - patient.PunctureBodyPosition = dt.Rows[0]["PunctureBodyPosition"].ToString(); - patient.PuncturePosition = dt.Rows[0]["PuncturePosition"].ToString(); - patient.CatheterDepth = dt.Rows[0]["CatheterDepth"].ToString(); - patient.NeedleSize = dt.Rows[0]["NeedleSize"].ToString(); - patient.NeedleDirection = dt.Rows[0]["NeedleDirection"].ToString(); - patient.AnaesthesiaPlane = dt.Rows[0]["AnaesthesiaPlane"].ToString(); - patient.AnaesthesiaEffect = dt.Rows[0]["AnaesthesiaEffect"].ToString(); - patient.DiagnoseInfoName = dt.Rows[0]["DiagnoseInfoName"].ToString(); - patient.OperationInfoName = dt.Rows[0]["OperationInfoName"].ToString(); - patient.AnaesthesiaMethodName = dt.Rows[0]["AnaesthesiaMethodName"].ToString(); - patient.OperationCutTypeName = dt.Rows[0]["OperationCutTypeName"].ToString(); - patient.OperationBodyPositionName = dt.Rows[0]["OperationBodyPositionName"].ToString(); - patient.OperationPositionName = dt.Rows[0]["OperationPositionName"].ToString(); - patient.OperationDoctor = dt.Rows[0]["OperationDoctor"].ToString(); - patient.Assistant = dt.Rows[0]["Assistant"].ToString(); - patient.AnesthesiaDoctor = dt.Rows[0]["AnesthesiaDoctor"].ToString(); - patient.Nurse = dt.Rows[0]["Nurse"].ToString(); - patient.Illdistrict = dt.Rows[0]["Illdistrict"].ToString(); - patient.Remarks = dt.Rows[0]["Remarks"].ToString(); - patient.SysDate = dt.Rows[0]["SysDate"].ToString(); - patient.SysTime = dt.Rows[0]["SysTime"].ToString(); - patient.OpeTime = dt.Rows[0]["OpeTime"].ToString(); - patient.MedicalRecord = dt.Rows[0]["MedicalRecord"].ToString(); - } - #endregion - return patient; - } - } -} diff --git a/AIMS/DocManager/frmSelectPatient.resx b/AIMS/DocManager/frmSelectPatient.resx deleted file mode 100644 index 519c3e0..0000000 --- a/AIMS/DocManager/frmSelectPatient.resx +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - \ No newline at end of file diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs index 25746a2..a3820fb 100644 --- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs +++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs @@ -7,6 +7,7 @@ using AIMSExtension; using AIMSModel; using DevComponents.Editors.DateTimeAdv; using DrawGraph; +using KHD_OREMRInterface; using Newtonsoft.Json; using System; using System.Collections.Generic; @@ -2058,7 +2059,11 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI private void btnsjzx_Click(object sender, EventArgs e) { - MessageBox.Show("未连接到服务器 请联系管理员或稍后再试!", "系统提示"); + //MessageBox.Show("未连接到服务器 请联系管理员或稍后再试!", "系统提示"); + frmLISResult lISResult = new frmLISResult(); + lISResult.PatientNo = _record.InHospitalNo; + lISResult.Show(); + } private void btnqxqd_Click(object sender, EventArgs e) { diff --git a/AIMS/OperationDoing/oldSystemCode/frmLISResult.cs b/AIMS/OperationDoing/oldSystemCode/frmLISResult.cs new file mode 100644 index 0000000..2a53ab5 --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmLISResult.cs @@ -0,0 +1,41 @@ +using DocumentManagement; +using System; +using System.Data; +using System.Windows.Forms; +using System.Xml; + +namespace KHD_OREMRInterface +{ + public partial class frmLISResult : Form + { + public string PatientNo; + public frmLISResult() + { + InitializeComponent(); + dgvType.AutoGenerateColumns = false; + } + + private void frmLISInspectionReport_Load(object sender, EventArgs e) + { + dgvItems.AutoGenerateColumns = false; + + DataTable lisdate = DocumentDAL.GetLisResultNos(PatientNo); + foreach (DataRow row in lisdate.Rows) + { + int index = this.dgvType.Rows.Add(); + this.dgvType.Rows[index].Cells[0].Value = row[0].ToString(); + this.dgvType.Rows[index].Cells[1].Value = row[1].ToString(); + this.dgvType.Rows[index].Cells[2].Value = row[2].ToString(); + } + } + + private void dgvType_CellClick(object sender, DataGridViewCellEventArgs e) + { + if (!(dgvType.SelectedRows.Count > 0)) return; + string lisBillNo = dgvType.SelectedRows[0].Cells[0].Value.ToString(); + DataTable lisdate = DocumentDAL.GetLisResultItems(PatientNo,lisBillNo); + dgvItems.DataSource = lisdate; + } + + } +} \ No newline at end of file diff --git a/AIMS/OperationDoing/oldSystemCode/frmLISResult.designer.cs b/AIMS/OperationDoing/oldSystemCode/frmLISResult.designer.cs new file mode 100644 index 0000000..1b1ce37 --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmLISResult.designer.cs @@ -0,0 +1,610 @@ +namespace KHD_OREMRInterface +{ + partial class frmLISResult + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + 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(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLISResult)); + this.panel1 = new System.Windows.Forms.Panel(); + this.dgvItems = new DevComponents.DotNetBar.Controls.DataGridViewX(); + this.dgvType = new DevComponents.DotNetBar.Controls.DataGridViewX(); + this.lblRemark = new System.Windows.Forms.Label(); + this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.item_code = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.item_name = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.result = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.reference = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.value_unit = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.report_time = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.report_person = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.ItemId = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.ItemName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.UpdateTime = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvItems)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.dgvType)).BeginInit(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.White; + this.panel1.Controls.Add(this.dgvItems); + this.panel1.Controls.Add(this.dgvType); + this.panel1.Controls.Add(this.lblRemark); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(961, 561); + this.panel1.TabIndex = 0; + // + // dgvItems + // + this.dgvItems.AllowUserToAddRows = false; + this.dgvItems.AllowUserToDeleteRows = false; + this.dgvItems.BackgroundColor = System.Drawing.Color.White; + this.dgvItems.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.dgvItems.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None; + this.dgvItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.item_code, + this.item_name, + this.result, + this.reference, + this.value_unit, + this.report_time, + this.report_person}); + dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvItems.DefaultCellStyle = dataGridViewCellStyle1; + this.dgvItems.Dock = System.Windows.Forms.DockStyle.Fill; + this.dgvItems.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229))))); + this.dgvItems.Location = new System.Drawing.Point(240, 0); + this.dgvItems.Name = "dgvItems"; + this.dgvItems.RowHeadersVisible = false; + this.dgvItems.RowTemplate.Height = 23; + this.dgvItems.Size = new System.Drawing.Size(721, 561); + this.dgvItems.TabIndex = 7; + // + // dgvType + // + this.dgvType.AllowUserToAddRows = false; + this.dgvType.AllowUserToDeleteRows = false; + this.dgvType.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; + this.dgvType.BackgroundColor = System.Drawing.Color.White; + this.dgvType.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.dgvType.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None; + this.dgvType.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvType.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.ItemId, + this.ItemName, + this.UpdateTime}); + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvType.DefaultCellStyle = dataGridViewCellStyle2; + this.dgvType.Dock = System.Windows.Forms.DockStyle.Left; + this.dgvType.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229))))); + this.dgvType.Location = new System.Drawing.Point(0, 0); + this.dgvType.Name = "dgvType"; + this.dgvType.ReadOnly = true; + this.dgvType.RowHeadersVisible = false; + this.dgvType.RowTemplate.Height = 23; + this.dgvType.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; + this.dgvType.Size = new System.Drawing.Size(240, 561); + this.dgvType.TabIndex = 6; + this.dgvType.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvType_CellClick); + // + // lblRemark + // + this.lblRemark.AutoSize = true; + this.lblRemark.Location = new System.Drawing.Point(116, 109); + this.lblRemark.Name = "lblRemark"; + this.lblRemark.Size = new System.Drawing.Size(13, 20); + this.lblRemark.TabIndex = 2; + this.lblRemark.Text = " "; + // + // dataGridViewTextBoxColumn1 + // + this.dataGridViewTextBoxColumn1.DataPropertyName = "Index"; + dataGridViewCellStyle3.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle3; + this.dataGridViewTextBoxColumn1.HeaderText = "序"; + this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; + this.dataGridViewTextBoxColumn1.ReadOnly = true; + this.dataGridViewTextBoxColumn1.Visible = false; + this.dataGridViewTextBoxColumn1.Width = 40; + // + // dataGridViewTextBoxColumn2 + // + this.dataGridViewTextBoxColumn2.DataPropertyName = "检验日期"; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle4; + this.dataGridViewTextBoxColumn2.HeaderText = "检验日期"; + this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; + this.dataGridViewTextBoxColumn2.ReadOnly = true; + this.dataGridViewTextBoxColumn2.Visible = false; + this.dataGridViewTextBoxColumn2.Width = 119; + // + // dataGridViewTextBoxColumn3 + // + this.dataGridViewTextBoxColumn3.DataPropertyName = "样本类型"; + dataGridViewCellStyle5.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle5; + this.dataGridViewTextBoxColumn3.HeaderText = "样本"; + this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; + this.dataGridViewTextBoxColumn3.ReadOnly = true; + this.dataGridViewTextBoxColumn3.Visible = false; + this.dataGridViewTextBoxColumn3.Width = 80; + // + // dataGridViewTextBoxColumn4 + // + this.dataGridViewTextBoxColumn4.DataPropertyName = "项目名称"; + dataGridViewCellStyle6.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle6; + this.dataGridViewTextBoxColumn4.HeaderText = "项目名称"; + this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; + this.dataGridViewTextBoxColumn4.ReadOnly = true; + this.dataGridViewTextBoxColumn4.Visible = false; + this.dataGridViewTextBoxColumn4.Width = 205; + // + // dataGridViewTextBoxColumn5 + // + this.dataGridViewTextBoxColumn5.DataPropertyName = "检验结果"; + dataGridViewCellStyle7.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle7; + this.dataGridViewTextBoxColumn5.HeaderText = "结果"; + this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; + this.dataGridViewTextBoxColumn5.ReadOnly = true; + this.dataGridViewTextBoxColumn5.Visible = false; + this.dataGridViewTextBoxColumn5.Width = 90; + // + // dataGridViewTextBoxColumn6 + // + this.dataGridViewTextBoxColumn6.DataPropertyName = "单位"; + dataGridViewCellStyle8.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle8; + this.dataGridViewTextBoxColumn6.HeaderText = "单位"; + this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; + this.dataGridViewTextBoxColumn6.ReadOnly = true; + this.dataGridViewTextBoxColumn6.Visible = false; + this.dataGridViewTextBoxColumn6.Width = 60; + // + // dataGridViewTextBoxColumn7 + // + this.dataGridViewTextBoxColumn7.DataPropertyName = "标志"; + dataGridViewCellStyle9.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle9; + this.dataGridViewTextBoxColumn7.HeaderText = "标志"; + this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; + this.dataGridViewTextBoxColumn7.ReadOnly = true; + this.dataGridViewTextBoxColumn7.Width = 60; + // + // dataGridViewTextBoxColumn8 + // + this.dataGridViewTextBoxColumn8.DataPropertyName = "参考值"; + dataGridViewCellStyle10.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle10; + this.dataGridViewTextBoxColumn8.HeaderText = "参考值"; + this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8"; + this.dataGridViewTextBoxColumn8.ReadOnly = true; + this.dataGridViewTextBoxColumn8.Visible = false; + this.dataGridViewTextBoxColumn8.Width = 119; + // + // dataGridViewTextBoxColumn9 + // + this.dataGridViewTextBoxColumn9.DataPropertyName = "result_type"; + dataGridViewCellStyle11.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle11; + this.dataGridViewTextBoxColumn9.HeaderText = "结果值类型"; + this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9"; + this.dataGridViewTextBoxColumn9.ReadOnly = true; + this.dataGridViewTextBoxColumn9.Width = 119; + // + // dataGridViewTextBoxColumn10 + // + this.dataGridViewTextBoxColumn10.DataPropertyName = "result_tips"; + dataGridViewCellStyle12.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle12; + this.dataGridViewTextBoxColumn10.HeaderText = "结果值标识"; + this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10"; + this.dataGridViewTextBoxColumn10.ReadOnly = true; + this.dataGridViewTextBoxColumn10.Width = 119; + // + // item_code + // + this.item_code.DataPropertyName = "LIS_ITEM_NO"; + this.item_code.HeaderText = "项目ID"; + this.item_code.Name = "item_code"; + // + // item_name + // + this.item_name.DataPropertyName = "LIS_ITEM_NAME"; + this.item_name.HeaderText = "项目名称"; + this.item_name.Name = "item_name"; + // + // result + // + this.result.DataPropertyName = "LIS_ITEM_VALUE"; + this.result.HeaderText = "项目参考值"; + this.result.Name = "result"; + // + // reference + // + this.reference.DataPropertyName = "LIS_ITEM_BZ"; + this.reference.HeaderText = "参考值"; + this.reference.Name = "reference"; + // + // value_unit + // + this.value_unit.DataPropertyName = "LIS_ITEM_UNIT"; + this.value_unit.HeaderText = "单位"; + this.value_unit.Name = "value_unit"; + // + // report_time + // + this.report_time.DataPropertyName = "UpdateTime"; + this.report_time.HeaderText = "报告时间"; + this.report_time.Name = "report_time"; + // + // report_person + // + this.report_person.DataPropertyName = "LIS_ITEM_OPERATOR"; + this.report_person.HeaderText = "报告人"; + this.report_person.Name = "report_person"; + // + // dataGridViewTextBoxColumn11 + // + this.dataGridViewTextBoxColumn11.DataPropertyName = "reference"; + dataGridViewCellStyle13.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle13; + this.dataGridViewTextBoxColumn11.HeaderText = "参考值"; + this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11"; + this.dataGridViewTextBoxColumn11.ReadOnly = true; + // + // dataGridViewTextBoxColumn12 + // + this.dataGridViewTextBoxColumn12.DataPropertyName = "value_unit"; + dataGridViewCellStyle14.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle14; + this.dataGridViewTextBoxColumn12.HeaderText = "单位"; + this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12"; + this.dataGridViewTextBoxColumn12.ReadOnly = true; + this.dataGridViewTextBoxColumn12.Visible = false; + // + // dataGridViewTextBoxColumn13 + // + this.dataGridViewTextBoxColumn13.DataPropertyName = "value_min"; + dataGridViewCellStyle15.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle15; + this.dataGridViewTextBoxColumn13.HeaderText = "最小值"; + this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13"; + this.dataGridViewTextBoxColumn13.ReadOnly = true; + this.dataGridViewTextBoxColumn13.Visible = false; + // + // dataGridViewTextBoxColumn14 + // + this.dataGridViewTextBoxColumn14.DataPropertyName = "value_max"; + dataGridViewCellStyle16.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle16; + this.dataGridViewTextBoxColumn14.HeaderText = "最大值"; + this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14"; + this.dataGridViewTextBoxColumn14.ReadOnly = true; + this.dataGridViewTextBoxColumn14.Visible = false; + // + // dataGridViewTextBoxColumn15 + // + this.dataGridViewTextBoxColumn15.DataPropertyName = "req_id"; + dataGridViewCellStyle17.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle17; + this.dataGridViewTextBoxColumn15.HeaderText = "申请单号"; + this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15"; + this.dataGridViewTextBoxColumn15.ReadOnly = true; + this.dataGridViewTextBoxColumn15.Visible = false; + // + // dataGridViewTextBoxColumn16 + // + this.dataGridViewTextBoxColumn16.DataPropertyName = "req_name"; + dataGridViewCellStyle18.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle18; + this.dataGridViewTextBoxColumn16.HeaderText = "申请单名称"; + this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16"; + this.dataGridViewTextBoxColumn16.ReadOnly = true; + this.dataGridViewTextBoxColumn16.Visible = false; + // + // dataGridViewTextBoxColumn17 + // + this.dataGridViewTextBoxColumn17.DataPropertyName = "req_time"; + dataGridViewCellStyle19.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn17.DefaultCellStyle = dataGridViewCellStyle19; + this.dataGridViewTextBoxColumn17.HeaderText = "申请单时间"; + this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17"; + this.dataGridViewTextBoxColumn17.ReadOnly = true; + this.dataGridViewTextBoxColumn17.Visible = false; + // + // dataGridViewTextBoxColumn18 + // + this.dataGridViewTextBoxColumn18.DataPropertyName = "req_person"; + dataGridViewCellStyle20.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle20; + this.dataGridViewTextBoxColumn18.HeaderText = "申请人"; + this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18"; + this.dataGridViewTextBoxColumn18.ReadOnly = true; + this.dataGridViewTextBoxColumn18.Visible = false; + // + // dataGridViewTextBoxColumn19 + // + this.dataGridViewTextBoxColumn19.DataPropertyName = "req_dept"; + dataGridViewCellStyle21.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle21; + this.dataGridViewTextBoxColumn19.HeaderText = "申请科室"; + this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19"; + this.dataGridViewTextBoxColumn19.ReadOnly = true; + // + // dataGridViewTextBoxColumn20 + // + this.dataGridViewTextBoxColumn20.DataPropertyName = "sample_code"; + dataGridViewCellStyle22.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle22; + this.dataGridViewTextBoxColumn20.HeaderText = "样本编码"; + this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20"; + this.dataGridViewTextBoxColumn20.ReadOnly = true; + // + // dataGridViewTextBoxColumn21 + // + this.dataGridViewTextBoxColumn21.DataPropertyName = "sample_class"; + dataGridViewCellStyle23.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn21.DefaultCellStyle = dataGridViewCellStyle23; + this.dataGridViewTextBoxColumn21.HeaderText = "样本名"; + this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21"; + this.dataGridViewTextBoxColumn21.ReadOnly = true; + // + // dataGridViewTextBoxColumn22 + // + this.dataGridViewTextBoxColumn22.DataPropertyName = "sample_time"; + dataGridViewCellStyle24.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn22.DefaultCellStyle = dataGridViewCellStyle24; + this.dataGridViewTextBoxColumn22.HeaderText = "采样日期"; + this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22"; + this.dataGridViewTextBoxColumn22.ReadOnly = true; + // + // dataGridViewTextBoxColumn23 + // + this.dataGridViewTextBoxColumn23.DataPropertyName = "sample_person"; + dataGridViewCellStyle25.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn23.DefaultCellStyle = dataGridViewCellStyle25; + this.dataGridViewTextBoxColumn23.HeaderText = "采样人"; + this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23"; + this.dataGridViewTextBoxColumn23.ReadOnly = true; + // + // dataGridViewTextBoxColumn24 + // + this.dataGridViewTextBoxColumn24.DataPropertyName = "check_person"; + dataGridViewCellStyle26.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle26; + this.dataGridViewTextBoxColumn24.HeaderText = "审核人员"; + this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24"; + this.dataGridViewTextBoxColumn24.ReadOnly = true; + // + // dataGridViewTextBoxColumn25 + // + this.dataGridViewTextBoxColumn25.DataPropertyName = "check_time"; + dataGridViewCellStyle27.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn25.DefaultCellStyle = dataGridViewCellStyle27; + this.dataGridViewTextBoxColumn25.HeaderText = "审核时间"; + this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25"; + this.dataGridViewTextBoxColumn25.ReadOnly = true; + // + // dataGridViewTextBoxColumn26 + // + this.dataGridViewTextBoxColumn26.DataPropertyName = "report_time"; + dataGridViewCellStyle28.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle28; + this.dataGridViewTextBoxColumn26.HeaderText = "报告时间"; + this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26"; + this.dataGridViewTextBoxColumn26.ReadOnly = true; + // + // dataGridViewTextBoxColumn27 + // + this.dataGridViewTextBoxColumn27.DataPropertyName = "report_person"; + dataGridViewCellStyle29.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle29; + this.dataGridViewTextBoxColumn27.HeaderText = "报告人"; + this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27"; + this.dataGridViewTextBoxColumn27.ReadOnly = true; + // + // dataGridViewTextBoxColumn28 + // + this.dataGridViewTextBoxColumn28.DataPropertyName = "test_mehod"; + dataGridViewCellStyle30.BackColor = System.Drawing.Color.PaleTurquoise; + this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle30; + this.dataGridViewTextBoxColumn28.HeaderText = "测试方法"; + this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28"; + this.dataGridViewTextBoxColumn28.ReadOnly = true; + // + // dataGridViewTextBoxColumn29 + // + this.dataGridViewTextBoxColumn29.DataPropertyName = "remark"; + this.dataGridViewTextBoxColumn29.HeaderText = "备注"; + this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29"; + // + // ItemId + // + this.ItemId.HeaderText = "项目Id"; + this.ItemId.Name = "ItemId"; + this.ItemId.ReadOnly = true; + this.ItemId.Visible = false; + // + // ItemName + // + this.ItemName.DataPropertyName = "ITEM_NAME"; + this.ItemName.HeaderText = "检验名称"; + this.ItemName.Name = "ItemName"; + this.ItemName.ReadOnly = true; + // + // UpdateTime + // + this.UpdateTime.HeaderText = "检验时间"; + this.UpdateTime.Name = "UpdateTime"; + this.UpdateTime.ReadOnly = true; + this.UpdateTime.Visible = false; + // + // frmLISResult + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(961, 561); + this.Controls.Add(this.panel1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "frmLISResult"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "检验报告"; + this.Load += new System.EventHandler(this.frmLISInspectionReport_Load); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvItems)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.dgvType)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label lblRemark; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29; + private DevComponents.DotNetBar.Controls.DataGridViewX dgvType; + private DevComponents.DotNetBar.Controls.DataGridViewX dgvItems; + private System.Windows.Forms.DataGridViewTextBoxColumn item_code; + private System.Windows.Forms.DataGridViewTextBoxColumn item_name; + private System.Windows.Forms.DataGridViewTextBoxColumn result; + private System.Windows.Forms.DataGridViewTextBoxColumn reference; + private System.Windows.Forms.DataGridViewTextBoxColumn value_unit; + private System.Windows.Forms.DataGridViewTextBoxColumn report_time; + private System.Windows.Forms.DataGridViewTextBoxColumn report_person; + private System.Windows.Forms.DataGridViewTextBoxColumn ItemId; + private System.Windows.Forms.DataGridViewTextBoxColumn ItemName; + private System.Windows.Forms.DataGridViewTextBoxColumn UpdateTime; + } +} \ No newline at end of file diff --git a/AIMS/OperationDoing/oldSystemCode/frmLISResult.resx b/AIMS/OperationDoing/oldSystemCode/frmLISResult.resx new file mode 100644 index 0000000..08399ff --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmLISResult.resx @@ -0,0 +1,1283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + + + AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABACUWAAAlFgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD///8A////AP///wD///8B////D////0v///+J////vf///9/////1/////v// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////+////9f///9////+9////if// + /0v///8P////Af///wD///8A////AAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A////Ff// + /0n///+J////tP///9H////l////8v////v////+//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////7////7////8v///+X////R////tP///4n///9J////Ff///wD///8A////AP// + /wAAAAAAAAAAAP///wD///8A////A////yf///9n////sf///+7///////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////7v///7L///9o////KP///wP///8A////AAAAAAD///8A////AP///wP///8i////hv// + /9n//////////v////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////+/////////9r///+H////Iv// + /wP///8A////AP///wD///8A////Jf///4D////b/////f////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////f///9v///+A////Jf///wD///8A////AP///xX///9n////1v// + //z///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////////////P// + /9b///9n////Ff///wD///8B////S////7T///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////7T///9M////Af///w////+N////8/// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////9P///47///8Q////S////7X///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////tv///0z///+J////0f// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////R////iv///7r////k//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////+X///+9////2f// + //D///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////8////+D////t////+P////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////7////9P// + //r////9//////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////7////9//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/v3//fz7//v5+P/79/X/+vf1//v49//8+/n//v38/////v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////+//37+v/59PH/9e3o//Ln + 4P/y59//8+rk//fx7P/7+Pb//v39//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////v///v3/+/f0//Tq4//u3NH/6tPE/+nSwv/s2cz/8eTa//jy7f/9+/r///7+//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v7+//79/P/58uz/8d3P/+jI + sv/lu5//5bqd/+fDqv/r0b//9Ojf//v49v/+/f3///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/f3/+/r5//bq4v/u0Lv/5baV/+Opgf/jqH//5bCN/+jApf/w283/+PHt//z6 + +f/+/v7///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////7+//38+//59fP/8uLW/+vE + qf/kqH//451t/+Odbf/jo3j/5rGO/+zNuv/z5t//+fTy//79/f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/f3//Pn4//bv6//v2Mr/6LqZ/+Sebv/jlWD/45Zh/+Oaaf/kpXv/58Cn/+3c + 0f/17+v//fz7//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////39/f/7+Pb/8unk/+vR + wP/ms5D/45lm/+OTXP/jlF3/45di/+Ofcf/jt5j/6NLD//Lp4//9+/r///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////f39//r29P/w5N3/6Mu3/+Wviv/jl2P/45Jb/+OTXP/jlmD/45xr/+Gv + jf/lybb/8eTc//z6+f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////9/Pz/+vTy/+7f + 1v/lxa//46uF/+OWYv/jklv/45Nc/+OVXv/immj/4KqE/+XDq//w4NT//Pn3//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////38+//58/D/7NvQ/+PAqP/iqID/45Zh/+OSW//jk1z/45Re/+OY + Zv/hpXz/5b2h//Dczf/79vT///7////+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////v///fv7//ny + 7v/q18r/4ruh/+GlfP/jlmH/45Jb/+OTXP/jlF7/45hk/+Ojdv/nuJj/79bE//fw7P/8+/v//v7+//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////9+/v/+PHt/+rUxf/huJv/4aN5/+OVYP/jk1v/45Nc/+OT + Xf/jl2L/5KBw/+eyjf/szbf/8+ff//n29P/+/fz///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////37 + +v/48Or/6tG//+G0lP/hoXX/45Vg/+OTW//jk1z/45Nd/+OVYP/km2n/5qqB/+nDqP/t3dH/9vHs//38 + +/////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////7//fv5//jv6P/qzrn/4rGO/+Gfcv/jlV//45Nb/+OT + XP/jk1z/45Re/+SXYv/ko3X/5bma/+jSwv/z6+T//Pv5//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/9+vj/+e7m/+3Ls//lrof/455u/+OVX//jk1v/45Nc/+OTXP/jk13/45Rf/+Odbv/isY7/5cm1//Hl + 3f/8+ff///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////v79//z49f/46uD/7sar/+eqgP/knGr/45Re/+OT + XP/jk1z/45Nc/+KSXP/jk13/4ppp/+Krhf/lwan/8eHV//z49f///v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///9/Pv/+fPw//Tj1//sv6D/5qR2/+SZZf/jlF3/45Nc/+OTXP/iklv/4ZFb/+KSXP/imGb/46Z9/+a7 + nv/x3M7/+/by//79/f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////7///7+///+/v///v7///7+///+ + /v///v7///7+///+/v////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////z6+f/27ur/8NvO/+m4lf/lnm3/45Vg/+OT + XP/jk1z/4pJb/+CRWv/gkFn/4ZFa/+OXY//konX/57WS//DWxP/58uz//Pv6///+/v////////////// + //////////////////////////////////////////////////////////////////////////////// + ///+/v7//v39//38+v/8+ff//Pj2//z39f/89/T//Pf1//z49v/8+ff//Pv5//39/P/+/v7///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////v7/+vf2//Pp4//s1MT/57GM/+SaZ//jlF3/4pNc/+KSW//hkVv/35Ba/96PWf/gkFn/4pVf/+Sd + bP/mrIP/7My0//Po4P/59vT//v39//////////////////////////////////////////////////// + //////////////////////////////////////////////38/P/7+Pb/9/Ds//Pn4P/y49n/8uHW//Hg + 1f/x4db/8ePZ//Ln3//17un/+ff1//z7+//+/v7///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v/59fP/8OTc/+jNuv/krIb/45hl/+OT + XP/iklv/4ZFb/+CQWv/ej1n/3Y5Y/96PWf/hklz/45hl/+Wkd//owKT/7dzQ//Xv6//9/Pv///////// + //////////////////////////////////////////////////////////////////////////////7+ + /v/9/Pr/+vXy//br5f/v3tL/6dC+/+jJtP/oxq//58Wt/+fGr//nybT/6M+8/+3azP/06eD/+fPu//z6 + +P/+/v3///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////7+//n08f/u39b/5May/+Opgv/jmGT/45Nc/+KSW//hklv/35Fa/96PWv/cj1n/3o9a/+GR + XP/ilWH/5J5v/+S2lv/p0cH/8+ni//37+f////////////////////////////////////////////// + ///////////////////////////////////+/v3//Pv5//n07//z597/7tfI/+nHsP/luZv/5LKQ/+Sw + jP/kr4v/47CM/+OykP/kt5f/6cGm/+/Svf/z4dT/9+/p//v49//+/f3///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v///v7/+PLu/+3b0P/iwar/4aZ9/+OX + Y//jk1z/4pNc/+CTXv/flF//3pNf/92TX//fk17/4ZNd/+KVX//im2r/4q6J/+bIs//x49n//Pn4//// + ///////////////////////////////////////////////////////////////////////////+//79 + +//59fL/8+jh/+3Wxv/owqj/5LGN/+Olev/ioHL/4p5v/+Kebv/in2//4qBx/+Ojdv/lq4L/6rqX/+7N + tv/y4dX/9/Ht//z6+v///v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////7+//79/v/38Oz/69fK/+C8ov/hpHn/45Zi/+OTXf/ilWD/4Jpq/96fcv/fonf/4KJ3/+Ke + b//jmWb/45dj/+OaaP/hqID/5cCm//He0v/8+fb///////////////////////////////////////// + /////////////////////////////////////////fz6//Xu6P/r2cv/58Oq/+Svi//ioXT/4plo/+KX + Y//ilmH/4pZh/+KWYf/il2P/45hm/+SdbP/mp3r/6bmX/+zOuf/y5Nn/+vf0//7+/f////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/+/fz//fr5//z59v/99/T//ffz//338//99/P//ffz//338//99/P//ffz//33 + 8//99/P//ffz//338//99/P//ffz//338//99/P//ffz//338//99/P//ff0//349f/9+vj//v38///+ + /v///////////////////////////////////////////////////v7//v7+//bv6v/q1MT/4Lea/+Ch + df/jlmL/45Re/+KYZf/go3r/4K+N/+K2l//luJn/5q2G/+Whc//kmmj/45pn/+Kkef/mu5z/8drL//v2 + 8////////////////////v7//fz6//z59//8+PX//ffz//338//99/P//ffz//338//99/P//ffz//33 + 8v/68uv/8eHV/+bJs//js5L/4qF2/+KYZf/jlWD/45Re/+OUXf/jlF3/45Rd/+OUXv/jlV//45Zi/+Sb + af/lqH7/57qb/+3TwP/37uj//Pn4//7+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/v7//fz8//r28//16+T/9OTZ//Xf + 0P/23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bc + y//23Mv/9tzM//bczP/13s7/9eHU//Xn3v/69PD//fv7//7+/v////////////////////////////// + ///////////////+/v/+/v3/9+7n/+rQvv/hspL/4Z9y/+KWYf/jlWD/45tr/+Kui//kwaj/6cu3/+zO + uP/pu5z/5ad+/+Odbf/jmWb/46Jz/+e3lP/v1cL/+PHs//z9/P/+/v3///79//37+v/48ev/9OXb//Tg + 0v/13c3/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//TZxf/tzbX/5rmb/+Opgf/im2r/4pRf/+OT + Xf/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXf/jlF3/45Zh/+Oebv/kq4T/6cKn//Hg1f/38e3//Pv6//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////7+/f/8+vj/9+7p/+3bzv/rzbn/7MSo/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/ + n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+3CpP/sx67/7dLA//Xp + 4f/79vT//fz8//////////////////////////////////////////////7+//7+/v/37eX/7M25/+Ku + i//hnW7/4pZh/+OXY//koHL/5rqd/+rSwv/v39T/8uDU/+vIsP/kroj/4p9x/+OZZf/kn27/6LKM/+3O + uP/06uL/+vj3//78/P/9/Pv/+vbz//Lj2P/rz7v/68Ws/+3Aov/uv5//7r+f/+6/n//uv5//7r+f/+6/ + n//uv57/7b6c/+q3k//mrIX/5KFz/+OXY//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jlF3/4pdj/+OfcP/ls5D/6tLB//Ln4f/79/b///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v79//z59v/06uP/59DB/+W+ + ov/msIr/6Kl8/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqX3/56uB/+axjP/ovaH/7tnL//Xt5//7+Pb////+//////////////////// + /////////////////////v7///7+//js4//uy7T/5KuE/+Kba//jl2L/5Jto/+eoff/rx67/8OHX//Xt + 5//36+T/7NC9/+Oykf/ioXX/45hk/+SaZ//mqn//6cSp/+7f0//28e7//Pr5//r39f/27Ob/7tXE/+e9 + oP/msYz/56qA/+ipfP/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipfP/nqHv/5qZ4/+Whcv/km2j/45Vf/+OT + W//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jlF7/4pln/+Oqg//lx7L/7uDW//n1 + 8v////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/v3/+/j2//Po4f/lzLv/4raY/+Ome//lnWr/5Z1r/+Wda//lnWv/5Z1r/+Wd + a//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1q/+Wcaf/knWv/5KJ0/+Wu + iP/oyrX/7+HY//jz7////v7////////////////////////////////////////+/v/+/fz/+Org/+/J + r//mqX//45po/+SYZP/mn27/6a+H//DRvf/27Ob/+vXy//nw6//s1cX/4ria/+Gkev/jl2P/45Zg/+Si + dP/muZr/6dLD//Pq5P/69vT/9vDs//Dh1v/qyLD/5rCL/+Wlef/ln27/5Z1q/+Wda//lnWv/5Z1r/+Wd + a//lnWv/5Z1r/+Wdav/lnWr/5Jto/+OYY//jlF7/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/imGT/4ad+/+LBqv/s3NH/+PPw//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////79/f/7+Pb/8+jh/+XL + uf/itpj/5KZ8/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+We + bP/lnmz/5Z5s/+WdbP/lnGn/5Jhj/+OXYv/jm2j/46Z7/+S/pf/r2Mv/9u7p//7+/f////////////// + //////////////////////7//f38//r59//15dn/7saq/+eofP/kmmf/5Jll/+ehcv/qs43/8tjE//ny + 7f/8+ff/+fPv/+3bzf/jvqT/4ah//+OYY//jlF3/451t/+Owjv/myLT/8eXc//jz7v/z6OD/6tTE/+a7 + nf/lp3z/5aBx/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnWr/5Jlk/+OV + Xv/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OXY//hp37/4cGr/+vc + 0f/48/D///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v79//v49v/z6eP/59C//+W9ov/nsIr/6Kl8/+ipff/oqX3/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqHv/56V4/+agcf/kmGT/45Vf/+OX + Y//ioXP/4raY/+nRwP/16uP//v79//////////////////////////////////7+/v/8+/r/9/Pw//Hf + 0v/swaT/56Z5/+WaZf/kmWX/5qN0/+u2kf/028r/+/by//38+//69vL/7uDW/+XGr//irYf/45pm/+OT + XP/jmmj/4qqD/+TAp//w39T/9+/q/+/g1f/lyLL/4q+L/+Sgcf/ln23/56Jy/+ileP/oqHz/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqHz/56Z5/+ajc//knGn/45Zg/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/jlF3/45lm/+Kpgf/jxbD/7d7V//j08f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/v7//Pr5//fw + 6//u39P/7dO//+/KsP/wxaf/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DF + qP/wxaj/8MWn/+2/oP/otpP/5KqC/+Obav/jlF//45Zg/+Kebv/hsI7/6Mu3//To3//+/v3///////// + /////////////////////////v39//v49//07ej/7dfH/+m7mv/moXL/5Jhi/+SZZf/lpXf/6rmV//Xe + zf/8+PT//v38//v49v/x6OH/6dC+/+W2lP/kn2//45Zg/+OZZv/jpnv/5rqb//Lczf/47eb/7trN/+O+ + pP/gp3//45xq/+afbf/oqHr/7LWQ/+/Bov/wxaf/8Mao//DGqP/wxqj/8MWn/+7CpP/quZf/5auD/+Of + cf/jlmH/45Jb/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OWYf/knm3/5K+L/+bM + uv/v49v/+fb0//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////7+///+/fz/+/j2//fw6v/26+H/9+fa//jl1//45df/+OXX//jl + 1//45df/+OXX//jl1//45df/+OXX//jl1//45df/+OXX//jk1v/449X/8tnI/+rKs//kt5f/46Fz/+OX + Yv/jlmH/45xr/+Kshv/pxq7/9OXa//78+//////////////////////////////////9/f3/+/b1//Hn + 4P/pz7z/5rOQ/+Sbaf/jlV//45lm/+Smev/ou5n/9N/Q//z49f/+/v3//Pr5//Xv6//u283/6MCj/+Sm + e//jmWb/45ll/+Wjdv/ptpL/89fE//fo3v/u1ML/47eY/+Gidv/jmmf/5qBv/+mtg//wxqn/9t3M//jk + 1v/45df/+OXX//jl1//35Nb/9eDQ/+3Puf/kt5n/4qZ9/+KZZ//jlF3/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/jlV//5Jtq/+WmfP/mupz/6tbI//Lp5P/7+Pb///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////7+ + /v/9/Pv//Pj2//v28v/89e///PTu//z07v/89O7//PTu//z07v/89O7//PTu//z07v/89O7//PTu//z0 + 7v/89O7//PPu//zz7P/26N7/7dfI/+fCqf/lqX//5Jtp/+SXY//jm2n/46h//+nCpf/y4NL/+/j1//79 + /P////7///////////////////////38/P/69fL/7uHY/+bIsv/krYj/45hk/+OTXf/jmWj/46d+/+a9 + n//z4NP//fj2///+/v/9/Pv/+fXz//Lk2v/qyK//5KyF/+Kca//jmWX/5aJy/+mxiv/vzbf/8tvN/+zJ + s//ksI3/4p9w/+OZZv/loXL/6LCL//HPuP/66+H/+/Ps//z07v/89O7//PTu//zz7v/57+f/8t/S/+jI + sv/ks5P/4qJ2/+KYZf/jlV//45Nd/+OTXP/jk1z/45Nc/+OTXP/jlF3/5JZg/+WbaP/kpXn/5bOQ/+nI + sf/w4tj/9/Ht//z7+v////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v/+/v3//v38//79/P/+/Pv//vz7//78 + +//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz6//jz7f/x49j/6s66/+ey + jP/loHH/5Jlm/+OaZv/lpXf/6ryc//DZyP/48u7//Pv6//7+/v///////////////////////fz7//nz + 8P/s3NH/5MGp/+Opgf/jlmL/45Nd/+Kaaf/iqYP/5L+m//Li1//9+ff///////7+/v/8+/r/9uzk/+zP + u//jso//4Z9x/+OZZv/ln2//6KuC/+vApP/syrX/6b2f/+Wqgf/jnGv/45lm/+Sidv/ntJP/8dXC//vz + 7v/++/r//v38//78+//+/fv//vz7//z59v/27eb/7dnM/+jErP/kr4z/4qB0/+KZZv/ilmH/45Vg/+OV + X//jlV//4pVg/+OXY//knGr/5qR4/+axjv/mwqj/69fI//Xt6P/7+Pb//v39//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////+/n2//Xt5v/u2cn/6LmY/+Slef/jmmj/45hj/+Wfbv/otJD/7dC8//Pq + 5P/69/b//v39///////////////////+///9+/r/+PLt/+rXyf/iu6D/4aV8/+OVYf/jklz/4ptr/+Gs + iP/kxK3/8uTb//359/////////7+//7+/f/48Ov/7dTE/+K3mf/gonb/45ll/+SbaP/monX/56+K/+e1 + k//mrYb/5aJz/+SZZf/jmWb/46V8/+W5nP/w2sv/+/bz///+/v///////////////////////v39//r2 + 8//06eL/7tfI/+nErP/kspH/4aV7/+Gfcv/inGz/4ptp/+Kbav/hnW//4aJ2/+Oqg//nt5b/6sau/+3W + xv/y59//+vb0//38/P///v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////9/Pv/+fTv//Li + 1v/nv6P/46iA/+Kbav/jlmD/5Jlm/+WshP/oxq//7uHY//jz8f/+/fz///////////////////7///37 + +v/48Or/6dLB/+G2mP/honj/45Vg/+OTXP/inW7/4rGP/+TKt//y6N///fr4/////////v7///7///nz + 7//t2cz/4r2k/+Gmff/jmWb/45Zi/+OZZv/jnm//46F0/+Oebv/kmmf/5JZh/+ObaP/jq4X/5cKq//Df + 1P/8+PX///7+/////////////////////////v7//fv6//r18v/16uL/8NvP/+nKtv/juZ3/4rGP/+Os + hv/kqoL/5aqC/+Ouiv/itZb/5cCn/+rOvP/w3dD/9erj//r08f/9+/r///7+//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////79/f/79/T/9Ofd/+fErP/irIf/4p1t/+OVX//jl2H/5KZ8/+W+ + pf/q2c7/9/Dt//78+/////////////////////7//fv5//jv6P/qzrv/4rKR/+Ggc//jlWD/45Nd/+Of + cf/jt5f/59HB//Pr5f/8+/n/////////////////+vXy/+/f1f/lxrL/462K/+Scbf/jlmL/4pVg/+GX + Y//hmGX/4pdj/+SXYv/kmGP/5aJy/+a3lv/pz77/8ujh//z69////v7////////////////////////+ + /v///f3//fr6//r08f/27Ob/8eDV/+zTwv/rzLf/7Mmx/+3Hrf/tx63/68u0/+vQvf/t2Mr/8eLZ//Xs + 5v/59PL//Pv6//7+/f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////////v7+//z5 + 9//26+L/58q1/+Gwjv/hn3H/45Rf/+OVX//jonb/47ib/+jSw//27ej//fz7//////////////////// + /v/9+/j/+O7m/+vLtf/jr4r/4p5w/+OVYP/jlF7/5KN2/+a9oP/r2c3/9u/r//38+/////////////// + ///79/b/8ubf/+nRwf/mt5j/5KJ2/+KYZf/hk13/4JJc/+GTXf/ilF7/45Zg/+SbaP/nqX7/6sOo/+/e + 0v/28e7//fv7///////////////////////////////////////+/v7//fz6//v49v/58u7/9uvk//bn + 3v/25tv/9uXZ//bl2f/259z/9erh//bu6P/48/D/+/f2//37+//+/v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////v7//fr4//bt5//nz77/4bWW/+GhdP/jlF7/45Re/+Kf + cv/is5P/58u5//Xr5P/9+/r////////////////////+//37+P/57eX/7cmw/+WshP/jnW3/45Zh/+SY + ZP/nqn//68eu//Dk2//49fP//v38//////////////////z6+f/37ur/793S/+nApv/kp37/4ppp/+GT + Xf/hkVr/4pJb/+KTXP/jlmH/5J5t/+evif/tzbb/9Oni//r4+P/+/f3///////////////////////// + //////////////////////7//v79//37+//8+ff//Pf1//z39P/89/P//Pfz//z39P/8+Pb//Pr5//38 + +//+/f3///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/9+vn/9+/q/+nVyP/ju5//46R6/+OVYP/jlF7/4p1u/+Kui//mxrD/9eff//36+P////////////// + /////v7//fr3//ns4v/vx6v/56qA/+Sca//kmGP/5Z1r/+myi//w0bz/9u7o//v6+f/+/v7///////// + /////////v39//v28//16OH/68mz/+Osh//hnG7/4ZRf/+KSW//ik1z/45Nd/+OXYv/ioHP/5bST/+/T + wf/48ev//f39//7+/v///////////////////////////////////////////////////v////7+//79 + /P/+/fz//vz8//78/P/+/Pz//vz8//79/P/+/v3//v7+///+/v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////+//38+v/48u7/7NzS/+fErP/lrIT/5Zpn/+OW + YP/jnGv/5KqE/+jBp//z49j/+/f0//79/f////////////79/P/79vP/9+fd/+7Ep//nqX7/5Z1q/+SZ + ZP/moHD/67eT//LXxP/59PD//f39//7+/v/////////////////+/v7//Pr4//ju6P/sz7z/47CP/+Gf + c//ilWD/4pNb/+OTXP/jk17/45hk/+Kkev/kup7/79jJ//r18P////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////7//vz7//n18v/x5d3/6826/+e0kf/loHD/45hj/+Obaf/lp33/6Lyd//Hez//48+7//Pv6//// + /////////Pv6//jy7f/z4dT/7MCh/+ene//lnGn/5Jll/+WidP/qupj/89vK//z49f/+//////////// + ///////////////////9/Pv/+fLt/+3Vxf/itpj/4aN5/+KWYv/jklv/45Nc/+OVX//jmmj/4amD/+TA + qv/v3tL/+/f0//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/f3/+/j3//bt6f/v18j/6bye/+Sk + eP/jmWb/45lm/+WidP/otJD/7tXD//Ts5f/6+Pb///7+///////7+Pf/9ezm/+7Zyf/puZf/5qN0/+Sa + Zv/jmWb/46N3/+m8nP/z3c3//fr3//////////////////////////////////79+//69PD/7drN/+O9 + o//hp3//45dj/+OSW//jlF7/5Jhj/+SfcP/jsZD/5sq4//Hj2//8+ff///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/++/v/+vbz//Pg1P/pw6j/4qiA/+Kaaf/jl2L/5Jxq/+aqgv/pyrT/8OPa//jz + 8P/+/v3///7+//r28//x5t3/6dC9/+axi//knWv/5Jdi/+OZZv/ipXv/576h//Le0P/9+vj///////// + /////////////////////////v38//r28v/v4Nf/5caw/+Osh//jmWX/45Nb/+OWYP/lnGr/5qh9/+e9 + of/r1sn/8+rl//z6+f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////+//79/P/8+vj/9OXb/+nI + sf/hrIj/4pxs/+OWYf/jmWX/5KV5/+XCqP/s28//9vDr//7+/P////7/+PPw/+7g1f/lx7L/46qD/+OZ + Zv/jlmD/4ppo/+Cof//mwab/8uDT//37+f/////////////////////////////////+/f3/+/j1//Ho + 4f/p0L//5raU/+Wfbv/klV//45di/+SgcP/mr4j/68mx//Hi2f/38u///fz8//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v79//38+v/06eD/6M25/+CxkP/hnm//45Zg/+OXYv/joXT/4rqd/+nU + xf/07OX//v38//7+/v/38e3/7NrN/+K/p//hpXz/45dj/+OVYP/im2n/4KqF/+XErP/x4tb//fv5//// + //////////////////////////////7+/v/8+/n/9fDr/+7bzv/pwKP/5qd6/+SaZ//jm2j/5KV6/+a2 + lv/u08H/9u7o//v49//+/v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////v7//v37//Xs + 5f/p0sH/4LaY/+Kgcv/jlmH/45Zh/+KfcP/gs5T/5868//Tp4f/+/Pv//v7+//bv6f/q1MX/4Lic/+Gi + dv/jlmL/45Vg/+Kca//grYr/5cey//Hk2v/9+/r///////////////////////////////////////38 + +//59vT/8+bc/+vLtP/lsYz/4qN3/+Kid//jrov/58Gp//De0f/69fL//vz8//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////+/v/+/fz/9u7p/+vYyf/ivqL/46R3/+OXYv/jlmH/4p1t/+Cv + i//nybP/8+bc//77+v/+/v7/9u3m/+rQvv/gspT/4Z9y/+OWYf/jlWD/4p1t/+Cxkf/mzLr/8ubf//37 + +v///////////////////////////////////////v79//37+v/37+n/7dfI/+S/pf/hsZL/4rKS/+W/ + pv/q0cL/8+jh//z59////v3///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////+//79 + /P/48u7/7t/U/+bHsf/lq4L/5Jxp/+SXY//jnGv/4qqE/+fEq//y4db//Pn3//79/f/26+T/6824/+Gv + jP/hnW7/45Vg/+OVYf/jnnD/47eZ/+jTxP/z6uT//fz7//////////////////////////////////// + //////7//v79//v28//z5t3/7NXG/+nMuP/qzbj/7dbG//Hj2v/48e3//fz7/////v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////7//v7+//n18//y5t7/69HA/+ezj//loXL/5Jlm/+Oa + aP/jpnz/6L6h//Dczv/59fL//fv6//fq4f/sy7P/46yF/+Kca//jlWD/45dj/+SidP/mv6T/7NvP//Xv + 6v/+/fz///////////////////////////////////////////////7//fv6//nz7//16+X/9Ofe//Xn + 3v/27OX/+PPu//v59//+/v3///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///+////+/n3//bu6P/w287/6buc/+Wlev/jm2n/45hk/+Ogcf/nt5X/7tTD//Xu6f/7+Pb/+One/+7J + r//lqoD/45tp/+OWYf/kmmj/5qh9/+vJsf/x5dz/+PXx//7+/f////////////////////////////// + ///////////////////+/v3//fz7//z6+P/8+Pb//Pj2//z6+P/9/Pr//v39//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/Pv/+vTx//Tj2f/owaf/46mC/+Kc + a//jlmH/45ln/+athv/qybP/8OTc//jy7f/35dn/78er/+eofP/kmmf/5Jhk/+agb//qsYn/8dTB//fv + 6f/8+vj///7+///////////////////////////////////////////////////////+/v7//v38//79 + /P/+/fz//v39//7+/v/+//7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////7+/f/7+PX/9eng/+fHsP/irYn/4p1v/+OVX//jlmH/5KV7/+a9of/q1MX/8eHV//LY + xf/tv5//56Z4/+SaZv/kmWb/5aJ1/+q1kv/z2sn/+/Tv//79/P////////////////////////////// + ///////////////////////////////////////////+//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v7+//z5+P/27OX/58y4/+Gy + kf/hn3L/45Rf/+OUX//jn3H/47CO/+TBqv/qy7f/7Mar/+q1kP/mo3T/5Jll/+OZZ//kpHn/6bmY//Tf + z//89/T///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v///fr5//fu6P/o0cH/4beZ/+Gidv/jlF7/45Nd/+KZaf/go3v/4a2M/+W1 + lP/nso3/5qh+/+Sdbf/jl2P/45pp/+Omff/nvJ7/9OHT//359v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////+/v/9+/r/9/Hs/+rY + y//jvqP/4qZ8/+OVX//iklz/4ZRh/+CYaP/fnG//4qBy/+OgcP/im2n/4ZZi/+KUX//immn/46mC/+a+ + o//z4tb//fn3//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////+//38+//49PD/7uHX/+jIsv/lroj/5Jln/+KUX//hkl7/4JNf/9+V + Yv/gl2P/4ZZi/+CUYP/gk13/4ZNd/+Kba//iq4f/5cKq//Pk2v/9+ff///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////7//v38//r4 + 9f/y6+T/7NPB/+i3lv/koHH/45Zi/+KTXP/gkVv/35Fc/9+SXP/fklz/35Fb/+CSW//hk13/4Zxt/+Gu + jP/lxrH/8+bd//36+P////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////+/v3//Pv5//fz7//w3c7/6cCi/+Slev/jmWb/4pNd/+CR + Wv/fkFr/35Ba/9+QWv/fkFr/4JJb/+GTXf/inW//4rKR/+XLuf/z6eH//fv5//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /v/+/fz/+/n2//Pk2P/pxaz/4qmB/+Kbaf/hk17/4JBa/96PWf/fkFr/35Ba/+CQWv/gkVz/4ZNe/+Kg + c//jtpj/5tDB//Pr5f/9+/n///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////79/f/8+/r/9Off/+nKtP/grYn/4Zxt/+KU + X//gkFr/349Z/9+PWf/fkFn/4JBb/+GSXv/jl2T/5KZ7/+a9ov/p18v/9e7q//37+v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////v7+//38/P/16uP/6c68/+Cykv/hnnH/4pRg/+GRW//gkFr/349Z/96PWf/fkVv/4ZRg/+Sc + a//mrYX/6cat/+3f1f/38u///fz7//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////v7//v39//bt5//q08T/4bic/+Gh + dP/ilWH/4pJc/+GRW//fkFr/35Ba/+CRXP/ilmL/5aBw/+i0j//tz7n/8ujh//n29f/+/f3///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/+/f3/9/Dr/+zazf/kwKf/46V6/+OWYv/jk1z/4pJc/+GRW//hkVv/4pNd/+OY + ZP/lonP/6rmW//HXxf/58+///fz7//7+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////79/v/48/H/8OLY/+jL + tv/mrYb/5Jtp/+OVX//jk1z/4pJc/+KSXP/jlF7/45ll/+Wjdv/qu5v/89zM//z49f/+//////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v7+//r39f/06uT/7tbG/+i2lP/lonP/5Jhj/+OTXf/jk1z/45Nc/+OU + Xv/jmWb/46V6/+m+oP/z39D//fr4//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/v///Pv5//jx + 7f/y4NT/6b+h/+WnfP/jm2j/45Rd/+OTXP/jk1z/45Vf/+OaaP/ip3//58Cm//Pg1P/9+/r///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////+/fz/+/fz//Xn3v/oxav/4quF/+KcbP/jlF3/45Nc/+OT + XP/jlV//4ptp/+CqhP/mw6z/8uLX//37+v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/8+ff/9uvj/+jKtf/hsI3/4Z5w/+OUXv/jk1v/45Nc/+OVYP/inGv/4K2K/+bHsv/y5Nr//fz6//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////7+//36+f/27ef/6M++/+G0lf/hoXX/45Re/+OT + W//jk1z/45Vh/+Kdbv/hsZH/5su5//Lm3v/9/Pv///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////v7//fv6//fw6//p1cf/4rqf/+Kkev/jlF//45Nb/+OTXP/jlmH/455w/+K1l//o0MD/8+nj//38 + +/////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////v/9/Pr/+PPv/+zc0f/lwqn/46h//+OV + X//jk1v/45Nc/+OWYf/joHL/47ue/+nWyP/07ef//v38//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////79/P/69vP/8OXe/+rMuP/msIv/5Jpn/+OVXv/jlV//5Jpm/+Wme//mwqn/7NzR//Xw + 7P/+/f3///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////39//z59//27ur/79jI/+m6 + mv/loHL/45dj/+OXY//ln27/566G/+rLtf/v49v/9/Pw//7+/f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v7//vz7//r39P/z4dX/68On/+SnfP/jmmj/45pn/+Skdf/otZH/7dTC//Tr + 5f/69/X//v7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/fz//Pr5//Xn + 3f/qyLH/4auG/+KcbP/im2r/46d9/+a7nP/w3M7/+fPv//38+/////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////+/f/9/Pv/9u3m/+zTw//jup7/4qqE/+Kogf/js5L/58au//Pl + 2v/7+PX//v7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////7+//7+ + /f/58+//8OLY/+nPvv/kwKb/472i/+XFr//q1cX/9uzm//37+f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////v////v59//27+r/8OTb/+vYyv/p1cb/69rO/+/k + 3P/48/D//v38//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////v38//v59v/59PD/9u7o//Xt5v/27+r/+PTw//z6+f/+/v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////v7//v38//38+v/8+vj//Pn3//z6 + +P/9+/r//v39//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v7//v7+//7+/v///v3//v79//7+/v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////8/////v// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////+/////f////P////6//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////v////0////4P// + //P///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////8////+D///+8////5P////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////l////vf// + /4n////R//////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////9H///+K////S////7X///////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////tf// + /0z///8P////jf////P///////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////T///+O////D////wH///9L////tP////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////tP// + /0v///8B////AP///xX///9m////1v////z///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////P///9b///9m////Ff///wD///8A////AP///yT///9/////2v// + //z///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////z////a////f/// + /yT///8A////AP///wD///8A////A////yD///9/////1v/////////+//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////7/////////1v///3////8g////A////wD///8AAAAAAP///wD///8A////A/// + /yT///9l////sP///+7///////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////7v///7H///9l////JP// + /wP///8A////AAAAAAAAAAAA////AP///wD///8A////AP///xT///9I////iP///7L////P////4/// + //L////7/////v////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////9////+P// + /+/////i////z////7L///+I////SP///xT///8A////AP///wD///8AAAAAAAAAAAAAAAAAAAAAAP// + /wD///8A////AP///wH///8O////R////4P///+4////3/////T////9//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////r////t////1////7b///+D////Rv///w7///8B////AP// + /wD///8AAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAA + AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAABgAAAAAAA + AAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAc= + + + \ No newline at end of file diff --git a/AIMS/OremrUserControl/ucDocument.cs b/AIMS/OremrUserControl/ucDocument.cs index b91efed..e326255 100644 --- a/AIMS/OremrUserControl/ucDocument.cs +++ b/AIMS/OremrUserControl/ucDocument.cs @@ -112,7 +112,7 @@ namespace AIMS.OremrUserControl && (XTextElement as XTextInputFieldElement).FieldSettings.EditStyle != InputFieldEditStyle.Date && (XTextElement as XTextInputFieldElement).FieldSettings.ListSource != null select XTextElement as XTextInputFieldElement; - DataRow[] dr = DocumentDAL.GetReflectionList().Select("KB_SEQ <> ''"); + DataRow[] dr = DocumentDAL.GetReflectionList("V_OperationRecordALL").Select("KB_SEQ <> ''"); var p = typeof(PatientRecord).GetProperties(); for (int i = 0; i < dr.Count(); i++) { @@ -125,6 +125,23 @@ namespace AIMS.OremrUserControl element.Text = info.GetValue(Patient, null).ToString(); } } + + if (Patient.LisResult != null && Patient.LisResult.PATIENT_ID != null) + { + DataRow[] drr = DocumentDAL.GetReflectionList("V_LisResult").Select("KB_SEQ <> ''"); + var lis = typeof(PatientLisResult).GetProperties(); + for (int i = 0; i < drr.Count(); i++) + { + var name = drr[i].ItemArray[0].ToString(); + var value = drr[i].ItemArray[1].ToString(); + XTextInputFieldElement element = query.Where(x => x.FieldSettings.ListSource.SourceName == value).FirstOrDefault(); + PropertyInfo info = lis.Where(px => px.Name == name).FirstOrDefault(); + if (element != null && info != null) + { + element.Text = info.GetValue(Patient.LisResult, null).ToString(); + } + } + } } string xmlStatic = DocumentDAL.GetEventXml(DModel.TemplateId); if (xmlStatic != string.Empty) diff --git a/BeginScreen/PublicMethod.cs b/BeginScreen/PublicMethod.cs index a03d046..a71b8be 100644 --- a/BeginScreen/PublicMethod.cs +++ b/BeginScreen/PublicMethod.cs @@ -40,7 +40,7 @@ namespace BeginScreen { try { - string sql = "select ApplyDepartmentName 科室,EndemicArea 病区,CONVERT(VARCHAR(16),OperationRoom.Orderby)+'-'+CONVERT(VARCHAR(16),TableIndex) as 术间,case CONVERT(VARCHAR(16), TableIndex) when 1 then '10:00' else '接台' end as 时间,V_PlanedOpe.Name as 姓名,Sex as 性别,BirthDay as 年龄, InHospitalNo as 住院号,Bed as 床号,Diagnose as 术前诊断,operation as 拟施手术,OperationDoctor as 手术者,Assistant1 as 一助,Assistant2 as 二助,Assistant3 as 三助,AnaesthesiaMethodName as 拟施麻醉,AnesthesiaDoctor as 麻醉医生,InstrumentNurse as 洗手,TourNurse as 巡回 from V_PlanedOpe left join OperationRoom on OperationRoom.Id = PlanOperationRoom where " + whereSql + " Order By OperationRoom.OrderBy,TableIndex"; + string sql = "select ApplyDepName 科室, CONVERT(VARCHAR(16),OperationRoom.Name )+'-'+CONVERT(VARCHAR(16),PlanOrder ) as 术间,case CONVERT(VARCHAR(16), PlanOrder ) when 1 then '10:00' else '接台' end as 时间,PatientName as 姓名,Sex as 性别,BirthDay as 年龄, MdrecNo as 住院号,SickBed as 床号,ApplyDiagnoseInfoName as 术前诊断,ApplyOperationInfoName as 拟施手术,OperationDoctor as 手术者,Assistant1 as 一助,Assistant2 as 二助,Assistant3 as 三助,AnaesthesiaMethodName as 拟施麻醉,AnesthesiaDoctor as 麻醉医生,InstrumentNurse as 洗手,TourNurse as 巡回 from [dbo].[V_OperationFront] left join OperationRoom on OperationRoom.Id = OperationRoomId where " + whereSql + " Order By OperationRoom.Id,PlanOrder" ; return DBHelper.GetDataTable(sql); } catch (Exception) @@ -260,7 +260,7 @@ namespace BeginScreen /// public static DataTable GetDepartments() { - string sql = "SELECT Id,Name,Name+'('+HCode+')' as NameHCode FROM Departments where IsValid=1"; + string sql = "SELECT Id,Name,Name+'('+HelpCode+')' as NameHCode FROM Department where IsValid=1"; return DBHelper.GetDataTable(sql); } @@ -270,7 +270,7 @@ namespace BeginScreen /// public static DataTable GetWorkers() { - string sql = "select Id,Name,Name+'('+WorkNo+')'+'('+HCode+')' as NameHCode FROM Workers where IsValid = 1"; + string sql = "select top 20 Id,Name,Name+'('+No+')'+'('+HelpCode+')' as NameHCode FROM Person where IsValid = 1"; return DBHelper.GetDataTable(sql); } diff --git a/BeginScreen/SchedulingPlan.aspx.cs b/BeginScreen/SchedulingPlan.aspx.cs index 9b2d87d..f4ad775 100644 --- a/BeginScreen/SchedulingPlan.aspx.cs +++ b/BeginScreen/SchedulingPlan.aspx.cs @@ -51,9 +51,8 @@ namespace BeginScreen //} //else //{ - string wheresql = "OrderOperationTime>='" + DateTime.Parse(tbJxrq2.Value).ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + DateTime.Parse(tbJxrq2.Value).ToString("yyyy-MM-dd 23:59:59") + "' and state in (2,3) "; - if (ddlDep.SelectedValue.Trim() != "") wheresql += " and ( ApplyDepartmentName like '%" + ddlDep.SelectedValue.Trim() + "%' ) "; - //if (ddlEArea.SelectedValue.Trim() != "") wheresql += " and ( EndemicArea like '%" + ddlEArea.SelectedValue.Trim() + "%' ) "; + string wheresql = "OrderOperationTime>='" + DateTime.Parse(tbJxrq2.Value).ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + DateTime.Parse(tbJxrq2.Value).ToString("yyyy-MM-dd 23:59:59") + "' and StateId <6 "; + if (ddlDep.SelectedValue.Trim() != "") wheresql += " and ( ApplyDepName like '%" + ddlDep.SelectedValue.Trim() + "%' ) "; if (ddlPeo.SelectedValue.Trim() != "") wheresql += " and ( OperationDoctor like '%" + ddlPeo.SelectedValue.Trim() + "%') "; //if (ddlList.SelectedValue != "") wheresql += " and ( dtp.name='" + ddlList.Text + "') "; DataTable operationApplys = PublicMethod.SelectPlanedOpeByRoom(wheresql); diff --git a/BeginScreen/Web.config b/BeginScreen/Web.config index 6c89e8e..048734a 100644 --- a/BeginScreen/Web.config +++ b/BeginScreen/Web.config @@ -1,7 +1,7 @@  - + diff --git a/DocumentManagement/DocumentEntity/DocumentDAL.cs b/DocumentManagement/DocumentEntity/DocumentDAL.cs index 4aee169..4109084 100644 --- a/DocumentManagement/DocumentEntity/DocumentDAL.cs +++ b/DocumentManagement/DocumentEntity/DocumentDAL.cs @@ -29,12 +29,7 @@ namespace DocumentManagement static DocumentDAL() { LoadKBLibaray(); - } - - /// - /// 基础信息视图 - /// - public static string Vw_Info = "V_OperationRecordALL"; + } //public static string OperatorNo = ""; @@ -342,7 +337,7 @@ namespace DocumentManagement /// 返回视图映射列表 /// /// - public static DataTable GetReflectionList() + public static DataTable GetReflectionList(string Vw_Info) { StringBuilder strSql = new StringBuilder(); strSql.Append(" Select name,isnull(kb.KB_SEQ,'')as KB_SEQ FROM SysColumns syscn "); @@ -793,5 +788,48 @@ namespace DocumentManagement throw ex; } } + public static DataTable GetLisResult(string patientNo) + { + try + { + StringBuilder strSql = new StringBuilder(); + strSql.Append(" select *"); + strSql.Append(" from V_LisResult where"); + strSql.Append(" PATIENT_ID = '" + patientNo + "'"); + return DbHelperSQL.GetDataTable(strSql.ToString()); + } + catch (Exception ex) + { + throw ex; + } + } + public static DataTable GetLisResultNos(string patientNo) + { + try + { + StringBuilder strSql = new StringBuilder(); + strSql.Append(" select LIS_ITEM_CODE,LIS_ITEM_CODEName,UpdateTime from LisResult where"); + strSql.Append(" PATIENT_ID = '" + patientNo + "' group by LIS_ITEM_CODE,LIS_ITEM_CODEName,UpdateTime "); + return DbHelperSQL.GetDataTable(strSql.ToString()); + } + catch (Exception ex) + { + throw ex; + } + } + public static DataTable GetLisResultItems(string patientNo,string LIS_ITEM_CODE) + { + try + { + StringBuilder strSql = new StringBuilder(); + strSql.Append(" select * from LisResult where"); + strSql.Append(" PATIENT_ID = '" + patientNo + "' and LIS_ITEM_CODE= '" +LIS_ITEM_CODE + "' "); + return DbHelperSQL.GetDataTable(strSql.ToString()); + } + catch (Exception ex) + { + throw ex; + } + } } } diff --git a/DocumentManagement/UI/frmKB.Designer.cs b/DocumentManagement/UI/frmKB.Designer.cs index 1956d2d..eed352d 100644 --- a/DocumentManagement/UI/frmKB.Designer.cs +++ b/DocumentManagement/UI/frmKB.Designer.cs @@ -66,6 +66,8 @@ this.添加子目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.上移ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.下移ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.txtViewName = new System.Windows.Forms.TextBox(); + this.label8 = new System.Windows.Forms.Label(); this.panel1.SuspendLayout(); this.panel3.SuspendLayout(); this.groupBox4.SuspendLayout(); @@ -86,9 +88,9 @@ this.panel1.Controls.Add(this.panel2); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); - this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(1515, 703); + this.panel1.Size = new System.Drawing.Size(1136, 562); this.panel1.TabIndex = 1; // // panel3 @@ -97,10 +99,10 @@ this.panel3.Controls.Add(this.groupBox2); this.panel3.Controls.Add(this.groupBox1); this.panel3.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel3.Location = new System.Drawing.Point(384, 0); - this.panel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.panel3.Location = new System.Drawing.Point(288, 0); + this.panel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel3.Name = "panel3"; - this.panel3.Size = new System.Drawing.Size(1131, 703); + this.panel3.Size = new System.Drawing.Size(848, 562); this.panel3.TabIndex = 2; // // groupBox4 @@ -111,11 +113,9 @@ this.groupBox4.Controls.Add(this.label5); this.groupBox4.Controls.Add(this.label6); this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill; - this.groupBox4.Location = new System.Drawing.Point(0, 545); - this.groupBox4.Margin = new System.Windows.Forms.Padding(4); + this.groupBox4.Location = new System.Drawing.Point(0, 436); this.groupBox4.Name = "groupBox4"; - this.groupBox4.Padding = new System.Windows.Forms.Padding(4); - this.groupBox4.Size = new System.Drawing.Size(1131, 158); + this.groupBox4.Size = new System.Drawing.Size(848, 126); this.groupBox4.TabIndex = 569; this.groupBox4.TabStop = false; this.groupBox4.Text = "表信息维护功能"; @@ -123,40 +123,36 @@ // label4 // this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(47, 66); - this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label4.Location = new System.Drawing.Point(35, 53); this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(172, 15); + this.label4.Size = new System.Drawing.Size(137, 12); this.label4.TabIndex = 3; this.label4.Text = "双击节点可以编辑或删除"; // // label2 // this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(47, 32); - this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label2.Location = new System.Drawing.Point(35, 26); this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(217, 15); + this.label2.Size = new System.Drawing.Size(173, 12); this.label2.TabIndex = 2; this.label2.Text = "在知识树上点右键可以移动目录"; // // label5 // this.label5.AutoSize = true; - this.label5.Location = new System.Drawing.Point(24, 66); - this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label5.Location = new System.Drawing.Point(18, 53); this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(23, 15); + this.label5.Size = new System.Drawing.Size(17, 12); this.label5.TabIndex = 1; this.label5.Text = "2."; // // label6 // this.label6.AutoSize = true; - this.label6.Location = new System.Drawing.Point(24, 32); - this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label6.Location = new System.Drawing.Point(18, 26); this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(23, 15); + this.label6.Size = new System.Drawing.Size(17, 12); this.label6.TabIndex = 0; this.label6.Text = "1."; // @@ -169,11 +165,9 @@ this.groupBox2.Controls.Add(this.btnDel); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top; this.groupBox2.Font = new System.Drawing.Font("宋体", 10.5F); - this.groupBox2.Location = new System.Drawing.Point(0, 119); - this.groupBox2.Margin = new System.Windows.Forms.Padding(4); + this.groupBox2.Location = new System.Drawing.Point(0, 95); this.groupBox2.Name = "groupBox2"; - this.groupBox2.Padding = new System.Windows.Forms.Padding(4); - this.groupBox2.Size = new System.Drawing.Size(1131, 426); + this.groupBox2.Size = new System.Drawing.Size(848, 341); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "知识点样式 "; @@ -184,10 +178,10 @@ this.panel5.Controls.Add(this.rtbSQL); this.panel5.Controls.Add(this.dgvItems); this.panel5.Dock = System.Windows.Forms.DockStyle.Top; - this.panel5.Location = new System.Drawing.Point(4, 85); - this.panel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.panel5.Location = new System.Drawing.Point(3, 68); + this.panel5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel5.Name = "panel5"; - this.panel5.Size = new System.Drawing.Size(1123, 271); + this.panel5.Size = new System.Drawing.Size(842, 217); this.panel5.TabIndex = 10; // // panel6 @@ -198,20 +192,20 @@ this.panel6.Controls.Add(this.label7); this.panel6.Dock = System.Windows.Forms.DockStyle.Top; this.panel6.Font = new System.Drawing.Font("宋体", 10.5F); - this.panel6.Location = new System.Drawing.Point(623, 0); - this.panel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.panel6.Location = new System.Drawing.Point(467, 0); + this.panel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel6.Name = "panel6"; - this.panel6.Size = new System.Drawing.Size(500, 271); + this.panel6.Size = new System.Drawing.Size(375, 217); this.panel6.TabIndex = 11; this.panel6.Visible = false; // // btnReflection // this.btnReflection.Font = new System.Drawing.Font("宋体", 9F); - this.btnReflection.Location = new System.Drawing.Point(299, 14); - this.btnReflection.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.btnReflection.Location = new System.Drawing.Point(224, 11); + this.btnReflection.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.btnReflection.Name = "btnReflection"; - this.btnReflection.Size = new System.Drawing.Size(74, 25); + this.btnReflection.Size = new System.Drawing.Size(56, 20); this.btnReflection.TabIndex = 15; this.btnReflection.Text = "选择.."; this.btnReflection.UseVisualStyleBackColor = true; @@ -220,29 +214,27 @@ // txtReflection // this.txtReflection.Enabled = false; - this.txtReflection.Location = new System.Drawing.Point(92, 13); - this.txtReflection.Margin = new System.Windows.Forms.Padding(4); + this.txtReflection.Location = new System.Drawing.Point(69, 10); this.txtReflection.Name = "txtReflection"; - this.txtReflection.Size = new System.Drawing.Size(200, 27); + this.txtReflection.Size = new System.Drawing.Size(151, 23); this.txtReflection.TabIndex = 14; // // label7 // this.label7.AutoSize = true; - this.label7.Location = new System.Drawing.Point(4, 17); - this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label7.Location = new System.Drawing.Point(3, 14); this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(89, 18); + this.label7.Size = new System.Drawing.Size(70, 14); this.label7.TabIndex = 13; this.label7.Text = "数据映射:"; // // rtbSQL // this.rtbSQL.Dock = System.Windows.Forms.DockStyle.Fill; - this.rtbSQL.Location = new System.Drawing.Point(623, 0); - this.rtbSQL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.rtbSQL.Location = new System.Drawing.Point(467, 0); + this.rtbSQL.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.rtbSQL.Name = "rtbSQL"; - this.rtbSQL.Size = new System.Drawing.Size(500, 271); + this.rtbSQL.Size = new System.Drawing.Size(375, 217); this.rtbSQL.TabIndex = 0; this.rtbSQL.Text = ""; this.rtbSQL.Visible = false; @@ -255,10 +247,9 @@ this.Column2}); this.dgvItems.Dock = System.Windows.Forms.DockStyle.Left; this.dgvItems.Location = new System.Drawing.Point(0, 0); - this.dgvItems.Margin = new System.Windows.Forms.Padding(4); this.dgvItems.Name = "dgvItems"; this.dgvItems.RowTemplate.Height = 23; - this.dgvItems.Size = new System.Drawing.Size(623, 271); + this.dgvItems.Size = new System.Drawing.Size(467, 217); this.dgvItems.TabIndex = 9; // // Column1 @@ -274,10 +265,9 @@ // btnClear // this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnClear.Location = new System.Drawing.Point(981, 368); - this.btnClear.Margin = new System.Windows.Forms.Padding(4); + this.btnClear.Location = new System.Drawing.Point(736, 294); this.btnClear.Name = "btnClear"; - this.btnClear.Size = new System.Drawing.Size(120, 50); + this.btnClear.Size = new System.Drawing.Size(90, 40); this.btnClear.TabIndex = 11; this.btnClear.Text = "清除(&C)"; this.btnClear.UseVisualStyleBackColor = true; @@ -290,19 +280,19 @@ this.panel4.Controls.Add(this.rdList); this.panel4.Dock = System.Windows.Forms.DockStyle.Top; this.panel4.Font = new System.Drawing.Font("宋体", 10.5F); - this.panel4.Location = new System.Drawing.Point(4, 24); - this.panel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.panel4.Location = new System.Drawing.Point(3, 19); + this.panel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel4.Name = "panel4"; - this.panel4.Size = new System.Drawing.Size(1123, 61); + this.panel4.Size = new System.Drawing.Size(842, 49); this.panel4.TabIndex = 9; // // rdReflection // this.rdReflection.AutoSize = true; - this.rdReflection.Location = new System.Drawing.Point(396, 22); - this.rdReflection.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.rdReflection.Location = new System.Drawing.Point(297, 18); + this.rdReflection.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.rdReflection.Name = "rdReflection"; - this.rdReflection.Size = new System.Drawing.Size(101, 22); + this.rdReflection.Size = new System.Drawing.Size(81, 18); this.rdReflection.TabIndex = 2; this.rdReflection.Text = "视图映射"; this.rdReflection.UseVisualStyleBackColor = true; @@ -311,10 +301,10 @@ // rdSQL // this.rdSQL.AutoSize = true; - this.rdSQL.Location = new System.Drawing.Point(224, 22); - this.rdSQL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.rdSQL.Location = new System.Drawing.Point(168, 18); + this.rdSQL.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.rdSQL.Name = "rdSQL"; - this.rdSQL.Size = new System.Drawing.Size(92, 22); + this.rdSQL.Size = new System.Drawing.Size(74, 18); this.rdSQL.TabIndex = 1; this.rdSQL.Text = "SQL语句"; this.rdSQL.UseVisualStyleBackColor = true; @@ -324,10 +314,10 @@ // this.rdList.AutoSize = true; this.rdList.Checked = true; - this.rdList.Location = new System.Drawing.Point(53, 22); - this.rdList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.rdList.Location = new System.Drawing.Point(40, 18); + this.rdList.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.rdList.Name = "rdList"; - this.rdList.Size = new System.Drawing.Size(65, 22); + this.rdList.Size = new System.Drawing.Size(53, 18); this.rdList.TabIndex = 0; this.rdList.TabStop = true; this.rdList.Text = "列表"; @@ -337,10 +327,9 @@ // btnSave // this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnSave.Location = new System.Drawing.Point(692, 368); - this.btnSave.Margin = new System.Windows.Forms.Padding(4); + this.btnSave.Location = new System.Drawing.Point(519, 294); this.btnSave.Name = "btnSave"; - this.btnSave.Size = new System.Drawing.Size(120, 50); + this.btnSave.Size = new System.Drawing.Size(90, 40); this.btnSave.TabIndex = 7; this.btnSave.Text = "确定(&S)"; this.btnSave.UseVisualStyleBackColor = true; @@ -349,10 +338,9 @@ // btnDel // this.btnDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnDel.Location = new System.Drawing.Point(837, 368); - this.btnDel.Margin = new System.Windows.Forms.Padding(4); + this.btnDel.Location = new System.Drawing.Point(628, 294); this.btnDel.Name = "btnDel"; - this.btnDel.Size = new System.Drawing.Size(120, 50); + this.btnDel.Size = new System.Drawing.Size(90, 40); this.btnDel.TabIndex = 8; this.btnDel.Text = "删除(&D)"; this.btnDel.UseVisualStyleBackColor = true; @@ -363,25 +351,25 @@ this.groupBox1.Controls.Add(this.btnSelect); this.groupBox1.Controls.Add(this.txtParentName); this.groupBox1.Controls.Add(this.label1); + this.groupBox1.Controls.Add(this.txtViewName); this.groupBox1.Controls.Add(this.txtName); + this.groupBox1.Controls.Add(this.label8); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top; this.groupBox1.Font = new System.Drawing.Font("宋体", 10.5F); this.groupBox1.Location = new System.Drawing.Point(0, 0); - this.groupBox1.Margin = new System.Windows.Forms.Padding(4); this.groupBox1.Name = "groupBox1"; - this.groupBox1.Padding = new System.Windows.Forms.Padding(4); - this.groupBox1.Size = new System.Drawing.Size(1131, 119); + this.groupBox1.Size = new System.Drawing.Size(848, 95); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; // // btnSelect // this.btnSelect.Font = new System.Drawing.Font("宋体", 9F); - this.btnSelect.Location = new System.Drawing.Point(319, 31); - this.btnSelect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.btnSelect.Location = new System.Drawing.Point(239, 25); + this.btnSelect.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.btnSelect.Name = "btnSelect"; - this.btnSelect.Size = new System.Drawing.Size(74, 25); + this.btnSelect.Size = new System.Drawing.Size(56, 20); this.btnSelect.TabIndex = 12; this.btnSelect.Text = "选择.."; this.btnSelect.UseVisualStyleBackColor = true; @@ -390,37 +378,33 @@ // txtParentName // this.txtParentName.Enabled = false; - this.txtParentName.Location = new System.Drawing.Point(112, 32); - this.txtParentName.Margin = new System.Windows.Forms.Padding(4); + this.txtParentName.Location = new System.Drawing.Point(84, 26); this.txtParentName.Name = "txtParentName"; - this.txtParentName.Size = new System.Drawing.Size(200, 27); + this.txtParentName.Size = new System.Drawing.Size(151, 23); this.txtParentName.TabIndex = 10; // // label1 // this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(8, 36); - this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label1.Location = new System.Drawing.Point(6, 29); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(71, 18); + this.label1.Size = new System.Drawing.Size(56, 14); this.label1.TabIndex = 9; this.label1.Text = "父节点:"; // // txtName // - this.txtName.Location = new System.Drawing.Point(112, 75); - this.txtName.Margin = new System.Windows.Forms.Padding(4); + this.txtName.Location = new System.Drawing.Point(84, 60); this.txtName.Name = "txtName"; - this.txtName.Size = new System.Drawing.Size(200, 27); + this.txtName.Size = new System.Drawing.Size(151, 23); this.txtName.TabIndex = 5; // // label3 // this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(8, 80); - this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + this.label3.Location = new System.Drawing.Point(6, 64); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(89, 18); + this.label3.Size = new System.Drawing.Size(70, 14); this.label3.TabIndex = 4; this.label3.Text = "节点名称:"; // @@ -429,10 +413,9 @@ this.panel2.Controls.Add(this.tvwKB); this.panel2.Dock = System.Windows.Forms.DockStyle.Left; this.panel2.Location = new System.Drawing.Point(0, 0); - this.panel2.Margin = new System.Windows.Forms.Padding(4); this.panel2.Name = "panel2"; - this.panel2.Padding = new System.Windows.Forms.Padding(4); - this.panel2.Size = new System.Drawing.Size(384, 703); + this.panel2.Padding = new System.Windows.Forms.Padding(3, 3, 3, 3); + this.panel2.Size = new System.Drawing.Size(288, 562); this.panel2.TabIndex = 1; // // tvwKB @@ -440,10 +423,9 @@ this.tvwKB.Dock = System.Windows.Forms.DockStyle.Fill; this.tvwKB.Font = new System.Drawing.Font("宋体", 10.5F); this.tvwKB.HideSelection = false; - this.tvwKB.Location = new System.Drawing.Point(4, 4); - this.tvwKB.Margin = new System.Windows.Forms.Padding(4); + this.tvwKB.Location = new System.Drawing.Point(3, 3); this.tvwKB.Name = "tvwKB"; - this.tvwKB.Size = new System.Drawing.Size(376, 695); + this.tvwKB.Size = new System.Drawing.Size(282, 556); this.tvwKB.TabIndex = 1; this.tvwKB.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvwKB_NodeMouseDoubleClick); this.tvwKB.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tvwKB_MouseClick); @@ -457,42 +439,59 @@ this.上移ToolStripMenuItem, this.下移ToolStripMenuItem}); this.contextMenuStrip2.Name = "contextMenuStrip2"; - this.contextMenuStrip2.Size = new System.Drawing.Size(195, 116); + this.contextMenuStrip2.Size = new System.Drawing.Size(167, 92); // // 新建目录ToolStripMenuItem // this.新建目录ToolStripMenuItem.Name = "新建目录ToolStripMenuItem"; - this.新建目录ToolStripMenuItem.Size = new System.Drawing.Size(194, 28); + this.新建目录ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.新建目录ToolStripMenuItem.Text = "添加同级目录"; this.新建目录ToolStripMenuItem.Click += new System.EventHandler(this.新建目录ToolStripMenuItem_Click); // // 添加子目录ToolStripMenuItem // this.添加子目录ToolStripMenuItem.Name = "添加子目录ToolStripMenuItem"; - this.添加子目录ToolStripMenuItem.Size = new System.Drawing.Size(194, 28); + this.添加子目录ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.添加子目录ToolStripMenuItem.Text = "添加子目录"; this.添加子目录ToolStripMenuItem.Click += new System.EventHandler(this.添加子目录ToolStripMenuItem_Click); // // 上移ToolStripMenuItem // this.上移ToolStripMenuItem.Name = "上移ToolStripMenuItem"; - this.上移ToolStripMenuItem.Size = new System.Drawing.Size(194, 28); + this.上移ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.上移ToolStripMenuItem.Text = "上移"; this.上移ToolStripMenuItem.Click += new System.EventHandler(this.上移ToolStripMenuItem_Click); // // 下移ToolStripMenuItem // this.下移ToolStripMenuItem.Name = "下移ToolStripMenuItem"; - this.下移ToolStripMenuItem.Size = new System.Drawing.Size(194, 28); + this.下移ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.下移ToolStripMenuItem.Text = "下移"; this.下移ToolStripMenuItem.Click += new System.EventHandler(this.下移ToolStripMenuItem_Click); // + // txtViewName + // + this.txtViewName.Location = new System.Drawing.Point(319, 60); + this.txtViewName.Name = "txtViewName"; + this.txtViewName.Size = new System.Drawing.Size(151, 23); + this.txtViewName.TabIndex = 5; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Location = new System.Drawing.Point(243, 64); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(70, 14); + this.label8.TabIndex = 4; + this.label8.Text = "试图名称:"; + // // frmKB // - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1515, 703); + this.ClientSize = new System.Drawing.Size(1136, 562); this.Controls.Add(this.panel1); + this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.Name = "frmKB"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "知识库"; @@ -557,5 +556,7 @@ private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label6; + private System.Windows.Forms.TextBox txtViewName; + private System.Windows.Forms.Label label8; } } \ No newline at end of file diff --git a/DocumentManagement/UI/frmKB.cs b/DocumentManagement/UI/frmKB.cs index ef98db0..b8f6fad 100644 --- a/DocumentManagement/UI/frmKB.cs +++ b/DocumentManagement/UI/frmKB.cs @@ -78,8 +78,9 @@ namespace DocumentManagement return; } btnClear_Click(null, null); - txtParentName.Tag = (KBEntry)tvwKB.SelectedNode.Tag; + txtParentName.Tag = tvwKB.SelectedNode.Tag; txtParentName.Text = tvwKB.SelectedNode.Text; + txtViewName.Text = ((KBEntry)tvwKB.SelectedNode.Tag).Value; } /// @@ -174,12 +175,12 @@ namespace DocumentManagement private void btnReflection_Click(object sender, EventArgs e) { - if (DocumentDAL.Vw_Info == "") + if ( txtViewName.Text == "") { MessageBox.Show("视图名无效!"); return; } - frmViewSelect frmViewSelect = new frmViewSelect(); + frmViewSelect frmViewSelect = new frmViewSelect(txtViewName.Text); frmViewSelect.EntryId = ((KBEntry)txtName.Tag) == null ? string.Empty : ((KBEntry)txtName.Tag).ID; frmViewSelect.FormClosing += new FormClosingEventHandler(frmViewSelect_FormClosing); frmViewSelect.ShowDialog(); @@ -260,6 +261,7 @@ namespace DocumentManagement if (!vcName.Equals(string.Empty)) { txtReflection.Text = vcName; + txtName.Text = vcName; } } diff --git a/DocumentManagement/UI/frmKB.resx b/DocumentManagement/UI/frmKB.resx index 8dd3bfc..2e066a5 100644 --- a/DocumentManagement/UI/frmKB.resx +++ b/DocumentManagement/UI/frmKB.resx @@ -126,7 +126,4 @@ 17, 17 - - 211, 17 - \ No newline at end of file diff --git a/DocumentManagement/UI/frmTemplate.resx b/DocumentManagement/UI/frmTemplate.resx index 3e704af..ffdef48 100644 --- a/DocumentManagement/UI/frmTemplate.resx +++ b/DocumentManagement/UI/frmTemplate.resx @@ -429,7 +429,7 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAS - dAAAEnQB3mYfeAAAAZtJREFUOE+tkjFLw0AUx/sR/Ah+hIxCl4BLxyxCF6EgQlGE4FQKQlAKLkJw6iIE + cgAAEnIBXmVb4wAAAZtJREFUOE+tkjFLw0AUx/sR/Ah+hIxCl4BLxyxCF6EgQlGE4FQKQlAKLkJw6iIE JxfhEASXwi2COIVWJ5fDtm5ikqYRB/373iVt0ppB0IM/l9y93//evXuVfxmOp/BbtU582F2S6yPDUwP5 CLjXwMcXkJAmn0CYib95LaDZOpCo7wmtDM8Njs8DHRhnIAMRaZrBQRzDbEsYZgNWq8SA55iCGZrB/J/C Uzy/RTDaAq1TBWvX+2lgn6k5zBlwJhqeJhgGE/RHIYx9oe9fbkAbxXtrOEkwCmMMxiHkk8LqjocGFbLU @@ -992,7 +992,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACO - GAAAAk1TRnQBSQFMAgEBIQEAAXgBCQF4AQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + GAAAAk1TRnQBSQFMAgEBIQEAAYgBCQGIAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAAZADAAEBAQABCAYAASQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -3367,7 +3367,7 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAVZJREFUOE+tkMFLAkEUxv2DBO952EMX8TLnPS2B4EKHOQpdtsvacZcgvAgSSpAY + wAAADsABataJCQAAAVZJREFUOE+tkMFLAkEUxv2DBO952EMX8TLnPS2B4EKHOQpdtsvacZcgvAgSSpAY 22KIB0EYqCQqsUsgiMNCm0W0UHTq8LVvCqGDq4IfDMO8+b7fezOpjWs0GqPpd/F3VJJS4qTl/6st1Mtb BKdSw3v0MQ94Xh9icL8agORUPHTFrQrI5wgGt0BTqMtV1G4LOE4NYRiifz0EM/h6gJ54UM9onnfALQe6 bq4eJgVBqII0OnXf27fXA5DMUlmFWdFCT6zxgXL2Dbf1CWZNYR9PwEpD6NYI7qmEGL4mgyhsHkXQyxL5 @@ -3385,7 +3385,7 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAT5JREFUOE+9kSFPxEAQhftT+hPuJ1RWViIrkSuRK5ErK1eeXFm5ssmZNYSSQNgL + wAAADsABataJCQAAAT5JREFUOE+9kSFPxEAQhftT+hPuJ1RWViIrkSuRK5ErK1eeXFm5ssmZNYSSQNgL CSFBsA7cY2b27not5CpIeMkzzc733kyLP8v5iOyQ3QdYF/D4/IrDk8vi4aWs82i1xfi0X4dw6lJm6+GH gFaZdQhXZvkRoOYIMcFYBzckWinb9vTNZd+/fM6BXPekLyAlIL7RIAGW0tuEzbXH7uFjgliqy7IDVack 7SKUjbCUvJTqMnhz5bC7e88Q3peVJD1JOq9h+3xc47LDmNCaKMPssrEHAO3Lw8dkcRfokPO/w28Y7gPB @@ -3402,7 +3402,7 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAZRJREFUOE+1kqFuHDEURecP9hP2ExYWGgYaLjQMNAw0CFgVGQ40XGi40HBQZThS + wAAADsABataJCQAAAZRJREFUOE+1kqFuHDEURecP9hP2ExYWGgYaLjQMNAw0CFgVGQ40XGi40HBQZThS qtRRChYals3tfXYm2aQbVapUS0eWZuae5/c8w39ZKToIMTj8fHrEy+Pr6/v8DfHoXwneoJ5Do8we9lbB HyxxbX9+engvlFCtEQupNSCMtu1f7y3y5OCshjM71ETxaQtr9J8CCQv+YBii8OxZ3aFMBnHUMHuF4LbI foDdfxSEVRDgnWFFQfPoL7CipcDbLjA36r0grALpu7B65tHD5o2RMLiivuw+CEbXh1a4z+w/a9S4gQ9s @@ -3479,7 +3479,7 @@ 2, 2, 2, 2 - 168, 416 + 168, 405 0 @@ -3509,7 +3509,7 @@ 2, 2, 2, 2 - 168, 416 + 168, 405 9 @@ -3536,7 +3536,7 @@ 2, 2, 2, 2 - 172, 420 + 172, 409 2 @@ -3566,7 +3566,7 @@ 2, 2, 2, 2 - 172, 420 + 172, 409 0 @@ -3596,7 +3596,7 @@ 2, 2, 2, 2 - 172, 420 + 172, 409 10 @@ -3620,7 +3620,7 @@ 2, 2, 2, 2 - 172, 420 + 172, 409 3 @@ -3678,7 +3678,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACW - BQAAAk1TRnQBSQFMAwEBAAE4AQQBOAEEARABAAEQAQAE/wEZAQAI/wFCAU0BNgcAATYDAAEoAwABQAMA + BQAAAk1TRnQBSQFMAwEBAAFIAQQBSAEEARABAAEQAQAE/wEZAQAI/wFCAU0BNgcAATYDAAEoAwABQAMA ARADAAEBAQABGAYAAQwVAAGcAZABigF7AWwBYwFyAWEBWAFxAWABVwFxAWABVwFxAWABVwFxAWABVwFx AWABVwFxAWABVwFyAWEBWAF7AWwBYwGcAZABigHOAckBxpYAAa4BfAFvAdkBrQGdAdYBqAGaAdMBpgGY AdIBpAGXAcwBoQGZAckBngGXAcYBnAGWAcQBmQGVAcEBlgGTAbYBkQGLAbgBjgGLAXwBbQFkAb8BtwG0 diff --git a/DocumentManagement/UI/frmViewSelect.cs b/DocumentManagement/UI/frmViewSelect.cs index a004b3e..ce38cca 100644 --- a/DocumentManagement/UI/frmViewSelect.cs +++ b/DocumentManagement/UI/frmViewSelect.cs @@ -15,6 +15,7 @@ namespace DocumentManagement /// 知识库EntryId /// public string EntryId; + public string ViewInfo; /// /// 返回结果 /// @@ -23,6 +24,11 @@ namespace DocumentManagement { InitializeComponent(); } + public frmViewSelect(string _ViewInfo) + { + InitializeComponent(); + ViewInfo = _ViewInfo; + } private void btnSave_Click(object sender, EventArgs e) { @@ -43,7 +49,7 @@ namespace DocumentManagement ForeColor = SystemColors.GrayText }; //DocumentDAL dal = new DocumentDAL(); - DataTable dt = DocumentDAL.GetReflectionList(); + DataTable dt = DocumentDAL.GetReflectionList(ViewInfo); for (int i = 0; i < dt.Rows.Count; i++) { TreeNode node = new TreeNode(); diff --git a/DrawGraph/AreaManage/OperationRecord.cs b/DrawGraph/AreaManage/OperationRecord.cs index 41bfdce..014298f 100644 --- a/DrawGraph/AreaManage/OperationRecord.cs +++ b/DrawGraph/AreaManage/OperationRecord.cs @@ -1348,7 +1348,7 @@ namespace DrawGraph OpeRecoverInInfo = new OperationRecoverInInfo(); OpeRecoverOutInfo = new OperationRecoverOutInfo(); InstrumentList = new OperationRecordInstrumentList(); - FactBloodGasAnalysisList = new List(); + FactBloodGasAnalysisList = new List(); } private void SetDefaultValue() diff --git a/DrawGraph/GUtil/EntityObjectChangeNotifier.cs b/DrawGraph/GUtil/EntityObjectChangeNotifier.cs index 1f92b37..81dc686 100644 --- a/DrawGraph/GUtil/EntityObjectChangeNotifier.cs +++ b/DrawGraph/GUtil/EntityObjectChangeNotifier.cs @@ -5,7 +5,7 @@ using System.ComponentModel; using System.Linq; using System.Reflection; using System.Text; -using System.Windows.Forms; +using System.Windows.Forms; namespace DrawGraph { @@ -123,8 +123,8 @@ namespace DrawGraph break; } } - catch (Exception ) - { + catch (Exception) + { //throw; } } diff --git a/DrawGraphManagement/Main.cs b/DrawGraphManagement/Main.cs index 00e24bc..7251288 100644 --- a/DrawGraphManagement/Main.cs +++ b/DrawGraphManagement/Main.cs @@ -755,7 +755,7 @@ namespace DrawGraphManagement private void button11_Click(object sender, EventArgs e) { frmTemplateD frmTemplateD = new frmTemplateD(); - frmTemplateD.ShowDialog(); + frmTemplateD.Show(); } } } diff --git a/DrawGraphManagement/Program.cs b/DrawGraphManagement/Program.cs index 46070a4..3cf8281 100644 --- a/DrawGraphManagement/Program.cs +++ b/DrawGraphManagement/Program.cs @@ -14,7 +14,7 @@ namespace DrawGraphManagement { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Task.Factory.StartNew(() => { PreLoad(); }); + PreLoad(); Application.Run(new Main()); } static void PreLoad()