如何使用 x++ 引用报表数据源表
我无法找到引用 SalesInvoice 报表数据源的 CustInvoiceTrans 表的正确语法。
上下文如下:我在 InventItemGroup 表上创建了一个新的分类字段,需要从该字段中获取发票上每个项目的数据,然后在发票标题上汇总这些数据。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 SalesInvoice 报表的 fetch() 方法。
custInvoiceTrans 是将在报告中打印的每个发票行。
接下来看看设计,部分组:CustInvoiceJour ->部分组:CustInvoiceTrans。以下是将打印的所有字段
因此您需要:
在表 CustInvoiceTrans 上创建显示方法:
此方法返回每个 CustInvoiceTrans 的分类。
在报告设计中,在“部分组”部分:CustInvoiceTrans 创建一个新字段。
数据源 = CustInvoiceTrans
DataMethod = getClassification
Look at method fetch() of the SalesInvoice report.
custInvoiceTrans is an each invoive line which will be printed in report.
Next look at Design, Section Group : CustInvoiceJour -> Section Group : CustInvoiceTrans. Here are all fields, which will be printed
So you need:
On the table CustInvoiceTrans create the display method:
This method return your classification for each CustInvoiceTrans.
On report design, on section Section Group : CustInvoiceTrans create a new field.
DataSource = CustInvoiceTrans
DataMethod = getClassification