Odoo modules related to surveys
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.

28 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="res_partner_form" model="ir.ui.view">
  4. <field name="name">survey_partner_input res.partner form</field>
  5. <field name="model">res.partner</field>
  6. <field name="inherit_id" ref="base.view_partner_form"/>
  7. <field name="priority">24</field>
  8. <field name="arch" type="xml">
  9. <xpath expr="//div[@name='button_box']/button[1]" position="before">
  10. <button type="object" name="action_survey_user_input"
  11. context="{'search_default_completed':1, 'link_only':1, 'search_default_partner_id': id}"
  12. attrs="{'invisible':[('tot_sent_survey','=',0)]}" class="oe_stat_button">
  13. <field string="Completed" name="sent_comp_ratio" widget="percentpie"/>
  14. </button>
  15. <button type="object" name="action_survey_user_input" class="oe_stat_button" icon="fa-pencil-square-o"
  16. context="{'search_default_completed':1, 'link_only':1, 'search_default_partner_id': id}">
  17. <field string="Answers" name="tot_comp_survey" widget="statinfo"/>
  18. </button>
  19. </xpath>
  20. <xpath expr="//div[hasclass('oe_title')]" position="after">
  21. <field name="tot_sent_survey" invisible="1"/>
  22. <field name="tot_sent_comp_survey" invisible="1"/>
  23. </xpath>
  24. </field>
  25. </record>
  26. </odoo>