如何手动向 Bugzilla 添加活动?
我正在制作一个简单的时间表,人们可以登记时间 很快就解决了一个错误。
但是添加到 bugs_activity 表中的小时数没有被注意到 任何地方。
这是一个简单的组合线
Bugzilla::Bug::LogActivityEntry(1, 'work_time', 0, 66, 1, '2010-01-12 14:44:44');
差不多,在 bug 1(工作时间)上加上 66 小时。这按照我的预期执行,但没有执行其他任何操作。我还需要发送电子邮件并添加评论。我找不到任何有关使用 Bug.pm 或 LogActivityEntry API 的信息。
这是一项艰巨的任务还是什么?
我需要的是我还需要什么,这只是一个批处理作业,当用户按下提交时运行,并且此信息可能存在许多错误。我知道如何获取错误、用户等,只是不注册时间,我需要最终的项目。这几乎和上面的例子一样粗略。
我正在使用 Bugzilla 3.4.4
I am making a simple time sheet for which people can register times
worked on a bug real quickly.
But the hours added to the bugs_activity table are not noticed
anywhere.
here is a simple made up line
Bugzilla::Bug::LogActivityEntry(1, 'work_time', 0, 66, 1, '2010-01-12 14:44:44');
Pretty much, add 66 hours to bug 1, work time. This executes like I would expect but does nothing else. I also need to send e-mails and add comments. I can't find anything on using Bug.pm or LogActivityEntry API.
Is this a huge undertaking or what ?
What I would need is what else is required of me, this is just a batch job that runs when the user presses submit and this info can be on many bugs. I know how to get the bugs, user and such, just not registering the hours, I need the final item. This can be almost as rough as the example above.
I am using Bugzilla 3.4.4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工作时间保存在 longdescs 表中 - 带注释的表。事实上,工作时间是评论的一个属性。 (我也认为这很奇怪。)
您正在修改的bugs_activity表是更改历史记录的表,我敢打赌您可以在“bug活动”页面上看到您的调用结果。但它不会改变错误的状态。
希望这有帮助。
伊戈尔
Time worked is kept in longdescs table - the table with comments. Hours worked in fact is a property of a comment. (I also think it's weird.)
bugs_activity table that you're modifying is the table for the history of changes, I bet you can see the result of your call on the "bug activity" page. But it does not change the state of the bug.
Hope this helps.
Igor