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