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.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							26 lines
						
					
					
						
							1.1 KiB
						
					
					
				| <?xml version="1.0" encoding="UTF-8" ?> | |
| <odoo> | |
|     <!--    Tree view record of the timer configuration model--> | |
|     <record id="timer_configuration_view_tree" model="ir.ui.view"> | |
|         <field name="name">timer.configuration.view.tree</field> | |
|         <field name="model">timer.configuration</field> | |
|         <field name="arch" type="xml"> | |
|             <tree string="Configuration" editable="bottom"> | |
|                 <field name="project_id"/> | |
|                 <field name="stage_id"/> | |
|                 <field name="stage_ids" invisible="1"/> | |
|             </tree> | |
|         </field> | |
|     </record> | |
|     <!--     Record action for timer configuration model--> | |
|     <record id="timer_configuration_action" model="ir.actions.act_window"> | |
|         <field name="name">Timer Configuration</field> | |
|         <field name="res_model">timer.configuration</field> | |
|         <field name="view_mode">tree</field> | |
|     </record> | |
|     <!--    Menu action for timer configuration model--> | |
|     <menuitem id="timer_configuration_menu_root" name="Timer Configuration" | |
|               action="timer_configuration_action" | |
|               parent="project.menu_project_config"> | |
|     </menuitem> | |
| </odoo>
 | |
| 
 |