37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 Akretion (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="purchase_order_form" model="ir.ui.view">
|
|
<field name="name">purchase.order.product.required.form</field>
|
|
<field name="model">purchase.order</field>
|
|
<field name="inherit_id" ref="purchase.purchase_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='order_line']/tree/field[@name='product_id']" position="attributes">
|
|
<attribute name="required">1</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="purchase_order_line_form" model="ir.ui.view">
|
|
<field name="name">purchase.order.line.product.required.form</field>
|
|
<field name="model">purchase.order.line</field>
|
|
<field name="inherit_id" ref="purchase.purchase_order_line_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="product_id" position="attributes">
|
|
<attribute name="required">1</attribute>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
|
|
</data>
|
|
</openerp>
|