mirror of
https://github.com/OCA/knowledge.git
synced 2025-07-14 01:41:26 -06:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2025 Juan Alberto Raja <juan.raja@sygel.es>
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<record id="document_page.report_document_page" model="ir.actions.report">
|
|
<field name="binding_type">action</field>
|
|
<field name="binding_view_types" eval="False" />
|
|
</record>
|
|
|
|
<record id="view_document_page_form_inherit_print" model="ir.ui.view">
|
|
<field name="name">document.page.form.inherit.print</field>
|
|
<field name="model">document.page</field>
|
|
<field name="inherit_id" ref="document_page.view_wiki_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//form" position="inside">
|
|
<field name="is_printable" invisible="0" />
|
|
</xpath>
|
|
|
|
<xpath expr="//sheet" position="before">
|
|
<header>
|
|
<button
|
|
name="action_print_document_page"
|
|
type="object"
|
|
string="Print"
|
|
icon="fa-print"
|
|
class="oe_highlight"
|
|
attrs="{'invisible': [('is_printable', '=', False)]}"
|
|
/>
|
|
</header>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|