OCA reporting engine fork for dev and update.
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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. © 2015 Antiun Ingenieria S.L. - Antonio Espinosa
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. -->
  6. <openerp>
  7. <data>
  8. <record id="view_company_form" model="ir.ui.view">
  9. <field name="name">Add PDF report certificates list</field>
  10. <field name="inherit_id" ref="base.view_company_form" />
  11. <field name="model">res.company</field>
  12. <field name="arch" type="xml">
  13. <data>
  14. <xpath expr="//page[@string='Report Configuration']/group[@string='Configuration']" position="after">
  15. <group string="Certificates" col="2">
  16. <field name="report_certificate_ids"
  17. context="{'default_company_id': active_id}"/>
  18. </group>
  19. </xpath>
  20. </data>
  21. </field>
  22. </record>
  23. </data>
  24. </openerp>