1、费用统计SQL调整,模板调整

dhzzyy
lsm 10 months ago
parent 6e3804b41d
commit e821f4c648
  1. 54
      PEIS/Model/StatisticalReportModel.cs
  2. 278
      PEIS/ReportFiles/CostCount.frx

@ -346,11 +346,8 @@ namespace PEIS.Model
? $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -363,18 +360,15 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee"
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode"
: $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -388,10 +382,10 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee ";
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode";
}
else if(status == 1)
{
@ -399,11 +393,8 @@ namespace PEIS.Model
? $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -416,18 +407,15 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee"
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode"
: $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -441,10 +429,10 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee ";
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode";
}
else
{
@ -452,11 +440,8 @@ namespace PEIS.Model
? $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -469,18 +454,15 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee"
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode "
: $@"SELECT
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
COUNT ( * ) AS Quantity,
SUM ( a.SettlePrice ) AS SettleFee,
b.Discount,
Convert(decimal(18,2),SUM ( a.Price ) * b.Discount / 10) AS Fee
FROM
@ -494,10 +476,10 @@ namespace PEIS.Model
a.FeeItemCode,
a.DeptName,
a.FeeItemName,
a.Unit,
a.SettlePrice,
a.Price,
b.Discount ORDER BY a.FeeItemCode,a.DeptName,Fee ";
b.Discount,
a.DeptCode
ORDER BY a.DeptCode,a.FeeItemCode ";
}
return DAOHelp.GetDataBySQL<EnrollmentFeeItem>(sql);

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="06/27/2023 00:02:11" ReportInfo.Modified="06/25/2024 00:54:26" ReportInfo.CreatorVersion="2022.1.0.0">
<Report ScriptLanguage="CSharp" ReportInfo.Created="06/27/2023 00:02:11" ReportInfo.Modified="07/12/2024 16:33:36" ReportInfo.CreatorVersion="2022.1.0.0">
<ScriptText>using System;
using System.Collections;
using System.Collections.Generic;
@ -30,34 +30,34 @@ namespace FastReport
{
DataSourceBase rowData = Report.GetDataSource(&quot;P&quot;);
if(deptName.Equals(rowData[&quot;DeptName&quot;].ToString()))
{
deptSum += Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
deptHisSum += Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
Cell38.Text = deptSum.ToString();
Cell50.Text = deptHisSum.ToString();
}else{
if(deptName == &quot;科室&quot;){
deptSum = Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
deptHisSum = Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
Cell38.Text = rowData[&quot;SettleFee&quot;].ToString();
Cell50.Text = rowData[&quot;Fee&quot;].ToString();
}else{
deptSum = Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
deptHisSum = Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
Cell38.Text = deptSum.ToString();
Cell50.Text = deptHisSum.ToString();
}
deptName = rowData[&quot;DeptName&quot;].ToString();
}
// if(deptName.Equals(rowData[&quot;DeptName&quot;].ToString()))
// {
// deptSum += Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
// deptHisSum += Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
//
// Cell38.Text = deptSum.ToString();
// Cell50.Text = deptHisSum.ToString();
// }else{
//
// if(deptName == &quot;科室&quot;){
//
// deptSum = Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
// deptHisSum = Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
//
// Cell38.Text = rowData[&quot;SettleFee&quot;].ToString();
// Cell50.Text = rowData[&quot;Fee&quot;].ToString();
//
// }else{
//
// deptSum = Convert.ToDouble(rowData[&quot;SettleFee&quot;].ToString());
// deptHisSum = Convert.ToDouble(rowData[&quot;Fee&quot;].ToString());
//
// Cell38.Text = deptSum.ToString();
// Cell50.Text = deptHisSum.ToString();
// }
//
// deptName = rowData[&quot;DeptName&quot;].ToString();
// }
}
}
}
@ -73,110 +73,148 @@ namespace FastReport
<Parameter Name="TotalPrice" DataType="System.String"/>
<Parameter Name="TotalFee" DataType="System.String"/>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="297" PaperHeight="210" RawPaperSize="9" Watermark.Font="宋体, 60pt">
<ColumnHeaderBand Name="ColumnHeader1" Width="1047.06" Height="103.95" PrintOn="FirstPage">
<TextObject Name="Text1" Width="1047.06" Height="56.7" Text="费用明细表" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 26pt, style=Bold"/>
<TableObject Name="Table1" Top="75.6" Width="1046.76" Height="28.35">
<TableColumn Name="Column1" Width="123.67"/>
<TableColumn Name="Column2" Width="274.87"/>
<TableColumn Name="Column3" Width="85.77"/>
<TableColumn Name="Column4" Width="85.87"/>
<TableColumn Name="Column5" Width="111.47"/>
<TableColumn Name="Column6" Width="111.47"/>
<TableColumn Name="Column25" Width="99.04"/>
<TableColumn Name="Column26" Width="59.72"/>
<TableColumn Name="Column33" Width="94.88"/>
<TableRow Name="Row1" Height="28.35">
<TableCell Name="Cell1" Border.Lines="All" Text="执行科室" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Text="收费项目" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell3" Border.Lines="All" Text="单位" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell4" Border.Lines="All" Text="数量" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell5" Border.Lines="All" Text="成本单价" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell26" Border.Lines="All" Text="成本金额" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell45" Border.Lines="All" Text="HIS单价" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell46" Border.Lines="All" Text="折扣" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell53" Border.Lines="All" Text="折后金额" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
</TableRow>
</TableObject>
<ReportPage Name="Page1" RawPaperSize="9" Watermark.Font="宋体, 60pt">
<ColumnHeaderBand Name="ColumnHeader1" Width="718.2" Height="75.6" PrintOn="FirstPage">
<TextObject Name="Text1" Width="718.2" Height="56.7" Text="费用明细表" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 26pt, style=Bold"/>
<TextObject Name="Text2" Top="56.7" Width="66.15" Height="18.9" Text="统计单位:" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 9pt"/>
<TextObject Name="Text5" Left="311.85" Top="56.7" Width="226.8" Height="18.9" CanBreak="false" Text="[DateBetween]" VertAlign="Center" WordWrap="false" Font="微软雅黑, 9pt"/>
<TextObject Name="Text5" Left="311.85" Top="56.7" Width="189" Height="18.9" CanBreak="false" Text="[DateBetween]" VertAlign="Center" WordWrap="false" Font="微软雅黑, 9pt"/>
<TextObject Name="Text3" Left="66.15" Top="56.7" Width="179.55" Height="18.9" CanBreak="false" Text="[HospitalName]" VertAlign="Center" WordWrap="false" Font="微软雅黑, 9pt"/>
<TextObject Name="Text4" Left="245.7" Top="56.7" Width="66.15" Height="18.9" Text="统计日期:" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 9pt"/>
<TextObject Name="Text6" Left="538.65" Top="56.7" Width="66.15" Height="18.9" Text="统计科室:" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 9pt"/>
<TextObject Name="Text7" Left="604.8" Top="56.7" Width="113.4" Height="18.9" CanBreak="false" Text="[DeptName]" VertAlign="Center" WordWrap="false" Font="微软雅黑, 9pt"/>
<TextObject Name="Text6" Left="500.85" Top="56.7" Width="66.15" Height="18.9" Text="统计科室:" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 9pt"/>
<TextObject Name="Text7" Left="567" Top="56.7" Width="151.2" Height="18.9" CanBreak="false" Text="[DeptName]" AutoShrink="FontWidth" VertAlign="Center" WordWrap="false" Font="微软雅黑, 9pt"/>
</ColumnHeaderBand>
<GroupHeaderBand Name="GroupHeader1" Top="105.55" Width="1047.06" Visible="false" Condition="[P.DeptName]" SortOrder="None">
<DataBand Name="CostCount" Top="107.15" Width="1047.06" Height="28.35" CanGrow="true" CanShrink="true" AfterDataEvent="CostCount_AfterData" KeepTogether="true">
<TableObject Name="Table2" Width="1047.04" Height="28.35">
<TableColumn Name="Column7" Width="123.7"/>
<TableColumn Name="Column8" Width="274.9"/>
<TableColumn Name="Column9" Width="85.9"/>
<TableColumn Name="Column10" Width="85.9"/>
<TableColumn Name="Column11" Width="111.6"/>
<TableColumn Name="Column12" Width="111.6"/>
<TableColumn Name="Column27" Width="98.37"/>
<TableColumn Name="Column28" Width="60.57"/>
<TableColumn Name="Column34" Width="94.5"/>
<TableRow Name="Row2" Height="28.35" AutoSize="true">
<TableCell Name="Cell27" Border.Lines="All" Text="[P.DeptName]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell28" Border.Lines="All" Text="[P.FeeItemName]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell29" Border.Lines="All" Text="[P.Unit]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell30" Border.Lines="All" Text="[P.Quantity]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell31" Border.Lines="All" Text="[P.SettlePrice]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell32" Border.Lines="All" Text="[P.SettleFee]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="[P.Price]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[P.Discount]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell54" Border.Lines="All" Text="[P.Fee]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<GroupHeaderBand Name="GroupHeader1" Top="79.6" Width="718.2" Height="47.25" Condition="[P.DeptName]" SortOrder="None">
<TableObject Name="Table38" Top="18.9" Width="718.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column114" Width="359.1"/>
<TableColumn Name="Column115" Width="359.1"/>
<TableRow Name="Row47" Height="28.35">
<TableCell Name="Cell158" Fill.Color="Silver" Text="[P.DeptName]" VertAlign="Center" Font="微软雅黑, 12pt, style=Bold, Italic" ColSpan="2"/>
<TableCell Name="Cell159" Font="宋体, 9pt"/>
</TableRow>
</TableObject>
<GroupHeaderBand Name="GroupHeader2" Top="130.85" Width="718.2" Height="28.35" Condition="[P.FeeItemName]" SortOrder="None">
<TableObject Name="Table39" Width="718.2" Height="28.35" Fill.Color="Silver">
<TableColumn Name="Column116" Width="123.95"/>
<TableColumn Name="Column117" Width="265.7"/>
<TableColumn Name="Column118" Width="1.28"/>
<TableColumn Name="Column119" Width="86.15"/>
<TableColumn Name="Column120" Width="1.28"/>
<TableColumn Name="Column121" Width="83.4"/>
<TableColumn Name="Column122" Width="1.28"/>
<TableColumn Name="Column123" Width="60"/>
<TableColumn Name="Column124" Width="95.16"/>
<TableRow Name="Row48" Height="28.35">
<TableCell Name="Cell160" Border.Lines="All" Text="收费项目" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold" ColSpan="3"/>
<TableCell Name="Cell161" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell162" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell163" Border.Lines="All" Text="数量" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell164" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell165" Border.Lines="All" Text="单价" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell166" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell167" Border.Lines="All" Text="折扣" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
<TableCell Name="Cell168" Border.Lines="All" Text="折后金额" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt, style=Bold"/>
</TableRow>
</TableObject>
</DataBand>
<GroupFooterBand Name="GroupFooter1" Top="137.1" Width="1047.06" Height="28.35" CanGrow="true" CanShrink="true" KeepWithData="true">
<TableObject Name="Table3" Width="1047.04" Height="28.35" Fill.Color="InactiveBorder">
<TableColumn Name="Column13" Width="123.7"/>
<TableColumn Name="Column14" Width="274.9"/>
<TableColumn Name="Column15" Width="85.9"/>
<TableColumn Name="Column16" Width="85.9"/>
<TableColumn Name="Column17" Width="111.6"/>
<TableColumn Name="Column18" Width="111.6"/>
<TableColumn Name="Column29" Width="98.37"/>
<TableColumn Name="Column30" Width="155.07"/>
<TableRow Name="Row3" Height="28.35" AutoSize="true">
<TableCell Name="Cell33" Border.Lines="All" Fill.Color="InactiveBorder" Text="-[P.DeptName]-小计" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="5"/>
<TableCell Name="Cell34" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell35" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell36" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell37" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell38" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell49" Border.Lines="All" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
<DataBand Name="CostCount" Top="163.2" Width="718.2" Height="28.35" CanGrow="true" CanShrink="true" AfterDataEvent="CostCount_AfterData" KeepTogether="true">
<TableObject Name="Table6" Width="718.2" Height="28.35">
<TableColumn Name="Column43" Width="123.95"/>
<TableColumn Name="Column44" Width="265.7"/>
<TableColumn Name="Column45" Width="1.28"/>
<TableColumn Name="Column46" Width="86.15"/>
<TableColumn Name="Column47" Width="1.28"/>
<TableColumn Name="Column48" Width="83.4"/>
<TableColumn Name="Column49" Width="1.28"/>
<TableColumn Name="Column50" Width="60"/>
<TableColumn Name="Column51" Width="95.16"/>
<TableRow Name="Row6" MinHeight="28.35" Height="28.35" AutoSize="true">
<TableCell Name="Cell63" Border.Lines="All" Text="[P.FeeItemName]" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell64" Border.Lines="All" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell65" Border.Lines="All" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell66" Border.Lines="All" Text="[P.Quantity]" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="2"/>
<TableCell Name="Cell67" Border.Lines="All" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell68" Border.Lines="All" Text="[P.Price]" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="2"/>
<TableCell Name="Cell69" Border.Lines="All" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell70" Border.Lines="All" Text="[P.Discount]" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell71" Border.Lines="All" Text="[P.Fee]" VertAlign="Center" Font="微软雅黑, 10pt"/>
</TableRow>
</TableObject>
</DataBand>
<GroupFooterBand Name="GroupFooter2" Top="195.55" Width="718.2" Height="28.35" CanGrow="true" CanShrink="true">
<TableObject Name="Table40" Width="718.2" Height="28.35">
<TableColumn Name="Column125" Width="123.95"/>
<TableColumn Name="Column126" Width="265.7"/>
<TableColumn Name="Column127" Width="1.28"/>
<TableColumn Name="Column128" Width="86.15"/>
<TableColumn Name="Column129" Width="1.28"/>
<TableColumn Name="Column130" Width="83.4"/>
<TableColumn Name="Column131" Width="1.28"/>
<TableColumn Name="Column132" Width="60"/>
<TableColumn Name="Column133" Width="95.16"/>
<TableRow Name="Row49" MinHeight="28.35" Height="28.35" AutoSize="true">
<TableCell Name="Cell169" Border.Lines="All" Fill.Color="InactiveBorder" Text="-[P.FeeItemName]-小计" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell170" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell171" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell172" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="2"/>
<TableCell Name="Cell173" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell174" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell175" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell176" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell177" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
</TableRow>
</TableObject>
</GroupFooterBand>
</GroupHeaderBand>
<GroupFooterBand Name="GroupFooter1" Top="227.9" Width="718.2" Height="28.35" CanGrow="true" CanShrink="true" KeepWithData="true">
<TableObject Name="Table41" Width="718.2" Height="28.35">
<TableColumn Name="Column134" Width="123.95"/>
<TableColumn Name="Column135" Width="265.7"/>
<TableColumn Name="Column136" Width="1.28"/>
<TableColumn Name="Column137" Width="86.15"/>
<TableColumn Name="Column138" Width="1.28"/>
<TableColumn Name="Column139" Width="83.4"/>
<TableColumn Name="Column140" Width="1.28"/>
<TableColumn Name="Column141" Width="60"/>
<TableColumn Name="Column142" Width="95.16"/>
<TableRow Name="Row50" Height="28.35">
<TableCell Name="Cell178" Border.Lines="All" Fill.Color="InactiveBorder" Text="-[P.DeptName]-小计" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell179" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell180" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell181" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="2"/>
<TableCell Name="Cell182" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell183" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell184" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell185" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell186" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
</TableRow>
</TableObject>
</GroupFooterBand>
<DataFooterBand Name="DataFooter1" Top="167.05" Width="1047.06" Height="28.35">
<TableObject Name="Table5" Width="1047.04" Height="28.35" Fill.Color="InactiveBorder">
<TableColumn Name="Column35" Width="123.7"/>
<TableColumn Name="Column36" Width="274.9"/>
<TableColumn Name="Column37" Width="85.9"/>
<TableColumn Name="Column38" Width="85.9"/>
<TableColumn Name="Column39" Width="111.6"/>
<TableColumn Name="Column40" Width="111.6"/>
<TableColumn Name="Column41" Width="98.37"/>
<TableColumn Name="Column42" Width="155.07"/>
<TableRow Name="Row5" Height="28.35" AutoSize="true">
<TableCell Name="Cell55" Border.Lines="All" Fill.Color="InactiveBorder" Text="-总计-小计" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell56" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell57" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell58" Border.Lines="All" Fill.Color="InactiveBorder" Text="[TotalQuantity]" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell59" Border.Lines="All" Fill.Color="InactiveBorder" Text="[TotalSettlePrice]" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell60" Border.Lines="All" Fill.Color="InactiveBorder" Text="[TotalSettleFee]" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell61" Border.Lines="All" Text="[TotalPrice]" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell62" Border.Lines="All" Text="[TotalFee]" HorzAlign="Center" VertAlign="Center" Font="微软雅黑, 10pt"/>
<DataFooterBand Name="DataFooter1" Top="260.25" Width="718.2" Height="28.35">
<TableObject Name="Table42" Width="718.2" Height="28.35">
<TableColumn Name="Column143" Width="123.95"/>
<TableColumn Name="Column144" Width="265.7"/>
<TableColumn Name="Column145" Width="1.28"/>
<TableColumn Name="Column146" Width="86.15"/>
<TableColumn Name="Column147" Width="1.28"/>
<TableColumn Name="Column148" Width="83.4"/>
<TableColumn Name="Column149" Width="1.28"/>
<TableColumn Name="Column150" Width="60"/>
<TableColumn Name="Column151" Width="95.16"/>
<TableRow Name="Row51" Height="28.35">
<TableCell Name="Cell187" Border.Lines="All" Fill.Color="InactiveBorder" Text="-总计-小计" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="3"/>
<TableCell Name="Cell188" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell189" Border.Lines="All" Fill.Color="InactiveBorder" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell190" Border.Lines="All" Fill.Color="InactiveBorder" Text="[TotalFee]" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt" ColSpan="6"/>
<TableCell Name="Cell191" Border.Lines="All" Fill.Color="InactiveBorder" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell192" Border.Lines="All" Fill.Color="InactiveBorder" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell193" Border.Lines="All" Fill.Color="InactiveBorder" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell194" Border.Lines="All" Fill.Color="InactiveBorder" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
<TableCell Name="Cell195" Border.Lines="All" Fill.Color="InactiveBorder" HorzAlign="Right" VertAlign="Center" Font="微软雅黑, 10pt"/>
</TableRow>
</TableObject>
</DataFooterBand>
</GroupHeaderBand>
<PageFooterBand Name="PageFooter1" Printable="false" Top="197" Width="1047.06" Height="37.8">
<TextObject Name="Text8" Width="1047.06" Height="37.8" Text="第[Page#]页,共[TotalPages#]页" HorzAlign="Center" Font="微软雅黑, 10pt"/>
<PageFooterBand Name="PageFooter1" Printable="false" Top="292.6" Width="718.2" Height="37.8">
<TextObject Name="Text8" Width="718.2" Height="37.8" Text="第[Page#]页,共[TotalPages#]页" HorzAlign="Center" Font="微软雅黑, 10pt"/>
</PageFooterBand>
</ReportPage>
</Report>

Loading…
Cancel
Save