[FIX] OPW 18442 : View location don't consolidate child, actualy any location with...
[odoo/odoo.git] / addons / survey / survey_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4             <menuitem name="Surveys" id="menu_surveys" parent="base.menu_tools" sequence="2" groups="base.group_tool_user,base.group_tool_manager,group_survey_user"/>
5             <menuitem name="Define Surveys" id="menu_define_survey"
6                  groups="base.group_tool_manager"
7                  parent="menu_surveys" />
8             <menuitem id="menu_answer_surveys" name="Answer Surveys" parent="menu_surveys" groups="base.group_tool_user,base.group_tool_manager,group_survey_user"/>
9             <menuitem name="Reporting" parent="base.menu_tools"
10                 id="base.menu_lunch_reporting" sequence="6"/>
11             <menuitem name="Surveys" id="menu_reporting" parent="base.menu_lunch_reporting" sequence="2"/>
12         <!--
13             Survey
14         -->
15
16         <record model="ir.ui.view" id="survey_form">
17             <field name="name">survey_form</field>
18             <field name="model">survey</field>
19             <field name="type">form</field>
20             <field name="arch" type="xml">
21                 <form string="Survey">
22                     <field name="title" select="1"/>
23                     <group col="6" colspan="6">
24                         <field name="responsible_id"/>
25                         <field name="id" invisible="1"/>
26                         <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
27                             string="Test Survey" type="action" icon="gtk-new"
28                             context="{'active':True,'survey_id': active_id}" attrs="{'invisible':[('id','=',0)]}"/>
29                         <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
30                             string="Answer Survey" type="action" icon="gtk-execute" context="{'survey_id': active_id}" attrs="{'invisible':[('state','!=','open')]}"/>
31                         <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
32                             string="Edit Survey" type="action" icon="gtk-edit" context="{'active':True,'edit' : True,'survey_id': active_id}"/>
33                     </group>
34                     <notebook colspan="4">
35                         <page string="Survey">
36                             <field name="page_ids" colspan="4" nolabel="1" mode="form,tree" context="{'line_order': page_ids}">
37                                 <form string="Survey Page">
38                                     <field name="title" select="1"/>
39                                     <field name="sequence" groups="base.group_extended"/>
40                                     <field name="note" colspan="4" nolabel="1"/>
41                                     <field name="question_ids" height="200" width="200" colspan="4" nolabel="1" context="{'line_order': question_ids}">
42                                         <form string="Survey Question" >
43                                             <group col="6" colspan="6" height="600" width="200">
44                                             <field name="question" colspan="4" select="1"/>
45                                             <field name="sequence"/>
46                                             <field name="tot_resp"/>
47                                             <field name="type" on_change="on_change_type(type)"/>
48                                             <field name="in_visible_rating_weight" invisible="1"/>
49                                             <field name="in_visible_menu_choice" invisible="1"/>
50                                             <field name="in_visible_answer_type" invisible="1"/>
51                                             <notebook colspan="4">
52                                                 <page string="Options">
53                                                     <group attrs="{'invisible':[('type','!=','multiple_textboxes_diff_type'),('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','table')]}">
54                                                       <separator string="Answer" colspan="4"/>
55                                                        <group colspan="4" attrs="{'invisible':[('type','=','table')]}">
56                                                            <field name="answer_choice_ids" nolabel="1" colspan="4" context="{'line_order': answer_choice_ids}" default_get="{'in_visible_answer_type': in_visible_answer_type}"/>
57                                                        </group>
58                                                        <group colspan="4" attrs="{'invisible':[('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','table')]}">
59                                                            <field name="column_heading_ids" colspan="4" nolabel="1" default_get="{'in_visible_rating_weight':in_visible_rating_weight,'in_visible_menu_choice':in_visible_menu_choice}"/>
60                                                             <group colspan="4" attrs="{'invisible':[('type','!=','table')]}">
61                                                                <field name="no_of_rows"/>
62                                                             </group>
63                                                        </group>
64                                                     </group>
65                                                     <newline/>
66                                                     <group  attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'), ('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale')]}">
67                                                         <separator string="Comment Field" colspan="4"/>
68                                                         <group colspan="4">
69                                                             <field name="is_comment_require"/>
70                                                         </group>
71                                                         <group attrs="{'invisible':[('is_comment_require','=',False)]}">
72                                                             <group col="4" colspan="4">
73                                                                 <field name="comment_field_type" colspan="1"/>
74                                                                 <group colspan="2" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
75                                                                     <field colspan="2" name="comment_label" />
76                                                                 </group>
77                                                             </group>
78                                                             <group col="6" colspan="4" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
79                                                                 <field name="comment_valid_type" colspan="2"/>
80                                                                 <group colspan="2" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'), ('comment_valid_type','!=','must_be_whole_number')]}">
81                                                                     <field name="comment_minimum_no" string="Between"/>
82                                                                     <field name="comment_maximum_no" string="and"/>
83                                                                 </group>
84                                                                 <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_decimal_number')]}">
85                                                                     <field name="comment_minimum_float" string="Between"/>
86                                                                     <field name="comment_maximum_float" string="and"/>
87                                                                 </group>
88                                                                 <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_date')]}">
89                                                                     <field name="comment_minimum_date" string="Between"/>
90                                                                     <field name="comment_maximum_date" string="and"/>
91                                                                 </group>
92                                                                 <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'),('comment_valid_type','!=','must_be_decimal_number'),('comment_valid_type','!=','must_be_whole_number'),('comment_valid_type','!=','must_be_date'),('comment_valid_type','!=','must_be_email_address')]}">
93                                                                     <label string="When the comment is an invalid format, display this error message" colspan="4"/>
94                                                                     <field name="comment_valid_err_msg" nolabel="1" colspan="4"/>
95                                                                 </group>
96                                                             </group>
97                                                         </group>
98                                                     </group>
99                                                     <newline/>
100                                                     <group attrs="{'invisible':[('type','!=','matrix_of_choices_only_one_ans'),('type','!=','rating_scale')]}">
101                                                         <field name="comment_column"/>
102                                                         <group colspan="2" attrs="{'invisible':[('comment_column','!=',True)]}">
103                                                             <field name="column_name" colspan="2"/>
104                                                         </group>
105                                                     </group>
106                                                     <newline/>
107                                                     <group attrs="{'invisible':[('type','!=','single_textbox'), ('type','!=','multiple_textboxes')]}">
108                                                         <separator string="Validation" colspan="4"/>
109                                                         <group colspan="4">
110                                                             <field name="is_validation_require"/>
111                                                         </group>
112                                                         <group col="6" colspan="4" attrs="{'invisible':[('is_validation_require','=',False)]}">
113                                                             <field name="validation_type" colspan="2"/>
114                                                             <group colspan="2" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'), ('validation_type','!=','must_be_whole_number')]}">
115                                                                 <field name="validation_minimum_no" string="Between"/>
116                                                                 <field name="validation_maximum_no" string="and"/>
117                                                             </group>
118                                                             <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_decimal_number')]}">
119                                                                 <field name="validation_minimum_float" string="Between"/>
120                                                                 <field name="validation_maximum_float" string="and"/>
121                                                             </group>
122                                                             <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_date')]}">
123                                                                 <field name="validation_minimum_date" string="Between"/>
124                                                                 <field name="validation_maximum_date" string="and"/>
125                                                             </group>
126                                                         </group>
127                                                         <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'),('validation_type','!=','must_be_decimal_number'),('validation_type','!=','must_be_whole_number'),('validation_type','!=','must_be_date'),('validation_type','!=','must_be_email_address')]}">
128                                                             <label string="When the comment is an invalid format, display this error message" colspan="4"/>
129                                                             <field name="validation_valid_err_msg" nolabel="1" colspan="4"/>
130                                                         </group>
131                                                     </group>
132                                                     <newline/>
133                                                     <group attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','single_textbox'),('type','!=','comment'),('type','!=','multiple_textboxes_diff_type')]}">
134                                                         <separator string="Required Answer" colspan="4"/>
135                                                         <newline/>
136                                                         <field name="is_require_answer"/>
137                                                         <group col="6" colspan="4" attrs="{'invisible':[('is_require_answer','=',False)]}">
138                                                             <group colspan="4" attrs="{'invisible':[('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','multiple_textboxes_diff_type')]}">
139                                                                 <field name="required_type"/>
140                                                                 <group colspan="2" attrs="{'invisible':[('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly')]}">
141                                                                     <field name="req_ans" />
142                                                                 </group>
143                                                                 <group colspan="4" attrs="{'invisible':[('required_type','!=','a range')]}">
144                                                                     <field name="minimum_req_ans"/>
145                                                                     <field name="maximum_req_ans"/>
146                                                                 </group>
147                                                             </group>
148                                                             <group colspan="4" attrs="{'invisible':[('required_type','!=','all'),('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly'),('required_type','!=','a range'),('is_require_answer','!=',True)]}">
149                                                                 <label string="When the question is not answered, display this error message:"/>
150                                                                 <field name="req_error_msg" colspan="4" nolabel="1"/>
151                                                             </group>
152                                                             <group colspan="4" attrs="{'invisible':[('type','!=','numerical_textboxes')]}">
153                                                                 <group colspan="2" >
154                                                                     <field name="numeric_required_sum"/>
155                                                                 </group>
156                                                                 <newline/>
157                                                                 <label string="When the choices do not add up correctly, display this error message"/>
158                                                                 <field name="numeric_required_sum_err_msg" colspan="4" nolabel="1"/>
159                                                             </group>
160                                                             <group colspan="4" attrs="{'invisible':[('type','!=','rating_scale')]}">
161                                                                 <field name="rating_allow_one_column_require"/>
162                                                             </group>
163                                                         </group>
164                                                     </group>
165                                                     <newline/>
166                                                     <group attrs="{'invisible':[('type','!=','descriptive_text')]}">
167                                                         <separator string="Descriptive Text" colspan="4"/>
168                                                         <field name="descriptive_text" colspan="4" nolabel="1"/>
169                                                     </group>
170                                                 </page>
171                                             </notebook>
172                                             </group>
173                                         </form>
174                                         <tree string="Survey Question">
175                                             <field name="sequence" string="Seq"/>
176                                             <field name="question" colspan="4" select="1"/>
177                                             <field name="answer_choice_ids"/>
178                                         </tree>
179                                     </field>
180                                 </form>
181                             </field>
182                             <group col="9" colspan="4">
183                                 <field name="state"/>
184                                 <button name="survey_cancel"
185                                     string="Cancel" states="open" type="object" icon="gtk-cancel"/>
186                                 <button name="survey_draft"
187                                     string="Set to draft" states="cancel,close" type="object"
188                                     icon="gtk-new"/>
189                                 <button name="survey_open" string="Open"
190                                     states="draft" type="object" icon="gtk-go-forward"/>
191                                 <button name="survey_close"
192                                     string="Close" states="open" type="object" icon="gtk-close"/>
193                             </group>
194                         </page>
195                         <page string="Other">
196                             <group colspan="6" col='4'>
197                                 <field name="max_response_limit"
198                                     attrs="{'readonly':[('state','in',('open','close'))]}"/>
199                                 <field name="response_user"
200                                     attrs="{'readonly':[('state','in',('open','close'))]}"/>
201                                 <field name="type"/>
202                                 <field name="send_response"/>
203                             </group>
204                             <separator colspan="4" string="Survey Details"/>
205                             <field name="note" colspan="4" nolabel="1"/>
206                         </page>
207                         <page string="Invited User">
208                             <field name="invited_user_ids" nolabel="1" readonly="1"/>
209                         </page>
210                         <page string="History">
211                             <field name="date_open" select="1"/>
212                             <field name="date_close"/>
213                             <field name="tot_start_survey" select="1"/>
214                             <field name="tot_comp_survey" select="1"/>
215                             <field name="history" colspan="4" nolabel="1">
216                                 <tree string="History">
217                                     <field name="date"/>
218                                     <field name="user_id"/>
219                                 </tree>
220                                 <form string="History">
221                                     <field name="date"/>
222                                     <field name="user_id"/>
223                                 </form>
224                                </field>
225                            </page>
226                     </notebook>
227                 </form>
228             </field>
229         </record>
230
231         <record model ="ir.ui.view" id= "survey_tree">
232             <field name="name">survey_tree</field>
233             <field name="model">survey</field>
234             <field name="type">tree</field>
235             <field name="arch" type="xml">
236                 <tree colors="gray:state in ('close')" string="Survey">
237                     <field name="title" select="1"/>
238                     <field name="type" select="1"/>
239                     <field name="responsible_id"/>
240                     <field name="date_open" select="1" string="Open Date"/>
241                     <field name="tot_start_survey" string="Started"/>
242                     <field name="tot_comp_survey" string="Completed"/>
243                     <field name="state" select="1"/>
244                     <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
245                         string="Test Survey" type="action" icon="gtk-new"
246                         context="{'active':True,'survey_id': active_id}"/>
247                     <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
248                         string="Answer Survey" type="action" icon="gtk-execute" context="{'survey_id': active_id}" attrs="{'invisible':[('state','!=','open')]}"/>
249                     <button name="%(action_view_survey_question_message)d" states="open,draft,close,cancel"
250                         string="Edit Survey" type="action" icon="gtk-edit" context="{'active':True,'edit' : True,'survey_id': active_id}"/>
251                     <button name="action_print_survey" states="open,draft,close,cancel"
252                                     string="Print Answer" type="object" icon="gtk-print"/>
253                 </tree>
254             </field>
255         </record>
256
257        <record id="survey_search" model="ir.ui.view">
258             <field name="name">survey_search</field>
259             <field name="model">survey</field>
260             <field name="type">search</field>
261             <field name="arch" type="xml">
262                 <search string="Search Survey">
263                    <group col='10' colspan='4'>
264                         <filter icon="terp-check" string="Current" domain="[('state','in', ('draft', 'open'))]"/>
265                         <separator orientation="vertical"/>
266                         <field name="title" select="1"/>
267                         <field name="type" select="1" widget="selection"/>
268                         <field name="responsible_id" select="1">
269                             <filter string="MY" icon="terp-personal" domain="[('responsible_id','=',uid)]" help="My Survey(s)"/>
270                         </field>
271                    </group>
272                    <newline/>
273                    <group expand="0" string="Group By..." colspan="4" col="20">
274                        <filter string="Responsible" icon="terp-personal" domain="[]"  context="{'group_by':'responsible_id'}"/>
275                         <separator orientation="vertical"/>
276                        <filter string="Type" icon="terp-stock_symbol-selection" domain="[]"  context="{'group_by':'type'}"/>
277                        <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]"  context="{'group_by':'state'}"/>
278                    </group>
279                </search>
280             </field>
281         </record>
282
283         <record model="ir.actions.act_window" id="action_survey_form1">
284             <field name="name">Surveys</field>
285             <field name="res_model">survey</field>
286             <field name="view_type">form</field>
287             <field name="view_mode">tree,form</field>
288             <field name="view_id" ref="survey_tree"></field>
289             <field name="search_view_id" ref="survey_search"/>
290             <field name="help">You can create survey for different purposes: recruitment interviews, employee's periodical evaluations, marketing campaigns, etc. A survey is made of pages containing questions of several types: text, multiple choices, etc. You can edit survey manually or click on the 'Edit Survey' for a WYSIWYG interface.</field>
291         </record>
292
293
294         <menuitem name="Surveys" id="menu_survey_form"
295             action="action_survey_form1" parent="menu_define_survey"
296             groups="base.group_tool_manager"/>
297
298         <!--
299             Survey Pages
300         -->
301
302         <record model="ir.ui.view" id="survey_page_form">
303             <field name="name">survey_page_form</field>
304             <field name="model">survey.page</field>
305             <field name="type">form</field>
306             <field name="arch" type="xml">
307                 <form string="Survey Page">
308                     <field name="title" colspan="4" select="1"/>
309                     <field name="survey_id" select="1"/>
310                     <field name="sequence"/>
311                     <separator string="Description" colspan="4"/>
312                     <field name="note" colspan="4" nolabel="1"/>
313                     <field name="question_ids" colspan="4" nolabel="1" context="{'line_order': question_ids}">
314                     <form string="Survey Question">
315                         <field name="question" colspan="4" select="1"/>
316                         <field name="sequence"/>
317                         <field name="tot_resp"/>
318                         <field name="type" on_change="on_change_type(type)"/>
319                         <field name="in_visible_rating_weight" invisible="1"/>
320                         <field name="in_visible_menu_choice" invisible="1"/>
321                         <field name="in_visible_answer_type" invisible="1"/>
322                         <notebook colspan="4">
323                             <page string="Options">
324                                 <group attrs="{'invisible':[('type','!=','multiple_textboxes_diff_type'),('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','table')]}">
325                                   <separator string="Answer" colspan="4"/>
326                                    <group colspan="4" attrs="{'invisible':[('type','=','table')]}">
327                                        <field name="answer_choice_ids" nolabel="1" colspan="4" context="{'line_order': answer_choice_ids}" default_get="{'in_visible_answer_type': in_visible_answer_type}"/>
328                                    </group>
329                                    <group colspan="4" attrs="{'invisible':[('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','table')]}">
330                                        <field name="column_heading_ids" colspan="4" nolabel="1" default_get="{'in_visible_rating_weight':in_visible_rating_weight,'in_visible_menu_choice':in_visible_menu_choice}"/>
331                                         <group colspan="4" attrs="{'invisible':[('type','!=','table')]}">
332                                            <field name="no_of_rows"/>
333                                         </group>
334                                    </group>
335                                 </group>
336                                 <newline/>
337                                 <group  attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'), ('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale')]}">
338                                     <separator string="Comment Field" colspan="4"/>
339                                     <group colspan="4">
340                                         <field name="is_comment_require"/>
341                                     </group>
342                                     <group attrs="{'invisible':[('is_comment_require','=',False)]}">
343                                         <group col="4" colspan="4">
344                                             <field name="comment_field_type" colspan="1"/>
345                                             <group colspan="2" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
346                                                 <field colspan="2" name="comment_label" />
347                                             </group>
348                                         </group>
349                                         <group col="6" colspan="4" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
350                                             <field name="comment_valid_type" colspan="2"/>
351                                             <group colspan="2" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'), ('comment_valid_type','!=','must_be_whole_number')]}">
352                                                 <field name="comment_minimum_no" string="Between"/>
353                                                 <field name="comment_maximum_no" string="and"/>
354                                             </group>
355                                             <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_decimal_number')]}">
356                                                 <field name="comment_minimum_float" string="Between"/>
357                                                 <field name="comment_maximum_float" string="and"/>
358                                             </group>
359                                             <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_date')]}">
360                                                 <field name="comment_minimum_date" string="Between"/>
361                                                 <field name="comment_maximum_date" string="and"/>
362                                             </group>
363                                             <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'),('comment_valid_type','!=','must_be_decimal_number'),('comment_valid_type','!=','must_be_whole_number'),('comment_valid_type','!=','must_be_date'),('comment_valid_type','!=','must_be_email_address')]}">
364                                                 <label string="When the comment is an invalid format, display this error message" colspan="4"/>
365                                                 <field name="comment_valid_err_msg" nolabel="1" colspan="4"/>
366                                             </group>
367                                         </group>
368                                     </group>
369                                 </group>
370                                 <newline/>
371                                 <group attrs="{'invisible':[('type','!=','matrix_of_choices_only_one_ans'),('type','!=','rating_scale')]}">
372                                     <field name="comment_column"/>
373                                     <group colspan="2" attrs="{'invisible':[('comment_column','!=',True)]}">
374                                         <field name="column_name" colspan="2"/>
375                                     </group>
376                                 </group>
377                                 <newline/>
378                                 <group attrs="{'invisible':[('type','!=','single_textbox'), ('type','!=','multiple_textboxes')]}">
379                                     <separator string="Validation" colspan="4"/>
380                                     <group colspan="4">
381                                         <field name="is_validation_require"/>
382                                     </group>
383                                     <group col="6" colspan="4" attrs="{'invisible':[('is_validation_require','=',False)]}">
384                                         <field name="validation_type" colspan="2"/>
385                                         <group colspan="2" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'), ('validation_type','!=','must_be_whole_number')]}">
386                                             <field name="validation_minimum_no" string="Between"/>
387                                             <field name="validation_maximum_no" string="and"/>
388                                         </group>
389                                         <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_decimal_number')]}">
390                                             <field name="validation_minimum_float" string="Between"/>
391                                             <field name="validation_maximum_float" string="and"/>
392                                         </group>
393                                         <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_date')]}">
394                                             <field name="validation_minimum_date" string="Between"/>
395                                             <field name="validation_maximum_date" string="and"/>
396                                         </group>
397                                     </group>
398                                     <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'),('validation_type','!=','must_be_decimal_number'),('validation_type','!=','must_be_whole_number'),('validation_type','!=','must_be_date'),('validation_type','!=','must_be_email_address')]}">
399                                         <label string="When the comment is an invalid format, display this error message" colspan="4"/>
400                                         <field name="validation_valid_err_msg" nolabel="1" colspan="4"/>
401                                     </group>
402                                 </group>
403                                 <newline/>
404                                 <group attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','single_textbox'),('type','!=','comment'),('type','!=','multiple_textboxes_diff_type')]}">
405                                     <separator string="Required Answer" colspan="4"/>
406                                     <newline/>
407                                     <field name="is_require_answer"/>
408                                     <group col="6" colspan="4" attrs="{'invisible':[('is_require_answer','=',False)]}">
409                                         <group colspan="4" attrs="{'invisible':[('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','multiple_textboxes_diff_type')]}">
410                                             <field name="required_type"/>
411                                             <group colspan="2" attrs="{'invisible':[('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly')]}">
412                                                 <field name="req_ans" />
413                                             </group>
414                                             <group colspan="4" attrs="{'invisible':[('required_type','!=','a range')]}">
415                                                 <field name="minimum_req_ans"/>
416                                                 <field name="maximum_req_ans"/>
417                                             </group>
418                                         </group>
419                                         <group colspan="4" attrs="{'invisible':[('required_type','!=','all'),('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly'),('required_type','!=','a range'),('is_require_answer','!=',True)]}">
420                                             <label string="When the question is not answered, display this error message:"/>
421                                             <field name="req_error_msg" colspan="4" nolabel="1"/>
422                                         </group>
423                                         <group colspan="4" attrs="{'invisible':[('type','!=','numerical_textboxes')]}">
424                                             <group colspan="2" >
425                                                 <field name="numeric_required_sum"/>
426                                             </group>
427                                             <newline/>
428                                             <label string="When the choices do not add up correctly, display this error message"/>
429                                             <field name="numeric_required_sum_err_msg" colspan="4" nolabel="1"/>
430                                         </group>
431                                         <group colspan="4" attrs="{'invisible':[('type','!=','rating_scale')]}">
432                                             <field name="rating_allow_one_column_require"/>
433                                         </group>
434                                     </group>
435                                 </group>
436                                 <newline/>
437                                 <group attrs="{'invisible':[('type','!=','descriptive_text')]}">
438                                     <separator string="Descriptive Text" colspan="4"/>
439                                     <field name="descriptive_text" colspan="4" nolabel="1"/>
440                                 </group>
441                             </page>
442                         </notebook>
443
444                     </form>
445                     <tree string="Survey Question">
446                         <field name="sequence" string="Seq"/>
447                         <field name="question" colspan="4" select="1"/>
448                         <field name="answer_choice_ids"/>
449                     </tree>
450                     </field>
451                 </form>
452             </field>
453         </record>
454
455
456         <record model="ir.ui.view" id="survey_page_tree">
457             <field name="name">survey_page_tree</field>
458             <field name="model">survey.page</field>
459             <field name="type">tree</field>
460             <field name="arch" type="xml">
461                 <tree string="Survey Page">
462                     <field name="sequence" string="Seq"/>
463                     <field name="title"/>
464                     <field name="survey_id"/>
465                     <field name="question_ids" string="#Questions"/>
466                 </tree>
467             </field>
468         </record>
469
470         <record id="view_survey_page_filter" model="ir.ui.view">
471             <field name="name">survey.page.list.select</field>
472             <field name="model">survey.page</field>
473             <field name="type">search</field>
474             <field name="arch" type="xml">
475                 <search string="Search Survey Page">
476                     <field name="title"/>
477                     <field name="survey_id"/>
478                     <newline/>
479                     <group expand="0" string="Group By..." colspan="4" col="20">
480                         <filter string="Survey" icon="terp-stock_align_left_24" domain="[]"  context="{'group_by':'survey_id'}"/>
481                     </group>
482                 </search>
483             </field>
484         </record>
485
486         <record model="ir.actions.act_window" id="action_survey_page_form">
487             <field name="name">Survey Pages</field>
488             <field name="res_model">survey.page</field>
489             <field name="view_type">form</field>
490             <field name="view_mode">tree,form</field>
491             <field name="view_id" ref="survey_page_tree"></field>
492         </record>
493
494         <menuitem name="Survey Pages" id="menu_survey_page_form1"
495             action="action_survey_page_form" parent='menu_define_survey'
496             groups="base.group_tool_manager"/>
497
498         <record model="ir.ui.view" id="survey_page_wizard_test1">
499             <field name="name">survey_page_wizard_test</field>
500             <field name="model">survey.page</field>
501             <field name="type">form</field>
502             <field name="priority">20</field>
503             <field name="arch" type="xml">
504                 <form string="Survey Pages">
505                     <field name="title" colspan="4" select="1"/>
506                     <field name="sequence"/>
507                     <separator string="Description" colspan="4"/>
508                     <field name="note" colspan="4" nolabel="1"/>
509                       <group colspan="4">
510                           <label string="" colspan="3"/>
511                         <button name="survey_save"  string="Ok" type="object" icon="gtk-go-forward"/>
512                     </group>
513                 </form>
514             </field>
515         </record>
516
517         <!--
518             Survey Question
519         -->
520
521         <record model="ir.ui.view" id="survey_question_form">
522             <field name="name">survey_question_form</field>
523             <field name="model">survey.question</field>
524             <field name="type">form</field>
525             <field name="arch" type="xml">
526                 <form string="Survey Question">
527                     <field name="question" colspan="4"/>
528                     <field name="page_id"/>
529                     <field name="sequence"/>
530                     <field name="tot_resp"/>
531                     <field name="type" on_change="on_change_type(type)"/>
532                     <field name="in_visible_rating_weight" invisible="1"/>
533                     <field name="in_visible_menu_choice" invisible="1"/>
534                     <field name="in_visible_answer_type" invisible="1"/>
535                     <notebook colspan="4">
536                         <page string="Options">
537                             <group attrs="{'invisible':[('type','!=','multiple_textboxes_diff_type'),('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','table')]}">
538                               <separator string="Answer" colspan="4"/>
539                                <group colspan="4" attrs="{'invisible':[('type','=','table')]}">
540                                    <field name="answer_choice_ids" nolabel="1" colspan="4" context="{'line_order': answer_choice_ids}" default_get="{'in_visible_answer_type': in_visible_answer_type}"/>
541                                </group>
542                                <group colspan="4" attrs="{'invisible':[('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','table')]}">
543                                    <field name="column_heading_ids" colspan="4" nolabel="1" default_get="{'in_visible_rating_weight':in_visible_rating_weight,'in_visible_menu_choice':in_visible_menu_choice}"/>
544                                     <group colspan="4" attrs="{'invisible':[('type','!=','table')]}">
545                                        <field name="no_of_rows"/>
546                                     </group>
547                                </group>
548                             </group>
549                             <newline/>
550                             <group  attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'), ('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale')]}">
551                                 <separator string="Comment Field" colspan="4"/>
552                                 <group colspan="4">
553                                     <field name="is_comment_require"/>
554                                 </group>
555                                 <group attrs="{'invisible':[('is_comment_require','=',False)]}">
556                                     <group col="4" colspan="4">
557                                         <field name="comment_field_type" colspan="1"/>
558                                         <group colspan="2" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
559                                             <field colspan="2" name="comment_label" />
560                                         </group>
561                                     </group>
562                                     <group col="6" colspan="4" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
563                                         <field name="comment_valid_type" colspan="2"/>
564                                         <group colspan="2" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'), ('comment_valid_type','!=','must_be_whole_number')]}">
565                                             <field name="comment_minimum_no" string="Between"/>
566                                             <field name="comment_maximum_no" string="and"/>
567                                         </group>
568                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_decimal_number')]}">
569                                             <field name="comment_minimum_float" string="Between"/>
570                                             <field name="comment_maximum_float" string="and"/>
571                                         </group>
572                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_date')]}">
573                                             <field name="comment_minimum_date" string="Between"/>
574                                             <field name="comment_maximum_date" string="and"/>
575                                         </group>
576                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'),('comment_valid_type','!=','must_be_decimal_number'),('comment_valid_type','!=','must_be_whole_number'),('comment_valid_type','!=','must_be_date'),('comment_valid_type','!=','must_be_email_address')]}">
577                                             <label string="When the comment is an invalid format, display this error message" colspan="4"/>
578                                             <field name="comment_valid_err_msg" nolabel="1" colspan="4"/>
579                                         </group>
580                                     </group>
581                                 </group>
582                             </group>
583                             <newline/>
584                             <group attrs="{'invisible':[('type','!=','matrix_of_choices_only_one_ans'),('type','!=','rating_scale')]}">
585                                 <field name="comment_column"/>
586                                 <group colspan="2" attrs="{'invisible':[('comment_column','!=',True)]}">
587                                     <field name="column_name" colspan="2"/>
588                                 </group>
589                             </group>
590                             <newline/>
591                             <group attrs="{'invisible':[('type','!=','single_textbox'), ('type','!=','multiple_textboxes')]}">
592                                 <separator string="Validation" colspan="4"/>
593                                 <group colspan="4">
594                                     <field name="is_validation_require"/>
595                                 </group>
596                                 <group col="6" colspan="4" attrs="{'invisible':[('is_validation_require','=',False)]}">
597                                     <field name="validation_type" colspan="2"/>
598                                     <group colspan="2" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'), ('validation_type','!=','must_be_whole_number')]}">
599                                         <field name="validation_minimum_no" string="Between"/>
600                                         <field name="validation_maximum_no" string="and"/>
601                                     </group>
602                                     <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_decimal_number')]}">
603                                         <field name="validation_minimum_float" string="Between"/>
604                                         <field name="validation_maximum_float" string="and"/>
605                                     </group>
606                                     <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_date')]}">
607                                         <field name="validation_minimum_date" string="Between"/>
608                                         <field name="validation_maximum_date" string="and"/>
609                                     </group>
610                                 </group>
611                                 <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'),('validation_type','!=','must_be_decimal_number'),('validation_type','!=','must_be_whole_number'),('validation_type','!=','must_be_date'),('validation_type','!=','must_be_email_address')]}">
612                                     <label string="When the comment is an invalid format, display this error message" colspan="4"/>
613                                     <field name="validation_valid_err_msg" nolabel="1" colspan="4"/>
614                                 </group>
615                             </group>
616                             <newline/>
617                             <group attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','single_textbox'),('type','!=','comment'),('type','!=','multiple_textboxes_diff_type')]}">
618                                 <separator string="Required Answer" colspan="4"/>
619                                 <newline/>
620                                 <field name="is_require_answer"/>
621                                 <group col="6" colspan="4" attrs="{'invisible':[('is_require_answer','=',False)]}">
622                                     <group colspan="4" attrs="{'invisible':[('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','multiple_textboxes_diff_type')]}">
623                                         <field name="required_type"/>
624                                         <group colspan="2" attrs="{'invisible':[('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly')]}">
625                                             <field name="req_ans" />
626                                         </group>
627                                         <group colspan="4" attrs="{'invisible':[('required_type','!=','a range')]}">
628                                             <field name="minimum_req_ans"/>
629                                             <field name="maximum_req_ans"/>
630                                         </group>
631                                     </group>
632                                     <group colspan="4" attrs="{'invisible':[('required_type','!=','all'),('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly'),('required_type','!=','a range'),('is_require_answer','!=',True)]}">
633                                         <label string="When the question is not answered, display this error message:"/>
634                                         <field name="req_error_msg" colspan="4" nolabel="1"/>
635                                     </group>
636                                     <group colspan="4" attrs="{'invisible':[('type','!=','numerical_textboxes')]}">
637                                         <group colspan="2" >
638                                             <field name="numeric_required_sum"/>
639                                         </group>
640                                         <newline/>
641                                         <label string="When the choices do not add up correctly, display this error message"/>
642                                         <field name="numeric_required_sum_err_msg" colspan="4" nolabel="1"/>
643                                     </group>
644                                     <group colspan="4" attrs="{'invisible':[('type','!=','rating_scale')]}">
645                                         <field name="rating_allow_one_column_require"/>
646                                     </group>
647                                 </group>
648                             </group>
649                             <newline/>
650                             <group attrs="{'invisible':[('type','!=','descriptive_text')]}">
651                                 <separator string="Descriptive Text" colspan="4"/>
652                                 <field name="descriptive_text" colspan="4" nolabel="1"/>
653                             </group>
654                         </page>
655                     </notebook>
656                 </form>
657             </field>
658         </record>
659
660         <record model="ir.ui.view" id="survey_question_tree">
661             <field name="name">survey_question_tree</field>
662             <field name="model">survey.question</field>
663             <field name="type">tree</field>
664             <field name="arch" type="xml">
665                 <tree string="Survey Question">
666                     <field name="sequence" string="Seq"/>
667                     <field name="question"/>
668                     <field name="page_id"/>
669                     <field name="survey"/>
670                     <field name="type"/>
671                 </tree>
672             </field>
673         </record>
674
675        <record id="survey_question_search" model="ir.ui.view">
676             <field name="name">survey_question_search</field>
677             <field name="model">survey.question</field>
678             <field name="type">search</field>
679             <field name="arch" type="xml">
680                 <search string="Search Question">
681                     <field name="question"/>
682                     <field name="page_id"/>
683                     <field name="survey" widget="selection"/>
684                     <field name="type"/>
685                     <newline/>
686                     <group expand="0" string="Group By..." colspan="4" col="20">
687                         <filter string="Page" icon="terp-stock_align_left_24" domain="[]"  context="{'group_by':'page_id'}"/>
688                     </group>
689                </search>
690             </field>
691         </record>
692
693         <record model="ir.actions.act_window" id="action_survey_question_form">
694             <field name="name">Survey Questions</field>
695             <field name="res_model">survey.question</field>
696             <field name="view_type">form</field>
697             <field name="view_mode">tree,form</field>
698             <field name="view_id" ref="survey_question_tree"></field>
699              <field name="search_view_id" ref="survey_question_search"/>
700         </record>
701
702         <record model="ir.ui.view" id="survey_question_wizard_test">
703             <field name="name">survey_question_wizard_test</field>
704             <field name="model">survey.question</field>
705             <field name="type">form</field>
706             <field name="arch" type="xml">
707                 <form string="Survey Question">
708                     <field name="question" colspan="4"/>
709                     <field name="sequence"/>
710                     <field name="tot_resp"/>
711                     <field name="type" on_change="on_change_type(type)"/>
712                     <field name="in_visible_rating_weight" invisible="1"/>
713                     <field name="in_visible_menu_choice" invisible="1"/>
714                     <field name="in_visible_answer_type" invisible="1"/>
715                     <notebook colspan="4">
716                         <page string="Options">
717                             <group attrs="{'invisible':[('type','!=','multiple_textboxes_diff_type'),('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','table')]}">
718                               <separator string="Answer" colspan="4"/>
719                                <group colspan="4" attrs="{'invisible':[('type','=','table')]}">
720                                    <field name="answer_choice_ids" nolabel="1" colspan="4" context="{'line_order': answer_choice_ids}" default_get="{'in_visible_answer_type': in_visible_answer_type}"/>
721                                </group>
722                                <group colspan="4" attrs="{'invisible':[('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','table')]}">
723                                    <field name="column_heading_ids" colspan="4" nolabel="1" default_get="{'in_visible_rating_weight':in_visible_rating_weight,'in_visible_menu_choice':in_visible_menu_choice}"/>
724                                     <group colspan="4" attrs="{'invisible':[('type','!=','table')]}">
725                                        <field name="no_of_rows"/>
726                                     </group>
727                                </group>
728                             </group>
729                             <newline/>
730                             <group  attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'), ('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale')]}">
731                                 <separator string="Comment Field" colspan="4"/>
732                                 <group colspan="4">
733                                     <field name="is_comment_require"/>
734                                 </group>
735                                 <group attrs="{'invisible':[('is_comment_require','=',False)]}">
736                                     <group col="4" colspan="4">
737                                         <field name="comment_field_type" colspan="1"/>
738                                         <group colspan="2" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
739                                             <field colspan="2" name="comment_label" />
740                                         </group>
741                                     </group>
742                                     <group col="6" colspan="4" attrs="{'invisible':[('comment_field_type','!=','char'),('comment_field_type','!=','text')]}">
743                                         <field name="comment_valid_type" colspan="2"/>
744                                         <group colspan="2" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'), ('comment_valid_type','!=','must_be_whole_number')]}">
745                                             <field name="comment_minimum_no" string="Between"/>
746                                             <field name="comment_maximum_no" string="and"/>
747                                         </group>
748                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_decimal_number')]}">
749                                             <field name="comment_minimum_float" string="Between"/>
750                                             <field name="comment_maximum_float" string="and"/>
751                                         </group>
752                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_date')]}">
753                                             <field name="comment_minimum_date" string="Between"/>
754                                             <field name="comment_maximum_date" string="and"/>
755                                         </group>
756                                         <group colspan="4" attrs="{'invisible':[('comment_valid_type','!=','must_be_specific_length'),('comment_valid_type','!=','must_be_decimal_number'),('comment_valid_type','!=','must_be_whole_number'),('comment_valid_type','!=','must_be_date'),('comment_valid_type','!=','must_be_email_address')]}">
757                                             <label string="When the comment is an invalid format, display this error message" colspan="4"/>
758                                             <field name="comment_valid_err_msg" nolabel="1" colspan="4"/>
759                                         </group>
760                                     </group>
761                                 </group>
762                             </group>
763                             <newline/>
764                             <group attrs="{'invisible':[('type','!=','matrix_of_choices_only_one_ans'),('type','!=','rating_scale')]}">
765                                 <field name="comment_column"/>
766                                 <group colspan="2" attrs="{'invisible':[('comment_column','!=',True)]}">
767                                     <field name="column_name" colspan="2"/>
768                                 </group>
769                             </group>
770                             <newline/>
771                             <group attrs="{'invisible':[('type','!=','single_textbox'), ('type','!=','multiple_textboxes')]}">
772                                 <separator string="Validation" colspan="4"/>
773                                 <group colspan="4">
774                                     <field name="is_validation_require"/>
775                                 </group>
776                                 <group col="6" colspan="4" attrs="{'invisible':[('is_validation_require','=',False)]}">
777                                     <field name="validation_type" colspan="2"/>
778                                     <group colspan="2" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'), ('validation_type','!=','must_be_whole_number')]}">
779                                         <field name="validation_minimum_no" string="Between"/>
780                                         <field name="validation_maximum_no" string="and"/>
781                                     </group>
782                                     <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_decimal_number')]}">
783                                         <field name="validation_minimum_float" string="Between"/>
784                                         <field name="validation_maximum_float" string="and"/>
785                                     </group>
786                                     <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_date')]}">
787                                         <field name="validation_minimum_date" string="Between"/>
788                                         <field name="validation_maximum_date" string="and"/>
789                                     </group>
790                                 </group>
791                                 <group colspan="4" attrs="{'invisible':[('validation_type','!=','must_be_specific_length'),('validation_type','!=','must_be_decimal_number'),('validation_type','!=','must_be_whole_number'),('validation_type','!=','must_be_date'),('validation_type','!=','must_be_email_address')]}">
792                                     <label string="When the comment is an invalid format, display this error message" colspan="4"/>
793                                     <field name="validation_valid_err_msg" nolabel="1" colspan="4"/>
794                                 </group>
795                             </group>
796                             <newline/>
797                             <group attrs="{'invisible':[('type','!=','multiple_choice_only_one_ans'), ('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','single_textbox'),('type','!=','comment'),('type','!=','multiple_textboxes_diff_type')]}">
798                                 <separator string="Required Answer" colspan="4"/>
799                                 <newline/>
800                                 <field name="is_require_answer"/>
801                                 <group col="6" colspan="4" attrs="{'invisible':[('is_require_answer','=',False)]}">
802                                     <group colspan="4" attrs="{'invisible':[('type','!=','multiple_choice_multiple_ans'),('type','!=','matrix_of_choices_only_one_ans'),('type','!=','matrix_of_choices_only_multi_ans'),('type','!=','matrix_of_drop_down_menus'),('type','!=','rating_scale'),('type','!=','multiple_textboxes'),('type','!=','numerical_textboxes'),('type','!=','date'),('type','!=','date_and_time'),('type','!=','multiple_textboxes_diff_type')]}">
803                                         <field name="required_type"/>
804                                         <group colspan="2" attrs="{'invisible':[('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly')]}">
805                                             <field name="req_ans" />
806                                         </group>
807                                         <group colspan="4" attrs="{'invisible':[('required_type','!=','a range')]}">
808                                             <field name="minimum_req_ans"/>
809                                             <field name="maximum_req_ans"/>
810                                         </group>
811                                     </group>
812                                     <group colspan="4" attrs="{'invisible':[('required_type','!=','all'),('required_type','!=','at least'),('required_type','!=','at most'),('required_type','!=','exactly'),('required_type','!=','a range'),('is_require_answer','!=',True)]}">
813                                         <label string="When the question is not answered, display this error message:"/>
814                                         <field name="req_error_msg" colspan="4" nolabel="1"/>
815                                     </group>
816                                     <group colspan="4" attrs="{'invisible':[('type','!=','numerical_textboxes')]}">
817                                         <group colspan="2" >
818                                             <field name="numeric_required_sum"/>
819                                         </group>
820                                         <newline/>
821                                         <label string="When the choices do not add up correctly, display this error message"/>
822                                         <field name="numeric_required_sum_err_msg" colspan="4" nolabel="1"/>
823                                     </group>
824                                     <group colspan="4" attrs="{'invisible':[('type','!=','rating_scale')]}">
825                                         <field name="rating_allow_one_column_require"/>
826                                     </group>
827                                 </group>
828                             </group>
829                             <newline/>
830                             <group attrs="{'invisible':[('type','!=','descriptive_text')]}">
831                                 <separator string="Descriptive Text" colspan="4"/>
832                                 <field name="descriptive_text" colspan="4" nolabel="1"/>
833                             </group>
834                         </page>
835                     </notebook>
836                       <group colspan="4">
837                           <label string="" colspan="3"/>
838                         <button name="survey_save"  string="Ok" type="object" icon="gtk-go-forward"/>
839                     </group>
840                 </form>
841             </field>
842         </record>
843
844         <!--
845             Survey Answer
846         -->
847
848         <record model ="ir.ui.view" id="survey_answer_form">
849             <field name="name">survey_answer_form</field>
850             <field name="model">survey.answer</field>
851             <field name="type">form</field>
852             <field name="arch" type="xml">
853                 <form string="Survey Answer">
854                     <field name="answer" colspan="4" select="1"/>
855                     <field name="sequence"/>
856                     <field name="in_visible_answer_type" invisible="1"/>
857                        <group colspan="4" attrs="{'invisible':[('in_visible_answer_type','=',True)]}">
858                         <field name="type" colspan="2"/>
859                         <group colspan="4" attrs="{'invisible':[('type','!=','selection')]}">
860                             <separator string="Menu Choices (each choice on separate by lines)" colspan="4"/>
861                             <field name="menu_choice" colspan="4" nolabel="1"/>
862                         </group>
863                     </group>
864                 </form>
865             </field>
866         </record>
867
868
869         <record model="ir.ui.view" id= "survey_answer_tree">
870             <field name="name">survey_answer_tree</field>
871             <field name="model">survey.answer</field>
872             <field name="type">tree</field>
873             <field name="arch" type="xml">
874                 <tree editable="bottom" string="Survey Answer">
875                     <field name="sequence" string="Seq"/>
876                     <field name="answer" select="1"/>
877                     <field name="type"/>
878                 </tree>
879             </field>
880         </record>
881
882         <!--
883             Survey Response Line
884         -->
885
886         <record model ="ir.ui.view" id= "survey_response_line_form">
887             <field name="name">survey_response_line_form</field>
888             <field name="model">survey.response.line</field>
889             <field name="type">form</field>
890             <field name="arch" type="xml">
891                 <form string="Survey Answer">
892                     <field name="question_id"/>
893                     <field name="date_create" select="1"/>
894                     <notebook colspan="4">
895                         <page string="Answer">
896                             <field name="response_answer_ids" colspan="4" nolabel="1"/>
897                             <group col="5" colspan="4">
898                                 <field name="state"/>
899                             </group>
900                         </page>
901                         <page string="Single Textboxes">
902                             <field name="single_text" colspan="4"/>
903                         </page>
904                         <page string="Comment">
905                             <separator string="Description" colspan="4"/>
906                             <field name="comment" nolabel="1" colspan="4"/>
907                         </page>
908                         <page string="Table Answer">
909                             <field name="response_table_ids" colspan="4" nolabel="1">
910                             <form string="Table">
911                                 <field name="column_id"/>
912                                 <field name="name"/>
913                                 <field name="value"/>
914                             </form>
915                             <tree string="Table">
916                                 <field name="column_id"/>
917                                 <field name="name"/>
918                                 <field name="value"/>
919                             </tree>
920                             </field>
921                         </page>
922                     </notebook>
923                 </form>
924             </field>
925         </record>
926
927         <record model="ir.ui.view" id="survey_response_line_tree">
928             <field name="name">survey_response_line_tree</field>
929             <field name="model">survey.response.line</field>
930             <field name="type">tree</field>
931             <field name="arch" type="xml">
932                 <tree string="Survey Answer Line">
933                     <field name="page_id"/>
934                     <field name="question_id"/>
935                     <field name="date_create" select="1"/>
936                     <field name="state"/>
937                 </tree>
938             </field>
939         </record>
940
941         <!--
942             Survey Response
943         -->
944
945         <record model="ir.ui.view" id="survey_response_form">
946             <field name="name">survey_response_form</field>
947             <field name="model">survey.response</field>
948             <field name="type">form</field>
949             <field name="arch" type="xml">
950                 <form string="Survey Answer">
951                     <field name="survey_id" select="1"/>
952                     <field name="date_create" select="1"/>
953                     <field name="user_id" select="1"/>
954                     <field name="response_type" select="1"/>
955                     <field name="question_ids" nolabel="1" colspan="4" />
956                     <field name="state" select="1"/>
957                 </form>
958             </field>
959         </record>
960
961         <record model="ir.ui.view" id="survey_response_tree">
962             <field name="name">survey_response_tree</field>
963             <field name="model">survey.response</field>
964             <field name="type">tree</field>
965             <field name="arch" type="xml">
966                 <tree string="Survey Answer">
967                     <field name="survey_id" select="1"/>
968                     <field name="date_create" select="1"/>
969                     <field name="user_id" select="1"/>
970                     <field name="response_type" select="1"/>
971                     <field name="state" select="1"/>
972                 </tree>
973             </field>
974         </record>
975
976         <!--
977             Survey Response Answer
978         -->
979
980         <record model="ir.ui.view" id="survey_response_answer_form">
981             <field name="name">survey_response_answer_form</field>
982             <field name="model">survey.response.answer</field>
983             <field name="type">form</field>
984             <field name="arch" type="xml">
985                 <form string="Survey Answer">
986                     <group colspan="4">
987                         <field name="answer_id"/>
988                         <field name="answer" />
989                     </group>
990                     <field name="value_choice"/>
991                     <label string="(Use Only Question Type is matrix_of_drop_down_menus)" align="0.0"/>
992                     <group colspan="4" col="4">
993                         <field name="comment_field"/>
994                         <field name="column_id"/>
995                     </group>
996                 </form>
997             </field>
998         </record>
999
1000         <record model="ir.ui.view" id="survey_response_answer_tree">
1001             <field name="name">survey_response_answer_tree</field>
1002             <field name="model">survey.response.answer</field>
1003             <field name="type">tree</field>
1004             <field name="arch" type="xml">
1005                 <tree editable="top" string="Survey Answer">
1006                     <field name="answer_id"/>
1007                     <field name="answer" />
1008                     <field name="value_choice" />
1009                     <field name="column_id"/>
1010                     <field name="comment_field"/>
1011                 </tree>
1012             </field>
1013         </record>
1014
1015         <!--
1016             Survey Question Column Heading
1017     -->
1018
1019         <record model="ir.ui.view" id="survey_question_column_heading_form">
1020             <field name="name">survey_question_column_heading_form</field>
1021             <field name="model">survey.question.column.heading</field>
1022             <field name="type">form</field>
1023             <field name="arch" type="xml">
1024                 <form string="Column Heading">
1025                     <field name="title"/>
1026                     <field name="in_visible_rating_weight" invisible="1"/>
1027                     <field name="in_visible_menu_choice" invisible="1"/>
1028                     <group colspan="4" attrs="{'invisible':[('in_visible_rating_weight','!=',False)]}">
1029                         <field name="rating_weight"/>
1030                         <label align="0.0" string="Use if question type is rating_scale" />
1031                     </group>
1032                     <group colspan="4" attrs="{'invisible':[('in_visible_menu_choice','!=',False)]}">
1033                         <separator string="Menu Choices (each choice on separate lines)" colspan="4"/>
1034                         <field name="menu_choice" nolabel="1" colspan="4"/>
1035                     </group>
1036                 </form>
1037             </field>
1038         </record>
1039
1040         <record model="ir.ui.view" id="survey_question_column_heading_tree">
1041             <field name="name">survey_question_column_heading_tree</field>
1042             <field name="model">survey.question.column.heading</field>
1043             <field name="type">tree</field>
1044             <field name="arch" type="xml">
1045                 <tree editable="bottom" string="Column Heading">
1046                     <field name="title"/>
1047                 </tree>
1048             </field>
1049         </record>
1050
1051         <!--
1052             Survey Request
1053         -->
1054
1055         <record model="ir.ui.view" id="survey_request_form">
1056             <field name="name">survey_request_form</field>
1057             <field name="model">survey.request</field>
1058             <field name="type">form</field>
1059             <field name="arch" type="xml">
1060                 <form string="Survey Request">
1061                     <field name="date_deadline"/>
1062                     <field name="survey_id"/>
1063                     <field name="user_id" on_change="on_change_user(user_id)"/>
1064                      <field name="response" readonly="1"/>
1065                     <group colspan="4" col="6">
1066                      <field name="state"/>
1067                         <button name="survey_req_cancel" string="Cancelled" states="waiting_answer" type="object" icon="gtk-cancel"/>
1068                         <button name="survey_req_draft" string="Set to Draft" states="cancel,done" type="object" icon="gtk-new"/>
1069                         <button name="survey_req_waiting_answer" string="Watting Answer" states="draft" type="object" icon="gtk-new"/>
1070                         <button name="survey_req_done" string="Done" states="waiting_answer" type="object" icon="gtk-ok"/>
1071                     </group>
1072                 </form>
1073             </field>
1074         </record>
1075
1076         <record model="ir.ui.view" id="survey_request_tree">
1077             <field name="name">survey_request_tree</field>
1078             <field name="model">survey.request</field>
1079             <field name="type">tree</field>
1080             <field name="arch" type="xml">
1081                 <tree string="Evaluation Plan Phase" colors="red:date_deadline&lt;current_date">
1082                     <field name="date_deadline"/>
1083                     <field name="user_id"/>
1084                     <field name="survey_id"/>
1085                     <field name="response" />
1086                     <field name="state" />
1087                 </tree>
1088             </field>
1089         </record>
1090
1091        <record id="survey_request_search" model="ir.ui.view">
1092             <field name="name">survey_request_search</field>
1093             <field name="model">survey.request</field>
1094             <field name="type">search</field>
1095             <field name="arch" type="xml">
1096                 <search string="Search Survey">
1097                    <group col='10' colspan='4'>
1098                         <filter icon="terp-gtk-media-pause" string="Waiting Answer" domain="[('state','=','waiting_answer')]"/>
1099                         <filter icon="terp-emblem-important" string="Late" domain="[('date_deadline','&lt;',current_date)]"/>
1100                         <separator orientation="vertical"/>
1101                         <field name="survey_id" widget="selection" select="1"/>
1102                         <field name="email" select="1"/>
1103                         <field name="user_id" select="1">
1104                         <filter string="MY" icon="terp-personal" domain="[('user_id','=',uid)]"/>
1105                         </field>
1106                     </group>
1107                     <newline/>
1108                     <group expand="0" string="Group By..." colspan="4" col="20">
1109                         <filter string="User" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}"/>
1110                         <separator orientation="vertical"/>
1111                         <filter string="Survey" icon="terp-stock_align_left_24" domain="[]"  context="{'group_by':'survey_id'}"/>
1112                         <separator orientation="vertical"/>
1113                         <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]"  context="{'group_by':'state'}"/>
1114                     </group>
1115                </search>
1116             </field>
1117         </record>
1118
1119         <record model="ir.actions.act_window" id="action_survey_request_tree">
1120             <field name="name">Survey Requests</field>
1121             <field name="res_model">survey.request</field>
1122             <field name="view_type">form</field>
1123             <field name="view_mode">tree,form</field>
1124             <field name="domain">[('user_id','=',uid)]</field>
1125             <field name="view_id" ref="survey_request_tree"></field>
1126             <field name="search_view_id" ref="survey_request_search"/>
1127         </record>
1128
1129         <menuitem name="Survey Requests" id="menu_survey_type_form1"
1130             action="action_survey_request_tree" parent='menu_answer_surveys'
1131             groups="base.group_tool_manager"/>
1132
1133         <!--
1134             Survey Type
1135         -->
1136
1137         <record model="ir.ui.view" id="survey_type_form">
1138             <field name="name">survey_type_form</field>
1139             <field name="model">survey.type</field>
1140             <field name="type">form</field>
1141             <field name="arch" type="xml">
1142                 <form string="Survey Type">
1143                     <field name="name" select="1"/>
1144                     <field name="code" select="1"/>
1145                 </form>
1146             </field>
1147         </record>
1148
1149         <record model="ir.ui.view" id="survey_type_tree">
1150             <field name="name">survey_type_tree</field>
1151             <field name="model">survey.type</field>
1152             <field name="type">tree</field>
1153             <field name="arch" type="xml">
1154                 <tree string="Survey Type">
1155                     <field name="name" select="1"/>
1156                     <field name="code" select="1"/>
1157                 </tree>
1158             </field>
1159         </record>
1160
1161         <record model="ir.actions.act_window" id="action_survey_type_form">
1162             <field name="name">Survey Type</field>
1163             <field name="res_model">survey.type</field>
1164             <field name="view_type">form</field>
1165             <field name="view_mode">tree,form</field>
1166             <field name="view_id" ref="survey_type_tree"></field>
1167         </record>
1168
1169         <act_window 
1170             context="{'search_default_survey_id': [active_id]}"
1171             id="act_survey_pages"
1172             name="Pages"
1173             res_model="survey.page"
1174             src_model="survey"/>
1175
1176         <act_window 
1177             context="{'search_default_survey': active_id}"
1178             id="act_survey_question"
1179             name="Questions"
1180             res_model="survey.question"
1181             src_model="survey"/>
1182
1183
1184         <act_window 
1185             context="{'search_default_page_id': active_id}"
1186             id="act_survey_page_question"
1187             name="Questions"
1188             res_model="survey.question"
1189             src_model="survey.page"/>
1190
1191         <act_window domain="[('question_id', '=', active_id)]"
1192             id="act_survey_answer"
1193             name="Answers"
1194             res_model="survey.answer"
1195             src_model="survey.question"/>
1196
1197         <menuitem name="Answer a Survey" id="menu_run_survey_form" sequence="2"
1198             action="action_view_survey_name" parent="menu_answer_surveys"            groups="base.group_tool_user,base.group_tool_manager,group_survey_user" icon="STOCK_INDEX"/>
1199
1200     </data>
1201 </openerp>