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.

35 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2018 Tecnativa - Jairo Llopis
  3. License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
  4. <data>
  5. <record id="view_partner_form" model="ir.ui.view">
  6. <field name="name">Add consent smart button</field>
  7. <field name="model">res.partner</field>
  8. <field name="inherit_id" ref="base.view_partner_form"/>
  9. <field
  10. name="groups_id"
  11. eval="[(4, ref('privacy.group_data_protection_user'))]"
  12. />
  13. <field name="arch" type="xml">
  14. <div name="button_box" position="inside">
  15. <!-- TODO Change icon to fa-handshake-o in Odoo 11 -->
  16. <button
  17. attrs='{"invisible": [("privacy_consent_count", "=", 0)]}'
  18. class="oe_stat_button"
  19. context='{"search_default_partner_id": active_id}'
  20. icon="fa-gavel"
  21. name="%(consent_action)d"
  22. type="action"
  23. >
  24. <field
  25. name="privacy_consent_count"
  26. widget="statinfo"
  27. />
  28. </button>
  29. </div>
  30. </field>
  31. </record>
  32. </data>