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.

29 lines
1.3 KiB

4 years ago
  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="{'link_only':1, 'search_default_by_state':1}"
  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, 'search_default_group_by_survey':1}"
  17. attrs="{'invisible':[('tot_sent_survey','=',0),('tot_comp_survey','=',0)]}">
  18. <field string="Answers" name="tot_comp_survey" widget="statinfo"/>
  19. </button>
  20. </xpath>
  21. <xpath expr="//div[hasclass('oe_title')]" position="after">
  22. <field name="tot_sent_survey" invisible="1"/>
  23. <field name="tot_sent_comp_survey" invisible="1"/>
  24. </xpath>
  25. </field>
  26. </record>
  27. </odoo>