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.
23 lines
962 B
23 lines
962 B
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res invoice line description settings</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="account.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath
|
|
expr="//div[@id='invoicing_settings']"
|
|
position="inside">
|
|
<div class="col-xs-12 col-md-6 o_setting_box">
|
|
<div class="o_setting_left_pane">
|
|
<field name="group_invert_po_ref_on_inv_line"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="group_invert_po_ref_on_inv_line"/>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|