二开报表金额字段设置千分位分隔符
4人赞赏了该文章
1,815次浏览
编辑于2019年08月12日 10:37:54
添加表单插件,继承 AbstractSysReportPlugIn
///
/// 格式化,数值显示千分位
///
///
public override void FormatCellValue(FormatCellValueArgs args)
{
base.FormatCellValue(args);
if (args.Header.ColType == Kingdee.BOS.SqlStorageType.SqlDecimal)
{
decimal value = decimal.Parse(args.FormateValue);
//decimal afterValue = decimal.Round(value, 2, MidpointRounding.ToEven);
string afterValue = value.ToString("N");
args.FormateValue = afterValue;
}
}
推荐阅读