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.
 
 
 
 
 

18 lines
922 B

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Added new field in sale order-->
<record id="view_order_form" model="ir.ui.view">
<field name="name">sale.order.view.form.inherit.exchange.currency.rate</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='payment_term_id']" position='after'>
<field name="company_currency_id" invisible="1"/>
<field name="is_exchange" readonly="state in ['cancel', 'sale']"
invisible="currency_id == company_currency_id"/>
<field name="rate" digits="[12,6]" readonly="state in ['cancel', 'sale']"
invisible="is_exchange == False or currency_id == company_currency_id"/>
</xpath>
</field>
</record>
</odoo>