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.
17 lines
711 B
17 lines
711 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="invoice_amount_in_words" model="ir.ui.view">
|
|
<field name="name">Amount in words invoice form</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='narration']" position="after">
|
|
<group colspan="2">
|
|
<div style="padding-top:15px; padding-bottom:15px;">
|
|
<b><label for="number_to_words"/></b><field name="number_to_words"/>
|
|
</div>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|