mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-22 13:22:19 -06:00
* [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
17 lines
565 B
XML
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>
|