diff --git a/views/hr_timesheet.xml b/views/hr_timesheet.xml
index b5d8a0602d6e39636636b0ba8526565fdf3cf212..4d870b628da53c9738b5d350f47337107646e1fe 100644
--- a/views/hr_timesheet.xml
+++ b/views/hr_timesheet.xml
@@ -13,11 +13,11 @@
             <field name="arch" type="xml">
                 <field name="name" position="replace"/>
                 <field name="project_id" position="attributes" >
-                    <attribute name="options">{'no_create_edit': True}</attribute>
+                    <attribute name="options">{'no_open': True, 'no_create': True}</attribute>
                     <attribute name="string">Code activité UR</attribute>
                 </field>
                 <field name="project_id" position="after" >
-                    <field name="partner_id" domain="[('is_company', '=', True)]" required="True" class="td-ellipsis" />
+                    <field name="partner_id" domain="[('is_company', '=', True)]" required="True" class="td-ellipsis" options="{'no_open': True, 'no_create': True}" />
                     <field name="name" class="td-minwidth" />
                 </field>
                 <field name="task_id" position="attributes">
@@ -25,7 +25,7 @@
                 </field>
                 <field name="unit_amount" widget="timesheet_uom" sum="Total"/>
                 <field name="unit_amount" position="after">
-                    <field name="ur_financial_system_id" options="{'no_create_edit': True}"/>
+                    <field name="ur_financial_system_id" options="{'no_open': True, 'no_create': True}"/>
                 </field>
             </field>
         </record>
diff --git a/views/hr_timesheet_cgscop.xml b/views/hr_timesheet_cgscop.xml
index 567f559f468b4155929eda6989f8b94c15d202d9..67404a8d2120cbeb121c12ba2149fa7fcf8ea569 100644
--- a/views/hr_timesheet_cgscop.xml
+++ b/views/hr_timesheet_cgscop.xml
@@ -28,12 +28,12 @@
                         </div>
                         <group>
                             <group>
-                                <field name="partner_id" string="Contact par défaut" help="Contact par défaut auquel est rattaché cette activité. Ce contact sera sélectionné automatiquement dans les feuilles de temps"/>
-                                <field name="ur_id" string="Union Régionale" />
-                                <field name="company_id" groups="base.group_multi_company" string="Société" />
+                                <field name="partner_id" string="Contact par défaut" help="Contact par défaut auquel est rattaché cette activité. Ce contact sera sélectionné automatiquement dans les feuilles de temps" options="{'no_open': True, 'no_create': True}"/>
+                                <field name="ur_id" string="Union Régionale" options="{'no_open': True, 'no_create': True}" required="1" />
+                                <field name="company_id" groups="base.group_multi_company" options="{'no_open': True, 'no_create': True}" string="Société" invisible="1" />
                             </group>
                             <group>
-                                <field name="cgscop_timesheet_code_id" required="1" placeholder="Code activité National"/>
+                                <field name="cgscop_timesheet_code_id" required="1" placeholder="Code activité National" options="{'no_open': True, 'no_create': True}"/>
                                 <field name="privacy_visibility" invisible="1"/>
                                 <field name="allow_timesheets" invisible="1"/>
                             </group>
@@ -42,9 +42,8 @@
                         <group string="Configuration" name="project_config" groups="base.group_no_one">
                             <group>
                                 <field name="user_id" string="Project Manager"
-                                        attrs="{'readonly':[('active','=',False)]}"/>
+                                        attrs="{'readonly':[('active','=',False)]}" options="{'no_open': True, 'no_create': True}"/>
                                 <field name="sequence" groups="base.group_no_one"/>
-                                <field name="company_id" groups="base.group_multi_company"/>
                             </group>
                             <group >
                                 <field name="allow_timesheets" />
@@ -89,8 +88,8 @@
                     <field name="sequence" widget="handle"/>
                     <field name="active" invisible="1"/>
                     <field name="name" />
-                    <field name="cgscop_timesheet_code_id" />
-                    <field name="partner_id" string="Contact"/>
+                    <field name="cgscop_timesheet_code_id" options="{'no_open': True, 'no_create': True}"/>
+                    <field name="partner_id" string="Contact" options="{'no_open': True, 'no_create': True}"/>
                 </tree>
             </field>
         </record>
diff --git a/views/ur_financial_system.xml b/views/ur_financial_system.xml
index 18b0296a81218014ffd6fd164581977d4573be29..52d88618f389d8917be3b02a2fa90305efee4a5b 100644
--- a/views/ur_financial_system.xml
+++ b/views/ur_financial_system.xml
@@ -10,8 +10,8 @@
             <field name="arch" type="xml">
                 <tree editable='top'>
                     <field name="name" />
-                    <field name="ur_id" />
-                    <field name="company_id" groups="base.group_no_one" />
+                    <field name="ur_id" options="{'no_open': True, 'no_create': True}"/>
+                    <field name="company_id" groups="base.group_no_one" options="{'no_open': True, 'no_create': True}"/>
                 </tree>
             </field>
         </record>