31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <odoo>
 | |
| 
 | |
|     <record id="sale_layout_category_form_view" model="ir.ui.view">
 | |
|         <field name="name">sale_layout_category_form_view</field>
 | |
|         <field name="model">sale.layout_category</field>
 | |
|         <field name="inherit_id" ref="sale.report_configuration_form_view"/>
 | |
|         <field name="arch" type="xml">
 | |
|             <field name="name" position="after">
 | |
|                 <field name="order_id"/>
 | |
|             </field>
 | |
| 
 | |
|         </field>
 | |
|     </record>
 | |
| 
 | |
|     <record id="sale_order_form_view" model="ir.ui.view">
 | |
|         <field name="name">sale_order_form_view</field>
 | |
|         <field name="model">sale.order</field>
 | |
|         <field name="inherit_id" ref="sale.view_order_form"/>
 | |
|         <field name="arch" type="xml">
 | |
|             <xpath expr="//field[@name='order_line']/form//field[@name='layout_category_id']" position="attributes">
 | |
|                 <attribute name="options">{'no_create': True}</attribute>
 | |
|             </xpath>
 | |
|             <xpath expr="//field[@name='order_line']/tree//field[@name='layout_category_id']" position="attributes">
 | |
|                 <attribute name="options">{'no_create': True}</attribute>
 | |
|             </xpath>
 | |
|         </field>
 | |
|     </record>
 | |
| 
 | |
| </odoo>
 |