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
856 B
26 lines
856 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
© 2015 Antiun Ingenieria S.L. - Antonio Espinosa
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
<openerp>
|
|
<data>
|
|
|
|
<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>
|
|
<xpath expr="//page[@string='Report Configuration']/group[@string='Configuration']" position="after">
|
|
<group string="Certificates" col="2">
|
|
<field name="report_certificate_ids"
|
|
context="{'default_company_id': active_id}"/>
|
|
</group>
|
|
</xpath>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|