mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[IMP] Set a default account on a new bank statement line when manual entry [ADD] basic security rules on profile and completion rules [ADD] account_statement_completion_voucher to better adapt the views of bank statement [FIX] Call to the completion button [FIX] Auto-launch completion after import [FIX] inherit view [merge] [FIX] account_advanced_reconcile: improved view readability with less larger column [FIX] account_advanced_reconcile: improved view readability with less larger column [FIX] count of reconciliations was incorrect for partial reconciliations (lp:c2c-financial-addons/6.1 rev 70)
21 lines
956 B
XML
21 lines
956 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data noupdate="0">
|
|
<record id="view_easy_reconcile_form" model="ir.ui.view">
|
|
<field name="name">account.easy.reconcile.form</field>
|
|
<field name="model">account.easy.reconcile</field>
|
|
<field name="type">form</field>
|
|
<field name="inherit_id" ref="account_easy_reconcile.account_easy_reconcile_form"/>
|
|
<field name="arch" type="xml">
|
|
<page name="information" position="inside">
|
|
<group colspan="2" col="2">
|
|
<separator colspan="4" string="Advanced. Partner and Ref"/>
|
|
<label string="Match multiple debit vs multiple credit entries. Allow partial reconcilation.
|
|
The lines should have the partner, the credit entry ref. is matched vs the debit entry ref. or name." colspan="4"/>
|
|
</group>
|
|
</page>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|