gpt4 book ai didi

c# - 如何在 Acumatica 发票报告 (AR.64.10.00) 中对金额字段进行文字表示?

转载 作者:行者123 更新时间:2023-11-30 14:49:49 24 4
gpt4 key购买 nike

如何在 Acumatica 发票报告 (AR.64.10.00) 中对金额字段进行文字表示?

enter image description here

enter image description here

最佳答案

ARInvoice DAC 的 DAC 扩展中创建一个未绑定(bind)字段。并使用 PX.Objects.AP.ToWords 属性。

public class ARInvoicePXExt : PXCacheExtension<ARInvoice>
{
#region UsrAmountToWords

public abstract class usrAmountToWords : IBqlField { }


[PX.Objects.AP.ToWords(typeof(ARInvoice.curyOrigDocAmt))]
public virtual string UsrAmountToWords { get; set; }

#endregion
}

在 AR.64.10.00 报告中使用 UsrAmountToWords 字段。

enter image description here

enter image description here

单词表示通过属性 PX.Objects.AP.ToWords 发生。而且这个开箱即用的单词表示只有英文。对于非英语单词表示,创建您自己的属性。 PX.Objects.AP.ToWords 的实现可以在…\App_Data\CodeRepository\PX.Objects\AP\Descriptor\Attribute.cs。

关于c# - 如何在 Acumatica 发票报告 (AR.64.10.00) 中对金额字段进行文字表示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38320680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com