有很多帖子谈到使用不同的来源,但我没有找到任何使用相同的数据来覆盖我的场景,而页面打破常见的分组。由于某些兼容性问题,我无法调整存储过程,并且我试图弄清楚如何在报告本身中执行此操作。
这是我需要完成的事情:
我们以相同的工作顺序将物品交付给不同的人。每个人都会得到他自己的货物清单,所以我按照交货的人分组,并在他的清单完成后分页。
此人获得的已发送项目列表不应包含待处理项。相反,它应该显示为该人员发送的第一个货件清单正下方的单独表格。
存储过程中返回的数据将在每个细节上包含一个标记,指示该项是否未决。
我们的报告应如下所示:
---- Report header information ----
---- Deliver to John Joe -----
(Table with all items sent) // These need to belong to just John Joe's group
(Table with all items pending) // These need to belong to just John Joe's group
分页,然后在另一页上
---- Report header information ----
---- Deliver to Max Manny --------
(Table with all items sent) // These need to belong to just Max Manny's group
(Table with all items pending) // These need to belong to just Max Manny's group
到目前为止我发现了什么:
感谢您提供的任何意见或建议,非常感谢!