本文整理汇总了C#中Ict.Petra.Client.MReporting.Logic.TRptCalculator.AddColumnFunctionLedgers方法的典型用法代码示例。如果您正苦于以下问题:C# TRptCalculator.AddColumnFunctionLedgers方法的具体用法?C# TRptCalculator.AddColumnFunctionLedgers怎么用?C# TRptCalculator.AddColumnFunctionLedgers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ict.Petra.Client.MReporting.Logic.TRptCalculator
的用法示例。
在下文中一共展示了TRptCalculator.AddColumnFunctionLedgers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReadControls
/// <summary>
/// Reads the selected values from the controls,
/// and stores them into the parameter system of FCalculator
///
/// </summary>
/// <param name="ACalculator"></param>
/// <param name="AReportAction"></param>
/// <returns>void</returns>
public void ReadControls(TRptCalculator ACalculator, TReportActionEnum AReportAction)
{
System.Int32 MaxDisplayColumns;
MaxDisplayColumns = TUC_ColumnHelper.ReadControls(ref FColumnParameters, ref ACalculator);
FPetraUtilsObject.FMaxDisplayColumns = MaxDisplayColumns;
for (int Counter = 0; Counter <= FColumnParameters.Get("MaxDisplayColumns").ToInt() - 1; Counter += 1)
{
String SelectedLedgers = FColumnParameters.Get("param_selected_ledgers", Counter).ToString(false);
if (SelectedLedgers.Length != 0)
{
ACalculator.AddColumnFunctionLedgers(Counter, "add",
StringHelper.StrSplit(SelectedLedgers, ","),
FColumnParameters.Get("param_calculation", Counter).ToString(), FColumnParameters.Get("param_ytd", Counter).ToBool());
}
}
// set the global param_ytd; that is needed for formatting the header of some reports
String ytdMixed = "";
for (int Counter = 0; Counter <= FColumnParameters.Get("MaxDisplayColumns").ToInt() - 1; ++Counter)
{
TVariant ParamYtd = FColumnParameters.Get("param_ytd", Counter);
if (!ParamYtd.IsZeroOrNull())
{
if (ytdMixed.Length == 0)
{
ytdMixed = ParamYtd.ToString();
}
if (ParamYtd.ToString() != ytdMixed)
{
ytdMixed = "mixed";
}
}
}
if (ytdMixed.Length != 0)
{
ACalculator.AddParameter("param_ytd", ytdMixed);
}
}