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.
16 lines
820 B
16 lines
820 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inheriting res_config_settings form view to add custom fields-->
|
|
<record id="res_config_settings_view_form_purchase" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.purchase.orderline.image</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="purchase.res_config_settings_view_form_purchase"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//setting[@id='manage_purchase_agreements']" position="after">
|
|
<setting id="manage_purchase_agreements" help="Show Product Image In Report">
|
|
<field name="show_product_image_in_report_purchase"/>
|
|
</setting>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|