~banking-addons-team/banking-addons/bank-statement-reconcile-70

« back to all changes in this revision

Viewing changes to account_statement_one_move/statement_view.xml

[ADD] module account_statement_one_move

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<!--
 
3
  account_statement_one_move for OpenERP
 
4
  Copyright (C) 2013-TODAY Akretion <http://www.akretion.com>.
 
5
  The licence is in the file __openerp__.py
 
6
-->
 
7
 
 
8
<openerp>
 
9
    <data>
 
10
    
 
11
        <!-- INHERITED VIEW FOR THE OBJECT : account_statement -->
 
12
    
 
13
        <record id="account_statement_view_form" model="ir.ui.view">
 
14
            <field name="name">account_statement_one_move.account_statement.view_form</field>
 
15
            <field name="model">account.statement.profile</field>
 
16
            <field name="inherit_id" ref="account_statement_ext.statement_importer_view_form" />
 
17
            <field name="arch" type="xml">
 
18
                <field name="balance_check" position="after">
 
19
                    <field name="one_move"/>
 
20
                    <field name="split_transfer_line" attrs="{'invisible': [('one_move', '=', False)]}"/>
 
21
                </field>
 
22
            </field>
 
23
        </record>
 
24
 
 
25
    </data>
 
26
</openerp>