问题描述
如何做到量场的单词表示在Acumatica发票报表(AR.64.10.00)
How to do word representation of amount field in Acumatica Invoice Report (AR.64.10.00)?
的
推荐答案
为 ARInvoice
DAC创建DAC扩展的未绑定字段。并使用 PX.Objects.AP.ToWords
属性。
Create an un-bound field in DAC Extension for ARInvoice
DAC. And use PX.Objects.AP.ToWords
attribute.
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
}
使用 UsrAmountToWords
在AR.64.10.00报表字段。
Use UsrAmountToWords
field in AR.64.10.00 report.
的 一>
字表示发生过的属性 PX.Objects.AP.ToWords
。和外箱这个词仅供英文。对于非英语单词表示,创建自己的属性。 PX.Objects.AP.ToWords
的实施可以在
... \App_Data\CodeRepository\PX.Objects\AP\Descriptor\找到Attribute.cs。
The word representation happens through attribute PX.Objects.AP.ToWords
. And this out-of-box word representation is English only. For non-English word representation, create your own attribute. Implementation of PX.Objects.AP.ToWords
can be found in …\App_Data\CodeRepository\PX.Objects\AP\Descriptor\Attribute.cs.
这篇关于如何做到量场的单词表示在Acumatica发票报表(AR.64.10.00)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!