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
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="form_account_wizardQueryBalanceSheetAeroo" model="ir.ui.view">
<field name="name">Query Balance Sheet</field>
<field name="model">account.wizard_query_balance_sheet</field>
<field name="inherit_id" ref="koi_account_query.form_account_wizardQueryBalanceSheet"/>
<field name="type">form</field>
<field name="arch" type="xml" >
<data>
<button name="button_show_query" string="Show 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" type="object"
confirm="Please make sure that You use legal copy of MS Excel. Use Print as ODS if You have not use legal copy of MS Excel"
class="oe_highlight"/>
or
</button>
</data>
</field>
</record>
</data>
</openerp>
|