mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
25 lines
855 B
XML
25 lines
855 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="view_account_config" model="ir.ui.view">
|
|
<field name="name">account settings</field>
|
|
<field name="model">account.config.settings</field>
|
|
<field name="inherit_id" ref="account.view_account_config_settings"/>
|
|
<field name="arch" type="xml">
|
|
<separator string="eInvoicing & Payments" position="before">
|
|
<separator string="Reconciliation"/>
|
|
<group>
|
|
<label for="id" string="Options"/>
|
|
<div name="reconciliation_config">
|
|
<div>
|
|
<label for="reconciliation_commit_every"/>
|
|
<field name="reconciliation_commit_every" class="oe_inline"/>
|
|
</div>
|
|
</div>
|
|
</group>
|
|
</separator>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|