forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request OCA#586 from OpenUpgrade-dev/9.0-project_issue_data
[ADD] project_issue: load data changes. All checks passed. Merging.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
addons/project_issue/migrations/9.0.1.0/noupdate_changes.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<openerp> | ||
<data> | ||
<!--Changes in noupdate data--> | ||
<record id="mt_issue_new" model="mail.message.subtype"> | ||
<field name="description">Issue opened</field> | ||
<field name="name">Issue Opened</field> | ||
</record> | ||
<record id="mt_project_issue_new" model="mail.message.subtype"> | ||
<field name="name">Issue Opened</field> | ||
</record> | ||
<record id="mt_project_issue_blocked" model="mail.message.subtype"> | ||
<field name="sequence">21</field> | ||
</record> | ||
<record id="issue_user_rule" model="ir.rule"> | ||
<field name="domain_force">['|', | ||
('project_id.privacy_visibility', 'in', ['portal', 'employees']), | ||
'&', | ||
('project_id.privacy_visibility', '=', 'followers'), | ||
('message_partner_ids', 'in', [user.partner_id.id]), | ||
]</field> | ||
<field name="name">Project/Issue: employees: portal, employee or (followers and following)</field> | ||
</record> | ||
<record id="mt_issue_ready" model="mail.message.subtype"> | ||
<field name="name">Issue Ready</field> | ||
</record> | ||
</data> | ||
</openerp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters