Openerp 无法在日历视图中显示超过 100 个会议?
当我在 openerp 中为任何用户创建会议时..我可以在日历视图和列表视图上看到它们..然而,当单个用户的我的会议超过 100 时,它不会在日历视图中显示新创建的会议。我如何在我的列表视图中看到所有这些...以前有人遇到过这个问题吗..请帮助
When I create meetings in openerp for any user.. I can see them on both Calendar View and List View.. How ever When My meetings exceeds 100 for a single user it doesn't show newly created meetings in calendar view. How ever I can see all of them in my list view... Have any one faced this problem before.. Please Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚尝试了 CRM 案例屏幕的日历视图。 (我没有安装会议模块。)看起来日历视图不会立即自行更新,您可以通过移动到下个月然后返回来强制它。
这就是我所做的,也许你可以做类似的事情:
我在 OpenERP 5.0 中完成了这一切。
I just experimented with the calendar view for the CRM cases screen. (I don't have the meetings module installed.) It looks like the calender view doesn't update itself right away, and you can force it by moving to the next month and then back.
Here's what I did, maybe you can do something similar:
I did all this in OpenERP 5.0.
是的,即使我遇到了同样的问题。这实际上是 OpenERP 中的一个限制。所以我创建了一个名为 Meeting_history 的新类。因此,当会议超过 90 时,前 10 个会议或较旧的 10 个会议将从 crm_meeting 表中删除并获取存储在 Meeting_history 类中,我们可以在其中查看该用户的较早会议。
Yes,even I encountered the same problem.This is actually a limitation in OpenERP.So I created a new class called Meeting_history.So when meetings exceeds more than 90,the first 10 meetings or the older ten meetings gets removed from crm_meeting table and gets stored in meeting_history class where we can view older meetings of that user.