Files
knowledge/document_page_approval/security/document_page_security.xml
Iván Todorovich 96256b9872 [IMP][9.0] Change Requests and workflow improvements on documents (#155)
* [IMP] Refactor document_page_approval to always use states, and a few code improvements
* [IMP] Add QWeb report to print document pages
* Categories don't save content
* FIX Last Contributor (uid and date). Use related fields instead of computed where possible.
Fix search views, store some fields to make them searchable, added filters
* Add api.depends on computed diff
2018-04-12 15:27:32 -07:00

17 lines
565 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="0">
<record id="group_document_approver_user" model="res.groups">
<field name="name">Approver</field>
<field name="category_id" ref="knowledge.module_category_knowledge_management"/>
<field name="implied_ids" eval="[(4, ref('document_page.group_document_editor'))]"/>
</record>
<record id="document_page.group_document_manager" model="res.groups">
<field name="implied_ids" eval="[(4, ref('group_document_approver_user'))]"/>
</record>
</data>
</odoo>