[MERGE] merged trunk.
[odoo/odoo.git] / addons / account_voucher / account_voucher_view.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <openerp>
3     <data>
4         <record model="ir.ui.view" id="view_voucher_tree">
5             <field name="name">account.voucher.tree</field>
6             <field name="model">account.voucher</field>
7             <field name="arch" type="xml">
8                 <tree colors="blue:state == 'draft';gray:state == 'cancel';red:audit" string="Voucher Entries">
9                     <field name="date"/>
10                     <field name="number"/>
11                     <field name="reference"/>
12                     <field name="partner_id"/>
13                     <field name="journal_id" groups="account.group_account_user"/>
14                     <field name="period_id" invisible="context.get('visible', True)"/>
15                     <field name="type" invisible="context.get('visible', True)"/>
16                     <field name="amount" sum="Total Amount"/>
17                     <field name="audit" invisible="1"/>
18                     <field name="state"/>
19                 </tree>
20             </field>
21         </record>
22         <record model="ir.ui.view" id="view_voucher_line_form">
23             <field name="name">account.voucher.line.form</field>
24             <field name="model">account.voucher.line</field>
25             <field name="arch" type="xml">
26                 <form string="Voucher Lines" version="7.0">
27                     <group col="4">
28                         <field name="name"/>
29                         <field name="account_id"/>
30                         <field name="partner_id"/>
31                         <field name="amount"/>
32                     </group>
33                 </form>
34             </field>
35         </record>
36
37         <record model="ir.ui.view" id="view_voucher_form">
38             <field name="name">account.voucher.form</field>
39             <field name="model">account.voucher</field>
40             <field name="arch" type="xml">
41                 <form string="Accounting Voucher" version="7.0">
42                   <header>
43                       <button name="proforma_voucher" string="Post" states="draft" class="oe_highlight"/>
44                       <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to unreconcile this record?"/>
45                       <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
46                       <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
47                       <field name="state" widget="statusbar" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
48                   </header>
49                   <sheet string="Accounting Voucher">
50                     <group col="6" colspan="4">
51                         <field name="partner_id" required="1" on_change="onchange_journal_voucher(line_ids, tax_id, amount, partner_id, journal_id, type)"/>
52                         <field name="payment_rate_currency_id" invisible="1"/>
53                         <field name="date" on_change="onchange_date(date, currency_id, payment_rate_currency_id, amount, company_id)"/>
54                         <field name="journal_id" widget="selection" on_change="onchange_journal_voucher(line_ids, tax_id, amount, partner_id, journal_id, type)"/>
55                         <field name="type" required="1"/>
56                         <field name="name" colspan="2"/>
57                         <field name="company_id" widget="selection" groups="base.group_multi_company"/>
58                         <field name="reference"/>
59                         <field name="account_id" widget="selection" invisible="True"/>
60                     </group>
61                     <notebook colspan="4">
62                         <page string="Voucher Entry">
63                             <field name="line_ids" on_change="onchange_price(line_ids, tax_id, partner_id)" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}">
64                                 <tree string="Voucher Items" editable="bottom">
65                                     <field name="account_id"/>
66                                     <field name="name"/>
67                                     <field name="amount" sum="Total Amount"/>
68                                     <field name="type"/>
69                                     <field name="account_analytic_id" groups="analytic.group_analytic_accounting"/>
70                                 </tree>
71                             </field>
72                             <group col="3">
73                                 <group string="Internal Notes">
74                                     <field name="narration" colspan="2" nolabel="1"/>
75                                 </group>
76                                 <group string="Other Information">
77                                     <field name="number"/>
78                                     <field name="currency_id"/>
79                                 </group>
80                                 <group col="4" attrs="{'invisible':[('type','in',['payment', 'receipt', False])]}">
81                                     <separator string="Total" colspan="4"/>
82                                     <field name="tax_id" on_change="onchange_price(line_ids, tax_id, partner_id)" widget="selection"/>
83                                     <field name="tax_amount" nolabel="1"/>
84                                     <button type="object" icon="terp-stock_format-scientific" name="compute_tax" string="Compute Tax" attrs="{'invisible': [('state','!=','draft')]}"/>
85                                     <label colspan="1" string=""/><field name="amount" string="Total"/>
86                                 </group>
87                             </group>
88                         </page>
89                         <page string="Journal Items" attrs="{'invisible': [('state','!=','posted')]}">
90                             <group col="4">
91                                 <field name="period_id"/>
92                                 <field name="audit"/>
93                             </group>
94                             <field name="move_ids" readonly="1">
95                                <tree string="Journal Items">
96                                    <field name="move_id"/>
97                                    <field name="ref"/>
98                                    <field name="date"/>
99                                    <field name="statement_id"/>
100                                    <field name="partner_id"/>
101                                    <field name="account_id"/>
102                                    <field name="name"/>
103                                    <field name="debit"/>
104                                    <field name="credit"/>
105                                    <field name="state"/>
106                                    <field name="reconcile_id"/>
107                                </tree>
108                             </field>
109                         </page>
110                     </notebook>
111                   </sheet>
112                   <div class="oe_chatter">
113                       <field name="message_ids" widget="mail_thread"/>
114                   </div>
115                 </form>
116             </field>
117         </record>
118
119         <record id="view_voucher_filter" model="ir.ui.view">
120             <field name="name">account.voucher.select</field>
121             <field name="model">account.voucher</field>
122             <field name="priority">1</field>
123             <field name="arch" type="xml">
124                 <search string="Search Vouchers">
125                     <field name="number" string="Voucher"/>
126                     <field name="date"/>
127                     <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
128                     <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
129                     <separator/>
130                     <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted'), ('audit','=',False)]" help="To Review"/>
131                     <field name="partner_id"/>
132                     <field name="journal_id" context="{'journal_id': self, 'set_visible':False}" />
133                     <field name="period_id"/>
134                     <group expand="0" string="Group By...">
135                         <filter string="Partner" icon="terp-partner" domain="[]" context="{'group_by':'partner_id'}"/>
136                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
137                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
138                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
139                     </group>
140                 </search>
141             </field>
142         </record>
143
144         <record id="account_cash_statement_graph" model="ir.ui.view">
145             <field name="name">account.voucher.graph</field>
146             <field name="model">account.voucher</field>
147             <field name="arch" type="xml">
148                 <graph string="Voucher Statistics" type="bar">
149                     <field name="date"/>
150                     <field name="amount" operator="+"/>
151                 </graph>
152             </field>
153          </record>
154
155         <!-- Journal Vouchers -->
156         <record model="ir.actions.act_window" id="action_voucher_list">
157             <field name="name">Journal Vouchers</field>
158             <field name="res_model">account.voucher</field>
159             <field name="view_type">form</field>
160             <field name="view_mode">tree,form,graph</field>
161             <field name="context">{'type':'general'}</field>
162             <field name="view_id" eval="view_voucher_tree"/>
163             <field name="search_view_id" ref="view_voucher_filter"/>
164         </record>
165         <record id="action_journal_voucher_tree" model="ir.actions.act_window.view">
166             <field eval="1" name="sequence"/>
167             <field name="view_mode">tree</field>
168             <field name="act_window_id" ref="action_voucher_list"/>
169         </record>
170         <record id="action_journal_voucher_form" model="ir.actions.act_window.view">
171             <field eval="2" name="sequence"/>
172             <field name="view_mode">form</field>
173             <field name="view_id" ref="view_voucher_form"/>
174             <field name="act_window_id" ref="action_voucher_list"/>
175         </record>
176         <menuitem action="action_voucher_list" id="menu_encode_entries_by_voucher" parent="account.menu_finance_entries" sequence="6"/>
177
178         <act_window
179             id="act_journal_voucher_open"
180             name="Voucher Entries"
181             context="{'search_default_journal_id': active_id, 'type':type, 'default_journal_id': active_id}"
182             res_model="account.voucher"
183             src_model="account.journal"/>
184
185         <record model="ir.actions.act_window" id="action_review_voucher_list">
186             <field name="name">Vouchers Entries</field>
187             <field name="res_model">account.voucher</field>
188             <field name="view_type">form</field>
189             <field name="view_mode">tree,form</field>
190             <field name="view_id" eval="view_voucher_tree"/>
191             <field name="domain">[('state','=','posted')]</field>
192             <field name="context">{'state':'posted'}</field>
193             <field name="search_view_id" ref="view_voucher_filter"/>
194         </record>
195
196         <record id="view_bank_statement_form_invoice" model="ir.ui.view">
197             <field name="name">account.bank.statement.invoice.form.inherit</field>
198             <field name="model">account.bank.statement</field>
199             <field name="inherit_id" ref="account.view_bank_statement_form"/>
200             <field name="arch" type="xml">
201                 <xpath expr="//div[@name='import_buttons']" position="inside">
202                     <button name="%(action_view_account_statement_from_invoice_lines)d"
203                             string="Import Invoices" type="action" icon="gtk-execute"
204                             attrs="{'invisible':[('state','=','confirm')]}"/>
205                 </xpath>
206             </field>
207         </record>
208
209         <record id="view_bank_statement_tree_voucher" model="ir.ui.view">
210             <field name="name">account.bank.statement.voucher.tree.inherit</field>
211             <field name="model">account.bank.statement</field>
212             <field name="inherit_id" ref="account.view_bank_statement_form"/>
213             <field name="arch" type="xml">
214                 <xpath expr="//page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
215                     <field name="voucher_id" context="{'line_type': type, 'default_type': amount &lt; 0 and 'payment' or 'receipt', 'type': amount &lt; 0 and 'payment' or 'receipt', 'default_partner_id': partner_id, 'default_journal_id': parent.journal_id, 'default_amount': abs(amount), 'default_reference': ref, 'default_date': date, 'default_name': name}"/>
216                 </xpath>
217             </field>
218         </record>
219
220         <record id="view_bank_statement_form_voucher" model="ir.ui.view">
221             <field name="name">account.bank.statement.voucher.form.inherit</field>
222             <field name="model">account.bank.statement</field>
223             <field name="inherit_id" ref="account.view_bank_statement_form"/>
224             <field name="arch" type="xml">
225                 <xpath expr="//page[@name='statement_line_ids']/field[@name='line_ids']/form/group/field[@name='sequence']" position="before">
226                     <field name="voucher_id" context="{'line_type': type, 'default_type': amount &lt; 0 and 'payment' or 'receipt', 'type': amount &lt; 0 and 'payment' or 'receipt', 'default_partner_id': partner_id, 'default_journal_id': parent.journal_id, 'default_amount': abs(amount), 'default_reference': ref, 'default_date': date, 'default_name': name}"/>
227                 </xpath>
228             </field>
229         </record>
230         <record id="view_cash_statement_tree_voucher" model="ir.ui.view">
231             <field name="name">account.cash.statement.voucher.tree.inherit</field>
232             <field name="model">account.bank.statement</field>
233             <field name="inherit_id" ref="account.view_bank_statement_form2"/>
234             <field name="arch" type="xml">
235                 <xpath expr="//page/field[@name='line_ids']/tree/field[@name='amount']" position="after">
236                     <field name="voucher_id" context="{'line_type': type, 'default_type': amount &lt; 0 and 'payment' or 'receipt', 'type': amount &lt; 0 and 'payment' or 'receipt', 'default_partner_id': partner_id, 'default_journal_id': parent.journal_id, 'default_amount': abs(amount), 'default_reference': ref, 'default_date': date, 'default_name': name}"/>
237                 </xpath>
238             </field>
239         </record>
240
241         <record id="view_cash_statement_form_voucher" model="ir.ui.view">
242             <field name="name">account.cash.statement.voucher.form.inherit</field>
243             <field name="model">account.bank.statement</field>
244             <field name="inherit_id" ref="account.view_bank_statement_form2"/>
245             <field name="arch" type="xml">
246                 <xpath expr="//page/field[@name='line_ids']/form/group/field[@name='amount']" position="after">
247                     <field name="voucher_id" context="{'line_type': type, 'default_type': amount &lt; 0 and 'payment' or 'receipt', 'type': amount &lt; 0 and 'payment' or 'receipt', 'default_partner_id': partner_id, 'default_journal_id': parent.journal_id, 'default_amount': abs(amount), 'default_reference': ref, 'default_date': date, 'default_name': name}"/>
248                 </xpath>
249             </field>
250         </record>
251
252         <!-- res.company form view -->
253         <record model="ir.ui.view" id="view_company_inherit_currency_xchange_form">
254             <field name="name">res.company.form.inherit</field>
255             <field name="inherit_id" ref="base.view_company_form"/>
256             <field name="model">res.company</field>
257             <field name="arch" type="xml">
258                 <field name="currency_id" position="after">
259                       <field name="income_currency_exchange_account_id"/>
260                       <field name="expense_currency_exchange_account_id"/>
261                 </field>
262             </field>
263         </record>
264
265     </data>
266     <data noupdate="1">
267
268         <!-- After installation of the module, open the related menu -->
269         <record id="action_client_invoice_menu" model="ir.actions.client">
270             <field name="name">Open Invoicing Menu</field>
271             <field name="tag">reload</field>
272             <field name="params" eval="{'menu_id': ref('account.menu_finance')}"/>
273         </record>
274         <record id="todo_open_invoice_menu" model="ir.actions.todo">
275             <field name="action_id" ref="action_client_invoice_menu"/>
276             <field name="type">automatic</field>
277             <field name="sequence">100</field>
278         </record>
279
280     </data>
281 </openerp>