You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
918 B
26 lines
918 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2015 Tecnativa - Antonio Espinosa
|
|
Copyright 2017 Tecnativa - Pedro M. Baeza
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
<odoo>
|
|
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">Add PDF report certificates list</field>
|
|
<field name="inherit_id" ref="base.view_company_form" />
|
|
<field name="model">res.company</field>
|
|
<field name="arch" type="xml">
|
|
<data>
|
|
<notebook position="inside">
|
|
<page name="pdf_sign_certificate" string="Certificates (PDF signing)">
|
|
<field name="report_certificate_ids"
|
|
context="{'default_company_id': active_id}"
|
|
/>
|
|
</page>
|
|
</notebook>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|