Browse Source

[IMP] account_export_csv - improve wizard to 7.0 form layout for buttons

pull/756/head
Yannick Vaucher 11 years ago
committed by Kévin Roche
parent
commit
7f19e6fbf7
  1. 20
      account_export_csv/wizard/account_export_csv_view.xml

20
account_export_csv/wizard/account_export_csv_view.xml

@ -7,7 +7,7 @@
<field name="model">account.csv.export</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Accounting CSV Export">
<form string="Accounting CSV Export" version="7.0">
<group colspan="4">
<field name="company_id" />
<field name="fiscalyear_id" domain="[('company_id', '=', company_id)]"/>
@ -16,17 +16,17 @@
<field name="periods" domain="[('state', '=', 'draft'),('fiscalyear_id','=',fiscalyear_id)]"/>
<field name="journal_ids"/>
</group>
<separator string ="" colspan="4"/>
<group colspan="4" col="3">
<button special="cancel" string="Close" icon="gtk-cancel"/>
<button name="action_manual_export_account" string="Trial Balance" type="object" icon="gtk-execute"/>
<button name="action_manual_export_analytic" string="Analytic Balance (with accounts)" type="object" icon="gtk-execute"/>
<button name="action_manual_export_journal_entries" string="Journal Entries" type="object" icon="gtk-execute"/>
</group>
<separator string ="" colspan="4"/>
<group colspan="4">
<separator string ="Report" colspan="4"/>
<group colspan="4" style="bo">
<field name="data" filename="export_filename"/>
</group>
<footer>
<button name="action_manual_export_account" string="Trial Balance" type="object" icon="gtk-execute" class="oe_highlight"/>
<button name="action_manual_export_analytic" string="Analytic Balance (with accounts)" type="object" icon="gtk-execute" class="oe_highlight"/>
<button name="action_manual_export_journal_entries" string="Journal Entries" type="object" icon="gtk-execute" class="oe_highlight"/>
or
<button string="Close" class="oe_link" special="cancel" />
</footer>
</form>
</field>

Loading…
Cancel
Save