[MERGE]
[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="4" 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="date" on_change="onchange_date(date, currency_id, payment_rate_currency_id, amount, company_id)"/>
53                         <field name="journal_id" widget="selection" on_change="onchange_journal_voucher(line_ids, tax_id, amount, partner_id, journal_id, type)"/>
54                         <field name="type" required="1"/>
55                         <field name="name" colspan="2"/>
56                         <field name="company_id" widget="selection" groups="base.group_multi_company"/>
57                         <field name="reference"/>
58                         <field name="number"/>
59                         <field name="currency_id" groups="base.group_multi_currency"/>
60                         <field name="account_id" widget="selection" invisible="True"/>
61                         <field name="payment_rate_currency_id" invisible="1"/>
62                     </group>
63                     <notebook colspan="4">
64                         <page string="Voucher Entry">
65                             <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}">
66                                 <tree string="Voucher Items" editable="bottom">
67                                     <field name="account_id"/>
68                                     <field name="name"/>
69                                     <field name="amount" sum="Total Amount"/>
70                                     <field name="type"/>
71                                     <field name="account_analytic_id" groups="analytic.group_analytic_accounting"/>
72                                 </tree>
73                             </field>
74                             <group>
75                                 <field name="narration" nolabel="1" placeholder="Internal Notes"/>
76                                 <group class="oe_subtotal_footer oe_right" attrs="{'invisible':[('type','in',['payment', 'receipt', False])]}">
77                                     <field name="tax_id" on_change="onchange_price(line_ids, tax_id, partner_id)" widget="selection" nolabel="1"/>
78                                     <field name="tax_amount" nolabel="1"/>
79                                     <div class="oe_subtotal_footer_separator">
80                                         <label for="amount"/>
81                                         <button type="object" icon="terp-stock_format-scientific"   name="compute_tax" class="oe_link oe_edit_only" string="(Update)" attrs="{'invisible': [('state','!=','draft')]}"/>
82                                     </div>
83                                     <field name="amount" class="oe_subtotal_footer_separator" nolabel="1"/>
84                                 </group>
85                             </group>
86                         </page>
87                         <page string="Journal Items" attrs="{'invisible': [('state','!=','posted')]}">
88                             <group col="4">
89                                 <field name="period_id"/>
90                                 <field name="audit"/>
91                             </group>
92                             <field name="move_ids" readonly="1">
93                                <tree string="Journal Items">
94                                    <field name="move_id"/>
95                                    <field name="ref"/>
96                                    <field name="date"/>
97                                    <field name="statement_id"/>
98                                    <field name="partner_id"/>
99                                    <field name="account_id"/>
100                                    <field name="name"/>
101                                    <field name="debit"/>
102                                    <field name="credit"/>
103                                    <field name="state"/>
104                                    <field name="reconcile_id"/>
105                                </tree>
106                             </field>
107                         </page>
108                     </notebook>
109                   </sheet>
110                   <div class="oe_chatter">
111                       <field name="message_ids" widget="mail_thread"/>
112                       <field name="message_follower_ids" widget="mail_followers"/>
113                   </div>
114                 </form>
115             </field>
116         </record>
117
118         <record id="view_voucher_filter" model="ir.ui.view">
119             <field name="name">account.voucher.select</field>
120             <field name="model">account.voucher</field>
121             <field name="priority">1</field>
122             <field name="arch" type="xml">
123                 <search string="Search Vouchers">
124                     <field name="number" string="Voucher"/>
125                     <field name="date"/>
126                     <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
127                     <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
128                     <separator/>
129                     <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted'), ('audit','=',False)]" help="To Review"/>
130                     <field name="partner_id"/>
131                     <field name="journal_id" context="{'journal_id': self, 'set_visible':False}" />
132                     <field name="period_id"/>
133                     <group expand="0" string="Group By...">
134                         <filter string="Partner" icon="terp-partner" domain="[]" context="{'group_by':'partner_id'}"/>
135                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
136                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
137                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
138                     </group>
139                 </search>
140             </field>
141         </record>
142
143         <record id="account_cash_statement_graph" model="ir.ui.view">
144             <field name="name">account.voucher.graph</field>
145             <field name="model">account.voucher</field>
146             <field name="arch" type="xml">
147                 <graph string="Voucher Statistics" type="bar">
148                     <field name="date"/>
149                     <field name="amount" operator="+"/>
150                 </graph>
151             </field>
152          </record>
153
154         <!-- Journal Vouchers -->
155         <record model="ir.actions.act_window" id="action_voucher_list">
156             <field name="name">Journal Vouchers</field>
157             <field name="res_model">account.voucher</field>
158             <field name="view_type">form</field>
159             <field name="view_mode">tree,form,graph</field>
160             <field name="context">{'type':'general'}</field>
161             <field name="view_id" eval="view_voucher_tree"/>
162             <field name="search_view_id" ref="view_voucher_filter"/>
163         </record>
164         <record id="action_journal_voucher_tree" model="ir.actions.act_window.view">
165             <field eval="1" name="sequence"/>
166             <field name="view_mode">tree</field>
167             <field name="act_window_id" ref="action_voucher_list"/>
168         </record>
169         <record id="action_journal_voucher_form" model="ir.actions.act_window.view">
170             <field eval="2" name="sequence"/>
171             <field name="view_mode">form</field>
172             <field name="view_id" ref="view_voucher_form"/>
173             <field name="act_window_id" ref="action_voucher_list"/>
174         </record>
175         <menuitem action="action_voucher_list" id="menu_encode_entries_by_voucher" parent="account.menu_finance_entries" sequence="6"/>
176
177         <act_window
178             id="act_journal_voucher_open"
179             name="Voucher Entries"
180             context="{'search_default_journal_id': active_id, 'type':type, 'default_journal_id': active_id}"
181             res_model="account.voucher"
182             src_model="account.journal"/>
183
184         <record model="ir.actions.act_window" id="action_review_voucher_list">
185             <field name="name">Vouchers Entries</field>
186             <field name="res_model">account.voucher</field>
187             <field name="view_type">form</field>
188             <field name="view_mode">tree,form</field>
189             <field name="view_id" eval="view_voucher_tree"/>
190             <field name="domain">[('state','=','posted')]</field>
191             <field name="context">{'state':'posted'}</field>
192             <field name="search_view_id" ref="view_voucher_filter"/>
193         </record>
194
195         <record id="view_bank_statement_form_invoice" model="ir.ui.view">
196             <field name="name">account.bank.statement.invoice.form.inherit</field>
197             <field name="model">account.bank.statement</field>
198             <field name="inherit_id" ref="account.view_bank_statement_form"/>
199             <field name="arch" type="xml">
200                 <xpath expr="//div[@name='import_buttons']" position="inside">
201                     <button name="%(action_view_account_statement_from_invoice_lines)d"
202                             string="Import Invoices" type="action" icon="gtk-execute"
203                             attrs="{'invisible':[('state','=','confirm')]}"/>
204                 </xpath>
205             </field>
206         </record>
207
208         <record id="view_bank_statement_tree_voucher" model="ir.ui.view">
209             <field name="name">account.bank.statement.voucher.tree.inherit</field>
210             <field name="model">account.bank.statement</field>
211             <field name="inherit_id" ref="account.view_bank_statement_form"/>
212             <field name="arch" type="xml">
213                 <xpath expr="//page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
214                     <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}"/>
215                 </xpath>
216             </field>
217         </record>
218
219         <record id="view_bank_statement_form_voucher" model="ir.ui.view">
220             <field name="name">account.bank.statement.voucher.form.inherit</field>
221             <field name="model">account.bank.statement</field>
222             <field name="inherit_id" ref="account.view_bank_statement_form"/>
223             <field name="arch" type="xml">
224                 <xpath expr="//page[@name='statement_line_ids']/field[@name='line_ids']/form/group/field[@name='sequence']" position="before">
225                     <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}"/>
226                 </xpath>
227             </field>
228         </record>
229         <record id="view_cash_statement_tree_voucher" model="ir.ui.view">
230             <field name="name">account.cash.statement.voucher.tree.inherit</field>
231             <field name="model">account.bank.statement</field>
232             <field name="inherit_id" ref="account.view_bank_statement_form2"/>
233             <field name="arch" type="xml">
234                 <xpath expr="//page/field[@name='line_ids']/tree/field[@name='amount']" position="after">
235                     <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}"/>
236                 </xpath>
237             </field>
238         </record>
239
240         <record id="view_cash_statement_form_voucher" model="ir.ui.view">
241             <field name="name">account.cash.statement.voucher.form.inherit</field>
242             <field name="model">account.bank.statement</field>
243             <field name="inherit_id" ref="account.view_bank_statement_form2"/>
244             <field name="arch" type="xml">
245                 <xpath expr="//page/field[@name='line_ids']/form/group/field[@name='amount']" position="after">
246                     <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}"/>
247                 </xpath>
248             </field>
249         </record>
250
251         <!-- res.company form view -->
252         <record model="ir.ui.view" id="view_company_inherit_currency_xchange_form">
253             <field name="name">res.company.form.inherit</field>
254             <field name="inherit_id" ref="base.view_company_form"/>
255             <field name="model">res.company</field>
256             <field name="arch" type="xml">
257                 <field name="currency_id" position="after">
258                       <field name="income_currency_exchange_account_id"/>
259                       <field name="expense_currency_exchange_account_id"/>
260                 </field>
261             </field>
262         </record>
263
264     </data>
265     <data noupdate="1">
266
267         <!-- After installation of the module, open the related menu -->
268         <record id="action_client_invoice_menu" model="ir.actions.client">
269             <field name="name">Open Invoicing Menu</field>
270             <field name="tag">reload</field>
271             <field name="params" eval="{'menu_id': ref('account.menu_finance')}"/>
272         </record>
273         <record id="base.open_menu" model="ir.actions.todo">
274             <field name="action_id" ref="action_client_invoice_menu"/>
275             <field name="state">open</field>
276         </record>
277
278     </data>
279 </openerp>