如何使用 SumAll 属性?

发布于 2025-01-03 09:32:17 字数 169 浏览 1 评论 0原文

我有一份报告,其中包含由方法 TaxBase() 打印的列 TaxBase

在报告部分的末尾,我需要显示“税基总和”列。 我不知道怎么办!

也许属性 SumAll 可以提供帮助?但是,它是如何使用的呢?

I have a report with a column TaxBase printed by a method TaxBase().

At the end of my report section I need to display the Sum of TaxBase column.
I don't know how!

Maybe the property SumAll can help? But, how is it used?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2025-01-10 09:32:17

如果您使用页脚部分,设置 SumAll 属性将有助于计算报告总计。

页脚部分必须有一个总和控件(类 ReportSumControl)并引用 DataFieldName 属性中的求和字段。

这可以使用自动设计隐式完成。以报告TaxDeviation为例。它具有设置了 SumAll 属性的字段 TaxAmountTaxBaseAmount。页脚部分是在运行时为总计页脚部分和每个排序字段生成的,并将 AutoSum 属性设置为 Yes

如果通过在 ReportDesign1 节点上选择“生成设计”来生成设计,您可以清楚地看到这一点。

您可以使用 element.sumControlelement.sum 在代码中引用生成的总和。例如,这可用于计算贡献率(使用两种方法):

display ContributionRatio contributionRatioSum()
{
    SalesLine locSalesLine = this.last(tableNum(SalesLine));
    SalesAmount salesAmount = Currency::MSTAmount(element.sum(tableNum(SalesLine), fieldNum(SalesLine,LineAmount)), locSalesLine.CurrencyCode);
    return salesAmount ? 100.0 * dg(salesAmount, element.sumControl(identifierStr(costAmount))) : 0;
}

此方法计算 LineAmountCostAmount 销售行总和的贡献率。

Setting the SumAll property will help calculate report totals provided you use footer sections.

Your footer section has to have a sum control (of class ReportSumControl) and reference the summed field in the DataFieldName property.

This can done implicitly using an auto design. Take the report TaxDeviation as an example. It has the fields TaxAmount and TaxBaseAmount with the SumAll property set. The footer sections are generated at runtime for the grand total footer section and for each sort field with an AutoSum property set to Yes.

You can see this clearly if you generate the design by choosing "Generate design" on the ReportDesign1 node.

You can by code reference the generated sums by using element.sumControl or element.sum. This can for example be used to calculate contribution ratios (using both methods):

display ContributionRatio contributionRatioSum()
{
    SalesLine locSalesLine = this.last(tableNum(SalesLine));
    SalesAmount salesAmount = Currency::MSTAmount(element.sum(tableNum(SalesLine), fieldNum(SalesLine,LineAmount)), locSalesLine.CurrencyCode);
    return salesAmount ? 100.0 * dg(salesAmount, element.sumControl(identifierStr(costAmount))) : 0;
}

This method calculates the contribution ratio for a sales line sum of LineAmount and CostAmount.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文