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.

21 lines
827 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="survey_survey_form" model="ir.ui.view">
  4. <field name="name">survey_select_input survey.survey form</field>
  5. <field name="model">survey.survey</field>
  6. <field name="inherit_id" ref="survey.survey_form"/>
  7. <field name="priority">26</field>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='tot_comp_survey']/.." position="after">
  10. <button type="object" name="action_survey_user_input"
  11. attrs="{'invisible': [('tot_selected_survey','=',0)]}"
  12. context="{'search_default_selected':1}"
  13. class="oe_stat_button text-success" icon="fa-pencil-square-o">
  14. <field name="tot_selected_survey" string="Selected" widget="statinfo"/>
  15. </button>
  16. </xpath>
  17. </field>
  18. </record>
  19. </odoo>