18 lines
		
	
	
		
			813 B
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			813 B
		
	
	
	
		
			XML
		
	
	
		
			Executable File
		
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <!-- Copyright 2018-Today datenpol gmbh(<http://www.datenpol.at>)
 | |
|      License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses). -->
 | |
| 
 | |
| <odoo>
 | |
|     <record id="delivery_carrier_from_view" model="ir.ui.view">
 | |
|         <field name="name">delivery_carrier_from_view</field>
 | |
|         <field name="model">delivery.carrier</field>
 | |
|         <field name="inherit_id" ref="delivery.view_delivery_carrier_form"/>
 | |
|         <field name="arch" type="xml">
 | |
|             <xpath expr="//field[@name='company_id']" position="after">
 | |
|                 <field name="website_ids" widget="many2many_tags"
 | |
|                        domain="company_id and [('company_id', '=', company_id)] or []"/>
 | |
|             </xpath>
 | |
|         </field>
 | |
|     </record>
 | |
| </odoo>
 |