避免 SalesPrice 中的四舍五入
将贸易协议价格设置为 12.8888 时,销售行中使用的单价为 12.8900。我应该怎么做才能避免这种四舍五入?
When setting trade agreament price to 12.8888, the unit price used in Sales Line is 12.8900. what should I do to avoid this rounding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在
PriceDiscTable
表单上,将PriceDiscTable_Amount
控件的NoOfDecimals
属性设置为 4。请注意,代码中的许多位置都会获取该金额四舍五入到货币的舍入设置。您可以在舍入选项卡上的总帐/设置/汇率下更改整个应用程序的舍入。
On the
PriceDiscTable
form set theNoOfDecimals
property of thePriceDiscTable_Amount
control to 4.Note that there are many places in the code where that amount will get rounded to the roundoff setting for the currency. You can change that rounding for the entire application under General ledger/Setup/Exchange rates on the Round-off tab.
在“价目表”窗体中的“详细信息”下,单击“价目表项目”,然后单击“添加价目表项目”,然后更改舍入策略。
In the Price List form, under Details, click Price List Items, and then click Add Price List Item, then change the Rounding Policy.
将价格设置为每 100 件商品 1288.88。
Set price to 1288.88 per 100 items.