You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
505 lines
47 KiB
505 lines
47 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Report ScriptLanguage="CSharp" StartReportEvent="_StartReport" ReportInfo.Created="08/24/2023 12:38:53" ReportInfo.Modified="06/04/2024 12:47:09" ReportInfo.CreatorVersion="2018.3.13.0">
|
|
<ScriptText>using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using FastReport;
|
|
using FastReport.Data;
|
|
using FastReport.Dialog;
|
|
using FastReport.Barcode;
|
|
using FastReport.Table;
|
|
using FastReport.Utils;
|
|
using System.IO;
|
|
namespace FastReport
|
|
{
|
|
public class ReportScript
|
|
{
|
|
|
|
private void Text81_AfterData(object sender, EventArgs e)
|
|
{ /* 调试报表时,可以注释掉该事件中的语句,可以正常预览,调试完成记得切换回来!!! */
|
|
|
|
var lts=Convert.ToString(Report.GetParameterValue("LTS"));
|
|
if(lts=="Y")
|
|
{
|
|
(PResLis.FindObject("Text81") as TextObject).Visible=false;
|
|
}
|
|
else
|
|
{
|
|
(PResLis.FindObject("Text81") as TextObject).Visible=true;
|
|
}
|
|
|
|
}
|
|
|
|
private void Text73_BeforePrint(object sender, EventArgs e)
|
|
{
|
|
|
|
var backColorNum=Convert.ToInt32(Report.GetColumnValue("res.reportBackgroundColor"));
|
|
var fontColorNum=Convert.ToInt32(Report.GetColumnValue("res.reportFontColor"));
|
|
var status=(PResLis.FindObject("Text73") as TextObject).Text;
|
|
if(backColorNum>0)
|
|
{
|
|
Color backColor=Color.FromArgb(backColorNum);
|
|
Color fontColor=Color.FromArgb(fontColorNum);
|
|
int r,g,b;
|
|
r=backColor.R;
|
|
g=backColor.G;
|
|
b=backColor.B;
|
|
(sender as TextObject).Fill=new SolidFill(Color.FromArgb(r,g,b));
|
|
|
|
r=fontColor.R;
|
|
g=fontColor.G;
|
|
b=fontColor.B;
|
|
(sender as TextObject).TextFill=new SolidFill(Color.FromArgb(r,g,b));
|
|
}
|
|
|
|
}
|
|
|
|
private void _StartReport(object sender, EventArgs e)
|
|
{
|
|
string summaryContent=((String)Report.GetColumnValue("summContent.summaryContent"));
|
|
string suggestionTitle=((String)Report.GetColumnValue("sug.suggestionTitle"));
|
|
if(!String.IsNullOrEmpty(summaryContent) && !String.IsNullOrEmpty(suggestionTitle)){
|
|
PsumAsug.Visible=true;
|
|
}
|
|
else{
|
|
PsumAsug.Visible=false;
|
|
}
|
|
string asbItemTypeId=((String)Report.GetColumnValue("resAsbitem.itemTypeId"));
|
|
if(!String.IsNullOrEmpty(asbItemTypeId)){
|
|
PAsbitem.Visible=true;
|
|
} else{
|
|
PAsbitem.Visible=false;
|
|
}
|
|
string lisMedicalReportTypeId= ((String)Report.GetColumnValue("dictNotExamItemType.medicalReportTypeId"));
|
|
if(!String.IsNullOrEmpty(lisMedicalReportTypeId)){
|
|
PResLis.Visible=true;
|
|
} else{
|
|
PResLis.Visible=false;
|
|
}
|
|
string pacsItemTypeId=((String)Report.GetColumnValue("dictExamItemType.itemTypeId"));
|
|
if(!String.IsNullOrEmpty(pacsItemTypeId)){
|
|
PResPacs.Visible=true;
|
|
} else{
|
|
PResPacs.Visible=false;
|
|
}
|
|
|
|
string picAsbitemNames=((String)Report.GetColumnValue("resPic.asbitemNames"));
|
|
if(!String.IsNullOrEmpty(picAsbitemNames)){
|
|
PPicture.Visible=true;
|
|
} else{
|
|
PPicture.Visible=false;
|
|
}
|
|
|
|
}
|
|
|
|
private void Barcode1_BeforePrint(object sender, EventArgs e)
|
|
{
|
|
Barcode128 b128=new Barcode128();
|
|
Barcode1.Barcode=b128;
|
|
Barcode1.Text=((String)Report.GetColumnValue("pinfo.patientRegisterNo"));
|
|
}
|
|
}
|
|
}
|
|
</ScriptText>
|
|
<Dictionary>
|
|
<TableDataSource Name="pinfo" ReferenceName="Data.pinfo" DataType="System.Int32" Enabled="true">
|
|
<Column Name="patientRegisterId" DataType="System.String"/>
|
|
<Column Name="isPersonal" DataType="System.String"/>
|
|
<Column Name="customerOrgName" DataType="System.String"/>
|
|
<Column Name="departmentName" DataType="System.String"/>
|
|
<Column Name="patientRegisterNo" DataType="System.String"/>
|
|
<Column Name="barcodeImg" DataType="System.String"/>
|
|
<Column Name="patientNo" DataType="System.String"/>
|
|
<Column Name="idNo" DataType="System.String"/>
|
|
<Column Name="medicalTimes" DataType="System.Int64"/>
|
|
<Column Name="patientName" DataType="System.String"/>
|
|
<Column Name="sexName" DataType="System.String"/>
|
|
<Column Name="age" DataType="System.String"/>
|
|
<Column Name="birthDate" DataType="System.String"/>
|
|
<Column Name="nationName" DataType="System.String"/>
|
|
<Column Name="mobileTelephone" DataType="System.String"/>
|
|
<Column Name="isVip" DataType="System.String"/>
|
|
<Column Name="medicalStartDate" DataType="System.String"/>
|
|
<Column Name="medicalTypeName" DataType="System.String"/>
|
|
<Column Name="personnelTypeName" DataType="System.String"/>
|
|
<Column Name="medicalPackageOrCustomerOrgGroupName" DataType="System.String"/>
|
|
<Column Name="summaryDoctorName" DataType="System.String"/>
|
|
<Column Name="summaryDate" DataType="System.String"/>
|
|
<Column Name="auditDoctorName" DataType="System.String"/>
|
|
<Column Name="auditDate" DataType="System.String"/>
|
|
<Column Name="medicalCenterId" DataType="System.String"/>
|
|
<Column Name="medicalCenterName" DataType="System.String"/>
|
|
<Column Name="medicalCenterAddress" DataType="System.String"/>
|
|
<Column Name="medicalCenterTelphone" DataType="System.String"/>
|
|
<Column Name="maritalStatusName" DataType="System.String"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="resItemType" ReferenceName="Data.resItemType" DataType="System.Int32" Enabled="true">
|
|
<Column Name="itemTypeId" DataType="System.String"/>
|
|
<Column Name="itemTypeName" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
<Column Name="medicalReportTypeId" DataType="System.String"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="resAsbitem" ReferenceName="Data.resAsbitem" DataType="System.Int32" Enabled="true">
|
|
<Column Name="itemTypeId" DataType="System.String"/>
|
|
<Column Name="asbitemNames" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
<Column Name="checkDoctorName" DataType="System.String"/>
|
|
<Column Name="checkDate" DataType="System.String"/>
|
|
<Column Name="absOrderNo" DataType="System.Int64"/>
|
|
<Column Name="summarysText" DataType="System.String"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="res" ReferenceName="Data.res" DataType="System.Int32" Enabled="true">
|
|
<Column Name="asbitemNames" DataType="System.String"/>
|
|
<Column Name="itemId" DataType="System.String"/>
|
|
<Column Name="itemName" DataType="System.String"/>
|
|
<Column Name="result" DataType="System.String"/>
|
|
<Column Name="referenceRangeValue" DataType="System.String"/>
|
|
<Column Name="criticalRangeValue" DataType="System.String"/>
|
|
<Column Name="unit" DataType="System.String"/>
|
|
<Column Name="reportFontColor" DataType="System.Int64"/>
|
|
<Column Name="reportBackgroundColor" DataType="System.Int64"/>
|
|
<Column Name="reportPrompt" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="resPic" ReferenceName="Data.resPic" DataType="System.Int32" Enabled="true">
|
|
<Column Name="asbitemNames" DataType="System.String"/>
|
|
<Column Name="pictureFileName" DataType="System.String"/>
|
|
<Column Name="pictureBase64" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="resSum" ReferenceName="Data.resSum" DataType="System.Int32" Enabled="true">
|
|
<Column Name="asbitemNames" DataType="System.String"/>
|
|
<Column Name="summary" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="sug" ReferenceName="Data.sug" DataType="System.Int32" Enabled="true">
|
|
<Column Name="suggestionTitle" DataType="System.String"/>
|
|
<Column Name="suggestionFlag" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
<Column Name="medicalText" DataType="System.String"/>
|
|
<Column Name="reasonText" DataType="System.String"/>
|
|
<Column Name="guideText" DataType="System.String"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="sugReason" ReferenceName="Data.sugReason" DataType="System.Int32" Enabled="true">
|
|
<Column Name="suggestionTitle" DataType="System.String"/>
|
|
<Column Name="suggestionContent" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="sugGuide" ReferenceName="Data.sugGuide" DataType="System.Int32" Enabled="true">
|
|
<Column Name="suggestionTitle" DataType="System.String"/>
|
|
<Column Name="suggestionContent" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="sugMeical" ReferenceName="Data.sugMeical" DataType="System.Int32" Enabled="true">
|
|
<Column Name="suggestionTitle" DataType="System.String"/>
|
|
<Column Name="suggestionContent" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="summ" ReferenceName="Data.summ" DataType="System.Int32" Enabled="true">
|
|
<Column Name="summaryTitle" DataType="System.String"/>
|
|
<Column Name="summaryFlag" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="summContent" ReferenceName="Data.summContent" DataType="System.Int32" Enabled="true">
|
|
<Column Name="summaryTitle" DataType="System.String"/>
|
|
<Column Name="summaryContent" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="pic" ReferenceName="Data.pic" DataType="System.Int32" Enabled="true">
|
|
<Column Name="photo" DataType="System.String"/>
|
|
<Column Name="firstPage" DataType="System.String"/>
|
|
<Column Name="pageHeader" DataType="System.String"/>
|
|
<Column Name="pageFooter" DataType="System.String"/>
|
|
<Column Name="resultSign" DataType="System.String"/>
|
|
<Column Name="orgSign" DataType="System.String"/>
|
|
<Column Name="picExtOne" DataType="System.String"/>
|
|
<Column Name="picExtTwo" DataType="System.String"/>
|
|
<Column Name="picExtThree" DataType="System.String"/>
|
|
<Column Name="picExtFour" DataType="System.String"/>
|
|
<Column Name="picExtFive" DataType="System.String"/>
|
|
<Column Name="picExtSix" DataType="System.String"/>
|
|
<Column Name="picExtSeven" DataType="System.String"/>
|
|
<Column Name="picExtEight" DataType="System.String"/>
|
|
<Column Name="picExtNine" DataType="System.String"/>
|
|
<Column Name="picExtTen" DataType="System.String"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="dictMedType" ReferenceName="Data.dictMedType" DataType="System.Int32" Enabled="true">
|
|
<Column Name="medicalReportTypeId" DataType="System.String"/>
|
|
<Column Name="medicalReportTypeName" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="dictExamItemType" ReferenceName="Data.dictExamItemType" DataType="System.Int32" Enabled="true">
|
|
<Column Name="medicalReportTypeId" DataType="System.String"/>
|
|
<Column Name="itemTypeId" DataType="System.String"/>
|
|
<Column Name="itemTypePathCode" DataType="System.String"/>
|
|
<Column Name="itemTypeName" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<TableDataSource Name="dictNotExamItemType" ReferenceName="Data.dictNotExamItemType" DataType="System.Int32" Enabled="true">
|
|
<Column Name="medicalReportTypeId" DataType="System.String"/>
|
|
<Column Name="itemTypeId" DataType="System.String"/>
|
|
<Column Name="itemTypePathCode" DataType="System.String"/>
|
|
<Column Name="itemTypeName" DataType="System.String"/>
|
|
<Column Name="displayOrder" DataType="System.Int64"/>
|
|
</TableDataSource>
|
|
<Relation Name="resItemType_resAsbitem" ParentDataSource="resItemType" ChildDataSource="resAsbitem" ParentColumns="itemTypeId" ChildColumns="itemTypeId" Enabled="true"/>
|
|
<Relation Name="resAsbitem_res" ParentDataSource="resAsbitem" ChildDataSource="res" ParentColumns="asbitemNames" ChildColumns="asbitemNames" Enabled="true"/>
|
|
<Relation Name="resAsbitem_resPic" ParentDataSource="resAsbitem" ChildDataSource="resPic" ParentColumns="asbitemNames" ChildColumns="asbitemNames" Enabled="true"/>
|
|
<Relation Name="resAsbitem_resSum" ParentDataSource="resAsbitem" ChildDataSource="resSum" ParentColumns="asbitemNames" ChildColumns="asbitemNames" Enabled="true"/>
|
|
<Relation Name="sug_sugGuide" ParentDataSource="sug" ChildDataSource="sugGuide" ParentColumns="suggestionTitle" ChildColumns="suggestionTitle" Enabled="true"/>
|
|
<Relation Name="sug_sugMeical" ParentDataSource="sug" ChildDataSource="sugMeical" ParentColumns="suggestionTitle" ChildColumns="suggestionTitle" Enabled="true"/>
|
|
<Relation Name="sug_sugReason" ParentDataSource="sug" ChildDataSource="sugReason" ParentColumns="suggestionTitle" ChildColumns="suggestionTitle" Enabled="true"/>
|
|
<Relation Name="summ_summContent" ParentDataSource="summ" ChildDataSource="summContent" ParentColumns="summaryTitle" ChildColumns="summaryTitle" Enabled="true"/>
|
|
<Relation Name="dictMedType_resItemType" ParentDataSource="dictMedType" ChildDataSource="resItemType" ParentColumns="medicalReportTypeId" ChildColumns="medicalReportTypeId" Enabled="true"/>
|
|
<Relation Name="dictMedType_dictExamItemType" ParentDataSource="dictMedType" ChildDataSource="dictExamItemType" ParentColumns="medicalReportTypeId" ChildColumns="medicalReportTypeId" Enabled="true"/>
|
|
<Parameter Name="printer" DataType="System.String"/>
|
|
<Parameter Name="hisLog" DataType="System.String"/>
|
|
<Parameter Name="peisReportFirstPage" DataType="System.String"/>
|
|
<Parameter Name="peisReportPageHeader" DataType="System.String"/>
|
|
<Parameter Name="peisReportPageFooter" DataType="System.String"/>
|
|
<Parameter Name="LTS" DataType="System.String"/>
|
|
<Parameter Name="firstPage" DataType="System.String"/>
|
|
<Parameter Name="pageHeader" DataType="System.String"/>
|
|
<Parameter Name="pageFooter" DataType="System.String"/>
|
|
<Parameter Name="orgSign" DataType="System.String"/>
|
|
<Parameter Name="picExtOne" DataType="System.String"/>
|
|
<Parameter Name="resultSign" DataType="System.String"/>
|
|
</Dictionary>
|
|
<ReportPage Name="PHeader">
|
|
<ReportTitleBand Name="ReportTitle2" Width="718.2" Height="994.8" PrintOnBottom="true">
|
|
<TextObject Name="Text40" Left="9.45" Top="28.35" Width="708.75" Height="113.4" Text="[pinfo.medicalCenterName]" HorzAlign="Center" Font="楷体, 36pt, style=Bold"/>
|
|
<TextObject Name="Text41" Left="9.45" Top="189" Width="699.3" Height="37.8" Text="健 康 体 检 报 告" HorzAlign="Center" Font="楷体, 28pt, style=Bold"/>
|
|
<TextObject Name="Text43" Left="189" Top="311.85" Width="94.5" Height="18.9" Text="档 案 号:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text44" Left="189" Top="368.55" Width="94.5" Height="18.9" Text="单 位:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text46" Left="189" Top="425.25" Width="94.5" Height="18.9" Text="姓 名:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text47" Left="189" Top="481.95" Width="94.5" Height="18.9" Text="性 别:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text48" Left="189" Top="538.65" Width="94.5" Height="18.9" Text="体检日期:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text49" Left="189" Top="595.35" Width="94.5" Height="18.9" Text="联系电话:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text51" Left="283.5" Top="292.95" Width="217.35" Height="56.7" Border.Lines="Bottom" Text="[pinfo.patientNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text52" Left="283.5" Top="349.65" Width="217.35" Height="56.7" Border.Lines="Bottom" Text="[pinfo.customerOrgName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text54" Left="283.5" Top="406.35" Width="217.35" Height="56.7" Border.Lines="Bottom" Text="[pinfo.patientName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text55" Left="283.5" Top="463.05" Width="47.25" Height="56.7" Border.Lines="Bottom" Text="[pinfo.sexName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text56" Left="283.5" Top="519.75" Width="217.35" Height="56.7" Border.Lines="Bottom" Text="[pinfo.medicalStartDate]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text57" Left="283.5" Top="576.45" Width="217.35" Height="56.7" Border.Lines="Bottom" Text="[pinfo.mobileTelephone]" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text59" Top="966.45" Width="595.35" Height="28.35" Text="体检报告说明:本报告仅用于检查,不做任何其他用途" VertAlign="Bottom" Font="楷体, 14pt, style=Bold"/>
|
|
<TextObject Name="Text1" Left="4" Top="924.65" Width="349.65" Height="18.9" Text="本院健康咨询电话:[pinfo.medicalCenterTelphone]" Font="楷体, 10pt"/>
|
|
<TextObject Name="Text2" Left="4" Top="946.65" Width="708.75" Height="18.9" Text="本院地址:[pinfo.medicalCenterAddress]" VertAlign="Bottom" Font="楷体, 10pt"/>
|
|
<LineObject Name="Line5" Top="990.8" Width="718.2"/>
|
|
<PictureObject Name="Picture2" Left="217.8" Top="652.05" Width="255.15" Height="217.35" Visible="false" DataColumn="pic.firstPage"/>
|
|
<TextObject Name="Text82" Left="335.1" Top="481.95" Width="94.5" Height="18.9" Text="年 龄:" HorzAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text83" Left="427.6" Top="463.05" Width="75.6" Height="56.7" Border.Lines="Bottom" Text="[pinfo.age]岁" HorzAlign="Center" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<BarcodeObject Name="Barcode1" Left="585.55" Top="2.95" Width="126.25" Height="47.25" BeforePrintEvent="Barcode1_BeforePrint" Text="123456780123" ShowText="false" Barcode="Code128" Barcode.AutoEncode="true"/>
|
|
<TextObject Name="Text16" Left="593.45" Top="52.65" Width="103.95" Height="18.9" Text="[pinfo.patientRegisterNo]" HorzAlign="Center"/>
|
|
</ReportTitleBand>
|
|
<PageFooterBand Name="PageFooter3" Top="998.8" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text60" Left="401.81" Top="10.96" Width="311.85" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PAsbitem">
|
|
<ReportTitleBand Name="ReportTitle1" Width="718.2" Height="585.9">
|
|
<TextObject Name="Text3" Top="18.9" Width="94.5" Height="18.9" Text="体检编号:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text84" Top="47.25" Width="94.5" Height="18.9" Text="性 别:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text85" Top="75.6" Width="94.5" Height="18.9" Text="身份证号:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text86" Top="103.95" Width="94.5" Height="18.9" Text="联系电话:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text87" Top="151.2" Width="94.5" Height="18.9" Text="单位:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text4" Left="94.5" Top="18.9" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text88" Left="94.5" Top="47.25" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.sexName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text89" Left="94.5" Top="75.6" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.idNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text90" Left="94.5" Top="103.95" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.mobileTelephone]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text91" Left="94.5" Top="132.3" Width="255.15" Height="37.8" Border.Lines="Bottom" Text="[pinfo.customerOrgName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text92" Left="349.65" Top="18.9" Width="94.5" Height="18.9" Text="姓 名:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text93" Left="349.65" Top="47.25" Width="94.5" Height="18.9" Text="年 龄:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text94" Left="349.65" Top="75.6" Width="94.5" Height="18.9" Text="体检日期:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text95" Left="349.65" Top="103.95" Width="94.5" Height="18.9" Text="体检类型:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text96" Left="349.65" Top="151.2" Width="94.5" Height="18.9" Text="体检套餐:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text97" Left="538.65" Top="47.25" Width="94.5" Height="18.9" Text="婚 否:" HorzAlign="Right" VertAlign="Bottom" Font="微软雅黑, 10pt, style=Bold"/>
|
|
<TextObject Name="Text98" Left="444.15" Top="18.9" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text99" Left="444.15" Top="47.25" Width="94.5" Height="18.9" Border.Lines="Bottom" Text="[pinfo.age]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text100" Left="633.15" Top="47.25" Width="75.6" Height="18.9" Border.Lines="Bottom" Text="[pinfo.maritalStatusName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text101" Left="444.15" Top="75.6" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.medicalStartDate]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text102" Left="444.15" Top="103.95" Width="170.1" Height="18.9" Border.Lines="Bottom" Text="[pinfo.medicalTypeName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text103" Left="444.15" Top="132.3" Width="264.6" Height="37.8" Border.Lines="Bottom" Text="[pinfo.medicalPackageOrCustomerOrgGroupName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<LineObject Name="Line6" Top="179.55" Width="718.2" Border.Width="4"/>
|
|
<TextObject Name="Text5" Top="198.45" Width="179.55" Height="18.9" Text="阅读本报告的提示:" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text6" Left="47.25" Top="220.8" Width="661.5" Height="37.8" Text="您本次体检报告由健康信息、本次体检主要阳性发现和异常情况、医生建议及本次体检结果等部分组成。" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text104" Left="47.25" Top="269.05" Width="661.5" Height="37.8" Text="检验报告单中“参考范围”是根据统计学原理,从一群正常人数据中统计出来的,此参考范围只涵盖95%的人,所以有5%正常人的结果不在此范围内;" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text7" Left="10" Top="226.8" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text105" Left="9.45" Top="269.05" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text106" Left="47.25" Top="317.3" Width="661.5" Height="56.7" Text="由于影像学检查有其自身的特点和限制,不同个体在病变的不同阶段对检查的敏感性会有所不同。所谓某项检查“未见异常”,只提示该项检查未发现它所显示的病变,其准确性是相对而言的。" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text107" Left="47.25" Top="384.45" Width="661.5" Height="56.7" Text="您的体检报告结论是基于您提供的健康信息及本次临床检查结果,隐瞒和错误的信息都可能会误导医生做出错误的判断。如果您提供的健康信息不完整,可能会导致相关检查结论有偏差。" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text108" Left="47.25" Top="451.6" Width="661.5" Height="28.35" Text="因为检查方法的不同,针对同一器官或者系统的检查结果可能会有所差异。" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text109" Left="47.25" Top="490.4" Width="661.5" Height="37.8" Text="由于体检选项、检查方法及医学本身的局限性,本次体检未见异常并不代表没有疾病,如您有不适症状,请及时就医。" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text110" Left="9.45" Top="317.3" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text111" Left="9.45" Top="384.45" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text112" Left="9.45" Top="459.05" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text113" Left="9.45" Top="490.4" Width="28.35" Height="18.9" Text="·" HorzAlign="Center" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<LineObject Name="Line7" Top="538.65" Width="718.2" Border.Width="2"/>
|
|
<TextObject Name="Text8" Left="278.78" Top="548.1" Width="160.65" Height="28.35" Text="检查项目情况" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 16pt"/>
|
|
<LineObject Name="Line1" Left="-9.45" Top="585.9" Width="727.65" Border.Style="Dash"/>
|
|
</ReportTitleBand>
|
|
<DataBand Name="Data4" Top="589.9" Width="359.1" Height="26.46" DataSource="resAsbitem" Columns.Count="2">
|
|
<TextObject Name="Text9" Left="85.05" Top="4" Width="264.6" Height="18.9" Text="[Row#]、[resAsbitem.asbitemNames] " Font="楷体, 14pt"/>
|
|
<Sort>
|
|
<Sort Expression="[resAsbitem.resItemType.dictMedType.displayOrder]"/>
|
|
<Sort Expression="[resAsbitem.resItemType.displayOrder]"/>
|
|
<Sort Expression="[resAsbitem.displayOrder]"/>
|
|
</Sort>
|
|
</DataBand>
|
|
<PageFooterBand Name="PageFooter4" Top="620.36" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text116" Left="467.96" Top="11" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text117" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text118" Left="207.45" Top="10.96" Width="236.25" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text119" Left="368.1" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<LineObject Name="Line2" Width="718.2" Border.Style="Dash"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PsumAsug">
|
|
<GroupHeaderBand Name="GroupHeader1" Top="30.46" Width="718.2" Height="26.46" Condition="[summContent.summ.displayOrder]" SortOrder="Descending">
|
|
<TextObject Name="Text29" Left="37.8" Top="4" Width="207.9" Height="18.9" Text="[summContent.summ.summaryTitle]" Font="楷体, 10pt"/>
|
|
<DataHeaderBand Name="DataHeader1" Width="718.2" Height="26.46">
|
|
<TextObject Name="Text22" Left="9.45" Top="4.45" Width="151.2" Height="18.9" Text="异常结果汇总:" Font="楷体, 10pt"/>
|
|
</DataHeaderBand>
|
|
<DataBand Name="Data1" Top="60.92" Width="718.2" Height="26.46" CanGrow="true" CanBreak="true" DataSource="summContent">
|
|
<TextObject Name="Text28" Left="94.5" Top="4.45" Width="614.25" Height="18.9" CanGrow="true" Text="[summContent.summaryContent]" Font="楷体, 10pt"/>
|
|
<Sort>
|
|
<Sort Expression="[summContent.displayOrder]"/>
|
|
</Sort>
|
|
</DataBand>
|
|
</GroupHeaderBand>
|
|
<GroupHeaderBand Name="GroupHeader2" Top="121.84" Width="718.2" Height="28.35" Condition="[sug.suggestionTitle]">
|
|
<TextObject Name="Text30" Left="28.35" Top="5" Width="661.5" Height="18.9" Text="[IIf([sug.suggestionTitle]=="","","【"+[sug.suggestionTitle]+"】")]" Font="楷体, 12pt, style=Bold"/>
|
|
<DataHeaderBand Name="DataHeader2" Top="91.38" Width="718.2" Height="26.46">
|
|
<TextObject Name="Text124" Left="9.45" Top="2" Width="151.2" Height="18.9" Text="健康建议:" Font="楷体, 10pt"/>
|
|
</DataHeaderBand>
|
|
<DataBand Name="Data2" Top="154.19" Width="718.2" Height="28.8" CanGrow="true" CanShrink="true" DataSource="sug">
|
|
<TextObject Name="Text32" Left="94.5" Top="0.45" Width="614.25" Height="28.35" CanGrow="true" CanShrink="true" GrowToBottom="true" Text="[sug.medicalText] [sug.reasonText] [sug.guideText]" Font="楷体, 12pt"/>
|
|
</DataBand>
|
|
</GroupHeaderBand>
|
|
<ReportSummaryBand Name="ReportSummary1" Top="186.99" Width="718.2" Height="264.6" CanGrow="true">
|
|
<TextObject Name="Text10" Left="226.8" Top="2.45" Width="170.1" Height="18.9" Text="初审医生:[pinfo.summaryDoctorName]" VertAlign="Center" Font="微软雅黑, 12pt"/>
|
|
<TextObject Name="Text11" Left="406.35" Top="2.45" Width="179.55" Height="18.9" Text="主检医生:[pinfo.auditDoctorName]" VertAlign="Center" Font="微软雅黑, 12pt"/>
|
|
<PictureObject Name="Picture1" Left="66.15" Top="9.45" Width="226.8" Height="122.85" DataColumn="pic.orgSign"/>
|
|
</ReportSummaryBand>
|
|
<PageFooterBand Name="PageFooter1" Top="455.59" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text120" Left="467.96" Top="10.96" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text121" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text122" Left="212.36" Top="10.96" Width="236.25" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text123" Left="373.01" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PResLis">
|
|
<GroupHeaderBand Name="GroupHeader3" Width="718.2" Condition="[res.resAsbitem.resItemType.dictMedType.displayOrder]">
|
|
<GroupHeaderBand Name="GroupHeader6" Top="4" Width="718.2" Condition="[res.resAsbitem.resItemType.displayOrder]">
|
|
<GroupHeaderBand Name="GroupHeader5" Top="8" Width="718.2" Height="77.05" Condition="[res.resAsbitem.displayOrder]">
|
|
<TextObject Name="Text64" Left="346.25" Top="5.45" Width="198.45" Height="47.25" Fill.Color="WhiteSmoke" Text="[res.resAsbitem.checkDate]" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text67" Left="620.3" Top="5.45" Width="94.5" Height="47.25" Fill.Color="WhiteSmoke" Text="[res.resAsbitem.checkDoctorName]" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text66" Left="544.7" Top="5.45" Width="75.6" Height="47.25" Fill.Color="WhiteSmoke" Text="检查人:" HorzAlign="Right" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text65" Left="252.5" Top="5.45" Width="94.5" Height="47.25" Fill.Color="WhiteSmoke" Text="检查时间:" HorzAlign="Right" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text62" Left="-6.05" Top="5.45" Width="264.6" Height="47.25" Fill.Color="WhiteSmoke" Text="【[res.resAsbitem.asbitemNames]】" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text69" Left="245.7" Top="48.7" Width="274.05" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="检查结果" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text68" Top="48.7" Width="245.7" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="项目名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text70" Left="519.75" Top="48.7" Width="56.7" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="提示" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text72" Left="576.45" Top="48.7" Width="132.3" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="参考值" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<DataBand Name="Data3" Top="89.05" Width="718.2" Height="28.35" CanGrow="true" DataSource="res" Filter="[res.resAsbitem.resItemType.medicalReportTypeId] !="3"">
|
|
<TextObject Name="Text63" Width="245.7" Height="28.35" Border.Lines="All" Border.Width="0.5" CanGrow="true" GrowToBottom="true" CanBreak="false" Text="[res.itemName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10pt"/>
|
|
<TextObject Name="Text73" Left="245.7" Width="274.05" Height="28.35" Border.Lines="All" Border.Width="0.5" CanGrow="true" GrowToBottom="true" BeforePrintEvent="Text73_BeforePrint" CanBreak="false" Text="[res.result] [res.unit]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10pt"/>
|
|
<TextObject Name="Text74" Left="519.75" Width="56.7" Height="28.35" Border.Lines="Right, Top, Bottom" Border.Width="0.5" CanGrow="true" GrowToBottom="true" CanBreak="false" Text="[res.reportPrompt]" HorzAlign="Center" VertAlign="Center" WordWrap="false" Font="楷体, 10pt"/>
|
|
<TextObject Name="Text76" Left="576.45" Width="132.3" Height="28.35" Border.Lines="All" Border.Width="0.5" CanGrow="true" GrowToBottom="true" CanBreak="false" Text="[res.referenceRangeValue]" HorzAlign="Center" VertAlign="Center" WordWrap="false" Font="楷体, 10pt"/>
|
|
<Sort>
|
|
<Sort Expression="[res.displayOrder]"/>
|
|
</Sort>
|
|
</DataBand>
|
|
<GroupFooterBand Name="GroupFooter3" Top="121.4" Width="718.2" Height="37.8" CanGrow="true">
|
|
<TextObject Name="Text81" Left="415.8" Top="10.45" Width="292.95" Height="18.9" Visible="false" Fill.Color="White" AfterDataEvent="Text81_AfterData" Text="红豚体检管理系统演示版,数据无效" VertAlign="Center" Font="楷体, 12pt, style=Bold" TextFill.Color="Red"/>
|
|
<TextObject Name="Text143" Top="6" Width="94.5" Height="18.9" CanGrow="true" Text="诊断结论:" HorzAlign="Right" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text144" Left="80.89" Top="6" Width="633.15" Height="18.9" CanGrow="true" GrowToBottom="true" Text="[res.resAsbitem.summarysText]" Font="楷体, 12pt"/>
|
|
</GroupFooterBand>
|
|
</GroupHeaderBand>
|
|
</GroupHeaderBand>
|
|
</GroupHeaderBand>
|
|
<PageFooterBand Name="PageFooter2" Top="163.2" Width="718.2" Height="39.25">
|
|
<TextObject Name="Text80" Left="467.95" Top="12.45" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text77" Left="4.55" Top="10.9" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text114" Left="207" Top="10.96" Width="217.35" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text115" Left="367.65" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PResPacs">
|
|
<GroupHeaderBand Name="GroupHeader4" Width="718.2" Height="78.6" Condition="[res.resAsbitem.displayOrder]">
|
|
<TextObject Name="Text136" Left="252.55" Top="5" Width="94.5" Height="47.25" Fill.Color="WhiteSmoke" Text="检查时间:" HorzAlign="Right" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text137" Left="346.15" Top="5" Width="198.45" Height="47.25" Fill.Color="WhiteSmoke" Text="[res.resAsbitem.checkDate]" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text135" Left="544.6" Top="5" Width="75.6" Height="47.25" Fill.Color="WhiteSmoke" Text="检查人:" HorzAlign="Right" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text138" Left="620.2" Top="5" Width="94.5" Height="47.25" Fill.Color="WhiteSmoke" Text="[res.resAsbitem.checkDoctorName]" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text125" Left="-5.95" Top="5" Width="264.6" Height="47.25" Fill.Color="WhiteSmoke" Text="【[res.resAsbitem.asbitemNames]】" VertAlign="Center" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text126" Top="49.25" Width="245.7" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="项目名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text127" Left="245.7" Top="49.25" Width="463.05" Height="28.35" Border.Lines="All" Border.Width="0.5" Text="检查结果" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
|
|
<DataBand Name="Data5" Top="82.6" Width="718.2" Height="28.35" CanGrow="true" CanBreak="true" DataSource="res" Filter="[res.resAsbitem.resItemType.medicalReportTypeId]=="3"" KeepDetail="true">
|
|
<TextObject Name="Text131" Top="-1" Width="245.7" Height="28.35" Border.Lines="All" Border.Width="0.5" CanGrow="true" GrowToBottom="true" Text="[res.itemName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10pt"/>
|
|
<TextObject Name="Text132" Left="245.7" Top="-1" Width="463.05" Height="28.35" Border.Lines="All" Border.Width="0.5" CanGrow="true" GrowToBottom="true" Text="[res.result]" VertAlign="Center" Font="楷体, 10pt"/>
|
|
<Sort>
|
|
<Sort Expression="[res.displayOrder]"/>
|
|
</Sort>
|
|
</DataBand>
|
|
<GroupFooterBand Name="GroupFooter2" Top="114.95" Width="718.2" Height="34.78" CanGrow="true" CanBreak="true">
|
|
<TextObject Name="Text12" Top="6.99" Width="94.5" Height="18.9" CanGrow="true" GrowToBottom="true" Text="诊断结论:" HorzAlign="Right" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text13" Left="81.05" Top="6.99" Width="614.25" Height="18.9" CanGrow="true" GrowToBottom="true" Text="[res.resAsbitem.summarysText]" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text130" Left="434.7" Top="6" Width="283.5" Height="18.9" Visible="false" Fill.Color="White" AfterDataEvent="Text81_AfterData" Text="红豚体检管理系统演示版,数据无效" VertAlign="Center" Font="楷体, 12pt, style=Bold" TextFill.Color="Red"/>
|
|
</GroupFooterBand>
|
|
</GroupHeaderBand>
|
|
<PageFooterBand Name="PageFooter5" Top="153.73" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text139" Left="463.4" Top="11" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text140" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text141" Left="202.45" Top="10.96" Width="255.15" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text142" Left="363.1" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PNutritionTxt">
|
|
<ReportTitleBand Name="ReportTitle3" Width="718.2" Height="994.9">
|
|
<TextObject Name="Text14" Left="18.9" Top="9.45" Width="113.4" Height="28.35" Text="营养指导" Font="宋体, 18pt"/>
|
|
<TextObject Name="Text15" Left="47.25" Top="56.7" Width="604.8" Height="132.3" Text="低能量膳食适应症 1.需要减重者,如单纯性肥胖 2.为了控制病情减少机体代谢负担如:高脂血症、高血压、冠心病 宜选食物:粗粮、豆制品、蔬菜和低糖水果等。 烹调方法:宜用蒸、拌、炖等无油的做法,忌用油炸、油煎等多油的做法 忌(少)食物:肥腻的食物和甜食,如肥肉动物油脂、花生、糖果、甜点心、蔗糖和蜂蜜等" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text145" Left="47.25" Top="198.45" Width="604.8" Height="75.6" Text="限脂肪膳食适应症 1.胆囊炎、胆结石、急慢性胰腺炎、脂肪消化不良的患者(如:肥胖症) 宜选食物:粗粮、豆制品、蔬菜和低糖水果等。 烹调方法:宜用蒸、拌、炖等无油的做法。" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text146" Left="47.25" Top="283.5" Width="604.8" Height="75.6" Text="高膳食纤维膳食适应症 1.高胆固醇血症、高甘油三脂血症、高脂蛋白血症 2.高血压、动脉粥样硬化等 宜选食物:谷类、薯类、豆类及蔬菜水果,粗粮、韭菜、芹菜等" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text147" Left="47.25" Top="368.55" Width="604.8" Height="56.7" Text="低盐膳食适应症 如高血压、肝硬化腹水、肾脏疾病及心力衰竭。 忌用:一切咸菜、 酱豆腐、甜面酱咸肉、肥肠以及各种荤素罐头等。" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text148" Left="47.25" Top="434.7" Width="604.8" Height="113.4" Text="限嘌呤膳食适应症 1.高尿酸血症 2.特征性急性关节炎反复发作 3.痛风石性慢性关节炎 宜选食物:精细白米、胡萝卜、鸡蛋、牛奶、黄瓜、茄子、各种水果等。 禁(少)食物:动物内脏、鱼虾类、肉汁肉馅、豆类等。" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text149" Left="47.25" Top="557.55" Width="604.8" Height="132.3" Text="糖尿病膳食适应症糖尿病患者 1.合理控制能量,要求达到或者维持理想体重 2.保证碳水化合物摄入 3.适量的蛋白质 4.限制脂肪和胆固醇 5.供给充足的维生素和适量的矿物质 6.提供丰富的膳食纤维 7.遵循合理的餐次、定时定量得分原则" Font="宋体, 12pt"/>
|
|
<TextObject Name="Text150" Left="18.9" Top="708.75" Width="113.4" Height="28.35" Text="运动指南" Font="宋体, 18pt"/>
|
|
<TextObject Name="Text151" Left="47.25" Top="756" Width="604.8" Height="189" Text="1.跆拳道 适应办公室久坐人群 热量消耗约700千 卡/小时 2.游泳 适应膝关节受损、体重严重超标、减肥及增强体质的人群 热量消耗约650千 卡/小时 3.慢跑 适应瘦身、需要缓解压力、缓解亚健康以及心血管疾病的人群 热量消耗约650千 卡/小时 4.网球 适应减肥塑身人群 热量消耗约560千 卡/小时 5.自行车 适应膝关节受损、 超重、颈椎病和腰间盘突出的人群 热量消耗约560千 卡/小时" Font="宋体, 12pt"/>
|
|
</ReportTitleBand>
|
|
<PageFooterBand Name="PageFooter6" Top="998.9" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text152" Left="458.86" Top="10.96" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text153" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text154" Left="197.91" Top="10.96" Width="217.35" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text155" Left="358.56" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PTipTxt">
|
|
<ReportTitleBand Name="ReportTitle4" Width="718.2" Height="994.9">
|
|
<TextObject Name="Text156" Left="18.9" Top="9.45" Width="113.4" Height="28.35" Text="温馨提示" Font="宋体, 18pt"/>
|
|
<TextObject Name="Text157" Left="56.7" Top="47.25" Width="604.8" Height="576.45" Text="1.详情情况见各分科体检的体征描述和小结。感谢您来我院体检,如有问题请与我们联系,我们将竭诚为您服务!此报告仅为本次体检结果,不作任何诊断依据。 2.感谢您配合我们完成了本次健康体检。在此我们要提请您注意的是,目前,医学科技发展至今,对于疾病筛查仍有其局限性,检查的盲点以及健康体检未发现的异常,并不代表完全没有潜在性的疾病。医生所做的健康诊断及健康建议仅仅依据本次健康体检的结果而得出的。为了您的健康,我们建议您每年至少进行一次系统的健康体检。欢迎您再次来我院健康管理部进行健康体检! 3.面对感染过“新型冠状病毒感染”请勿过于担心。目前面对预防新冠感染,接种新冠疫苗,做好个人科学防护,仍是预防新冠病毒感染最有效的手段。对于“阳康”的您,及时检查身体,发现异常及时对症治疗,同时保持积极心态,可以通过深呼吸放松、音乐放松、冥想及做一些自己感兴趣事情等减轻压力。可通过与家人、朋友电话、网络交流和沟通,获取社会支持。保持规律生活,合理饮食,注意休息。 " Font="宋体, 12pt"/>
|
|
</ReportTitleBand>
|
|
<PageFooterBand Name="PageFooter7" Top="998.9" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text158" Left="454.32" Top="10.96" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text159" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text160" Left="202.82" Top="10.96" Width="236.25" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text161" Left="354.02" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
<ReportPage Name="PPicture">
|
|
<DataBand Name="Data6" Width="718.2" Height="994.9" CanGrow="true" DataSource="resPic">
|
|
<PictureObject Name="Picture3" Left="9.45" Width="699.3" Height="992.25" CanGrow="true" DataColumn="resPic.pictureFileName"/>
|
|
<Sort>
|
|
<Sort Expression="[resPic.displayOrder]"/>
|
|
</Sort>
|
|
</DataBand>
|
|
<PageFooterBand Name="PageFooter8" Top="998.9" Width="718.2" Height="39.31">
|
|
<TextObject Name="Text165" Left="363.47" Top="10.96" Width="302.4" Height="18.9" Text="姓名:[pinfo.patientName]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text162" Left="463.77" Top="10.96" Width="245.7" Height="18.9" Text="第[Page#]页/[TotalPages#]页" HorzAlign="Right" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text163" Left="4.54" Top="10.96" Width="189" Height="18.9" Text="上医治未病·关爱健康" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
<TextObject Name="Text164" Left="212.27" Top="10.96" Width="217.35" Height="18.9" Text="体检号:[pinfo.patientRegisterNo]" VertAlign="Bottom" Font="楷体, 12pt"/>
|
|
</PageFooterBand>
|
|
</ReportPage>
|
|
</Report>
|