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
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="form_account_wizardQueryBankInOutAeroo" model="ir.ui.view">
<field name="name">Query Bank In Out</field>
<field name="model">account.wizard_query_bank_in_out</field>
<field name="inherit_id" ref="koi_account_query.form_account_wizardQueryBankInOut"/>
<field name="type">form</field>
<field name="arch" type="xml" >
<data>
<button name="button_query_report" string="Query" colspan="1" type="object" class="oe_highlight" position="after">
<button name="button_print_ods" string="Print As ODS" colspan="1" type="object" class="oe_highlight"/>
or
<button name="button_print_xls" string="Print As XLS" colspan="1"
confirm="Please make sure that You use legal copy of MS Excel. Use Print as ODS if You do not use legal copy of MS Excel"
type="object" class="oe_highlight"/>
</button>
</data>
</field>
</record>
</data>
</openerp>
|