i want to add a filed in the form view of res_config_settings_view_form (pricisly right after po_order_approval field) i trid this code on the xml field
<record id="view_res_config_tech_inherit" model="ir.ui.view">
<field name="name">tech.config.form.inherit</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//div[@class='app_settings_block']" position="before">
<div class="row mt16">
<field name="first_ki"/>
</div>
</xpath>
</field>
</record>
and on my .py file
class purchase(models.TransientModel):
_inherit = "res.config.settings"
first_ki = fields.Monetary('Ki')
but i stiil can't displaying the field
thanks for replay @Arun but the field still dosent shows up
thanks @Paresh, but it seems that i was trigering on the rong external_id, i change
<field name="inherit_id" ref="purchase.res_config_settings_view_form_purchase"/>
and it works now