[IMP] project*: add OpenChatter notification after module installation

bzr revid: rco@openerp.com-20120725113930-7ve3hz98i6ieuvmy
This commit is contained in:
Raphael Collet 2012-07-25 13:39:30 +02:00
parent 495d222f4e
commit 773794a500
3 changed files with 44 additions and 0 deletions

View File

@ -59,5 +59,21 @@
<field name="case_default" eval="True"/>
<field name="fold" eval="True"/>
</record>
<!-- notify all employees of module installation -->
<function model="mail.group" name="message_append_note">
<!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
<value eval="[ref('mail.group_all_employees')]"/>
<value>Module Project Management has been installed</value>
<value>Manage multi-level projects and tasks. You can delegate tasks,
track the work done on tasks, and review your planning based on
the entered data.
You can manage todo lists on tasks by installing the module
"Todo Lists", which supports the methodology Getting Things
Done (GTD). You can also manage issues/bugs in projects by
installing the module "Issues Tracker."
</value>
</function>
</data>
</openerp>

View File

@ -22,6 +22,20 @@
<field name="name">Long Term</field>
<field name="icon">terp-project</field>
</record>
</data>
<data noupdate="1">
<!-- notify all employees of module installation -->
<function model="mail.group" name="message_append_note">
<!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
<value eval="[ref('mail.group_all_employees')]"/>
<value>Module Todo Lists has been installed</value>
<value>
Add todo items on project tasks, to help you organize your work.
This module supports the methodology Getting Things Done (GTD),
created by David Allen, and described in the book of the same
name.
</value>
</function>
</data>
</openerp>

View File

@ -31,5 +31,19 @@
<field name="name">v3.0</field>
</record>
<!-- notify all employees of module installation -->
<function model="mail.group" name="message_append_note">
<!-- ids, subject, body, parent_id=False, type='notification', content_subtype='html' -->
<value eval="[ref('mail.group_all_employees')]"/>
<value>Module Issues Tracker has been installed</value>
<value>Manage the issues you might face in a project, like bugs in a
system, client complaints or material breakdowns. You can
record issues, assign them to some responsible person, and keep
track of their status as they evolve over time.
You can access issues from the top menu Project, and access the
issues of a specific project from the projects gallery view.
</value>
</function>
</data>
</openerp>