forked from OCA/account-reconcile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner_view.xml
32 lines (30 loc) · 1.31 KB
/
partner_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<!--
account_statement_completion_label for OpenERP
Copyright (C) 2013 Akretion (http://www.akretion.com). All Rights Reserved
@author Sébastien BEAU <[email protected]>
The licence is in the file __openerp__.py
-->
<openerp>
<data>
<record id="bk_view_partner_form" model="ir.ui.view">
<field name="name">account_bank_statement_import.view.partner.form</field>
<field name="model">res.partner</field>
<field name="priority">20</field>
<field name="inherit_id" ref="account_statement_base_completion.bk_view_partner_form"/>
<field name="arch" type="xml">
<field name="bank_statement_label" position="replace">
<group groups="account.group_account_invoice" colspan="4">
<field name="bank_statement_label" colspan="4">
<tree string="Statement Label" editable="top">
<field name="label"/>
<field name="account_id"/>
<field name="profile_id"/>
</tree>
</field>
</group>
</field>
</field>
</record>
</data>
</openerp>