根据显示方法过滤 axapta 报告
我想过滤 axapta 报告以仅显示 QTY !=0 的记录。字段数量基于显示方法。我可以通过重写发送方法来实现这一点。现在的问题是,如果该部分的最后一条记录的 QTY=0,则不会显示小计。
I want to filter axapta report to display only records with QTY !=0 . The field QTY is based on display method . I could acheive this by overriding send method. The problem now is that if the last record in the section has QTY=0, then the subtotal is not displayed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以按照与相同的方式计算和显示小计建议处理 4 小时前的总计 - 只需手动计算并在
programmableSection
中显示它们。You can calculate and display subtotals in the same way you've been recommended to deal with grand totals 4 hours ago - just calculate and display them in a
programmableSection
manually.如果您没有在
send()
方法中调用super()
,请记住返回 false
。Remember to
return false
if you do not callsuper()
in thesend()
method.