~ubuntu-branches/ubuntu/quantal/openerp6.1/quantal

« back to all changes in this revision

Viewing changes to openerp/addons/l10n_fr/wizard/fr_report_bilan_view.xml

  • Committer: Package Import Robot
  • Author(s): Yolanda Robla
  • Date: 2012-09-20 15:29:00 UTC
  • Revision ID: package-import@ubuntu.com-20120920152900-woyy3yww8z6acmsk
Tags: upstream-6.1-1+dfsg
ImportĀ upstreamĀ versionĀ 6.1-1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
 
 
3
<openerp>
 
4
    <data>
 
5
 
 
6
        <record id="bilan_report_view" model="ir.ui.view">
 
7
            <field name="name">Bilan Report</field>
 
8
            <field name="model">account.bilan.report</field>
 
9
            <field name="type">form</field>
 
10
            <field name="arch" type="xml">
 
11
                <form string="Bilan Report">
 
12
                       <field name="fiscalyear_id"/>
 
13
                       <separator colspan="4"/>
 
14
                    <group colspan="4" col="6">
 
15
                        <button special="cancel" string="Cancel" icon="gtk-cancel"/>
 
16
                        <button name="print_bilan_report" string="Print" type="object" icon="gtk-ok"/>
 
17
                    </group>
 
18
                     </form>
 
19
            </field>
 
20
        </record>
 
21
 
 
22
        <record id="action_account_bilan_report" model="ir.actions.act_window">
 
23
            <field name="name">Bilan Report</field>
 
24
            <field name="type">ir.actions.act_window</field>
 
25
            <field name="res_model">account.bilan.report</field>
 
26
            <field name="view_type">form</field>
 
27
            <field name="view_mode">form</field>
 
28
            <field name="view_id" ref="bilan_report_view"/>
 
29
            <field name="target">new</field>
 
30
        </record>
 
31
 
 
32
        <record model="ir.values" id="action_account_bilan_report_values">
 
33
            <field name="model_id" ref="model_account_bilan_report" />
 
34
            <field name="name">Bilan Report</field>
 
35
            <field name="key2">client_print_multi</field>
 
36
            <field name="value" eval="'ir.actions.act_window,' +str(ref('action_account_bilan_report'))" />
 
37
            <field name="key">action</field>
 
38
            <field name="model">account.move.line</field>
 
39
        </record>
 
40
 
 
41
    </data>
 
42
</openerp>