[REM] completion in Gantt chart tasks and projects, not supported by OpenERP and...
[odoo/odoo.git] / addons / account_voucher / voucher_payment_receipt_view.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_voucher_filter_customer_pay" model="ir.ui.view">
6             <field name="name">account.voucher.customer.pay.select</field>
7             <field name="model">account.voucher</field>
8             <field name="type">search</field>
9             <field name="arch" type="xml">
10                 <search string="Search Vouchers">
11                     <group>
12                         <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
13                         <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
14                         <separator orientation="vertical"/>
15                         <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
16                         <separator orientation="vertical"/>
17                         <field name="date"/>
18                         <field name="number"/>
19                         <field name="partner_id" string="Customer"/>
20                     </group>
21                     <newline/>
22                     <group>
23                         <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
24                         <field name="period_id" groups="base.group_extended"/>
25                     </group>
26                    <newline/>
27                     <group expand="0" string="Group By...">
28                         <filter string="Customer" icon="terp-personal" domain="[]" context="{'group_by':'partner_id'}"/>
29                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
30                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
31                         <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
32                     </group>
33                 </search>
34             </field>
35         </record>
36
37
38         <record id="view_voucher_filter_vendor_pay" model="ir.ui.view">
39             <field name="name">account.voucher.purchase.pay.select</field>
40             <field name="model">account.voucher</field>
41             <field name="type">search</field>
42             <field name="arch" type="xml">
43                 <search string="Search Vouchers">
44                     <group>
45                         <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
46                         <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
47                         <separator orientation="vertical"/>
48                         <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" groups="base.group_extended" help="To Review"/>
49                         <separator orientation="vertical"/>
50                         <field name="date"/>
51                         <field name="number"/>
52                         <field name="partner_id" string="Supplier"/>
53                     </group>
54                     <newline/>
55                     <group>
56                         <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('bank','cash'))]"/>
57                         <field name="period_id" groups="base.group_extended"/>
58                     </group>
59                    <newline/>
60                     <group expand="0" string="Group By...">
61                         <filter string="Supplier" icon="terp-personal" domain="[]" context="{'group_by':'partner_id'}"/>
62                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
63                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
64                         <filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
65                     </group>
66                 </search>
67             </field>
68         </record>
69         <record model="ir.ui.view" id="view_low_priority_payment_form">
70             <field name="name">account.voucher.payment.low.priority.form</field>
71             <field name="model">account.voucher</field>
72             <field name="type">form</field>
73             <field name="priority">1</field>
74             <field name="arch" type="xml">
75                 <form string="Bill Payment">
76                     <group col="6" colspan="4">
77                         <field name="partner_id" required="1" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Supplier" context="{'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1, 'invoice_currency': currency_id}" />
78                         <field name="amount" on_change="onchange_amount(amount, payment_rate, partner_id, journal_id, currency_id, type, date, payment_rate_currency_id, company_id, context)"/>
79                         <field name="journal_id"
80                             domain="[('type','in',['bank', 'cash'])]"
81                             widget="selection" select="1"
82                             on_change="onchange_journal(journal_id, line_dr_ids, False, partner_id, date, amount, type, company_id, context)"
83                             string="Payment Method"/>
84                         <field name="date" select="1" on_change="onchange_date(date, currency_id, payment_rate_currency_id, amount, company_id, context)"/>
85                         <field name="reference" select="1" string="Payment Ref"/>
86                         <field name="name" colspan="2"/>
87                         <field name="account_id"
88                             widget="selection"
89                             invisible="True"/>
90                         <field name="pre_line" invisible="1"/>
91                         <field name="type" invisible="True"/>
92                     </group>
93                     <notebook colspan="4">
94                         <page string="Payment Information">
95                             <field name="line_dr_ids" attrs="{'invisible': [('type', '=', 'receipt')]}" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
96                                 <tree string="Open Supplier Journal Entries" editable="bottom" colors="gray:amount==0">
97                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
98                                         on_change="onchange_move_line_id(move_line_id)"
99                                         domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
100                                         />
101                                     <field name="account_id" groups="base.group_extended" domain="[('type','=','payable')]"/>
102                                     <field name="date_original" readonly="1"/>
103                                     <field name="date_due" readonly="1"/>
104                                     <field name="amount_original" readonly="1"/>
105                                     <field name="amount_unreconciled" readonly="1"/>
106                                     <field name="amount" sum="Total Allocation"/>
107                                 </tree>
108                             </field>
109                             <field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('type', '=', 'payment')]}" context="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
110                                 <tree string="Open Customer Journal Entries" editable="bottom" colors="gray:amount==0">
111                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
112                                         on_change="onchange_move_line_id(move_line_id)"
113                                         domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
114                                         />
115                                     <field name="account_id" groups="base.group_extended" domain="[('type','=','payable')]"/>
116                                     <field name="date_original" readonly="1"/>
117                                     <field name="date_due" readonly="1"/>
118                                     <field name="amount_original" readonly="1"/>
119                                     <field name="amount_unreconciled" readonly="1"/>
120                                     <field name="amount" sum="Total Allocation"/>
121                                 </tree>
122                             </field>
123                             <group col="2" colspan="3">
124                                 <separator string="Internal Notes" colspan="2"/>
125                                 <field name="narration" colspan="2" nolabel="1"/>
126                             </group>
127                             <group col="4" colspan="1">
128                                 <separator string="Other Information" colspan="4"/>
129                                 <field name="currency_id" colspan="4"/>
130                                 <field name="payment_rate" required="1" on_change="onchange_rate(payment_rate, amount, currency_id, payment_rate_currency_id, company_id, context)" groups='base.group_extended' colspan="3"/>
131                                 <field name="payment_rate_currency_id" groups='base.group_extended' colspan="1" nolabel="1" on_change="onchange_payment_rate_currency(currency_id, payment_rate, payment_rate_currency_id, date, amount, company_id, context)"/>
132                                 <field name="paid_amount_in_company_currency" groups='base.group_extended' colspan="4" invisible="1"/>
133                                 <field name="number" colspan="4"/>
134                             </group>
135                         </page>
136                     </notebook>
137                 </form>
138             </field>
139         </record>
140
141         <record model="ir.ui.view" id="view_vendor_payment_form">
142             <field name="name">account.voucher.payment.form</field>
143             <field name="model">account.voucher</field>
144             <field name="type">form</field>
145             <field name="arch" type="xml">
146                 <form string="Bill Payment">
147                     <group col="6" colspan="4">
148                         <field name="partner_id" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" context="{'invoice_currency':currency_id, 'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}"  string="Supplier"/>
149                         <field name="amount" invisible="context.get('line_type', False)" on_change="onchange_amount(amount, payment_rate, partner_id, journal_id, currency_id, type, date, payment_rate_currency_id, company_id, context)"/>
150                         <field name="journal_id"
151                             domain="[('type','in',['bank', 'cash'])]"
152                             invisible="context.get('line_type', False)"
153                             widget="selection" select="1"
154                             on_change="onchange_journal(journal_id, line_dr_ids, False, partner_id, date, amount, type, company_id, context)"
155                             string="Payment Method"/>
156                         <field name="date" select="1" invisible="context.get('line_type', False)" on_change="onchange_date(date, currency_id, payment_rate_currency_id, amount, company_id, context)"/>
157                         <field name="reference" select="1" invisible="context.get('line_type', False)" string="Payment Ref"/>
158                         <field name="name" colspan="2" invisible="context.get('line_type', False)"/>
159                         <field name="company_id" widget="selection" groups="base.group_multi_company"/>
160                         <field name="account_id"
161                             widget="selection"
162                             invisible="True"/>
163                         <field name="pre_line" invisible="1"/>
164                         <field name="type" invisible="True"/>
165                         <field name="currency_id" invisible="1" colspan="4"/>
166                     </group>
167                     <notebook colspan="4">
168                         <page string="Payment Information">
169                             <field name="line_dr_ids" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140">
170                                 <tree string="Supplier Invoices and Outstanding transactions" editable="bottom" colors="gray:amount==0">
171                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
172                                         on_change="onchange_move_line_id(move_line_id)"
173                                         domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
174                                         required="1"
175                                         />
176                                     <field name="account_id" groups="base.group_no_one" domain="[('type','=','payable')]"/>
177                                     <field name="date_original" readonly="1"/>
178                                     <field name="date_due" readonly="1"/>
179                                     <field name="amount_original" readonly="1"/>
180                                     <field name="amount_unreconciled" readonly="1"/>
181                                     <field name="reconcile" on_change="onchange_reconcile(reconcile, amount, amount_unreconciled, context)"/>
182                                     <field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)"/>
183                                 </tree>
184                             </field>
185                             <field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" context="{'journal_id':journal_id, 'partner_id':partner_id}">
186                                 <tree string="Credits" editable="bottom" colors="gray:amount==0">
187                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
188                                         on_change="onchange_move_line_id(move_line_id)"
189                                         domain="[('account_id.type','=','payable'), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
190                                         required="1"
191                                         />
192                                     <field name="account_id" groups="base.group_no_one" domain="[('type','=','payable')]"/>
193                                     <field name="date_original" readonly="1"/>
194                                     <field name="date_due" readonly="1"/>
195                                     <field name="amount_original" readonly="1"/>
196                                     <field name="amount_unreconciled" readonly="1"/>
197                                     <field name="reconcile" on_change="onchange_reconcile(reconcile, amount, amount_unreconciled, context)"/>
198                                     <field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)"/>
199                                 </tree>
200                             </field>
201                             <group col="2" colspan="3">
202                                 <separator string="Internal Notes" colspan="2"/>
203                                 <field name="narration" colspan="2" nolabel="1"/>
204                             </group>
205                             <group col="2" colspan="1">
206                                 <group col="4" colspan="1" attrs="{'invisible':[('currency_id','=',False),('is_multi_currency','=',False)]}">
207                                     <separator string="Currency Options" colspan="4"/>
208                                     <field name="is_multi_currency" invisible="1"/>
209                                     <field name="payment_rate" required="1" on_change="onchange_rate(payment_rate, amount, currency_id, payment_rate_currency_id, company_id, context)" groups='base.group_extended' colspan="3"/>
210                                     <field name="payment_rate_currency_id" groups='base.group_extended' colspan="1" nolabel="1" on_change="onchange_payment_rate_currency(currency_id, payment_rate, payment_rate_currency_id, date, amount, company_id, context)"/>
211                                     <field name="paid_amount_in_company_currency" groups='base.group_extended' colspan="4" invisible="1"/>
212                                 </group>
213                                 <group col="2" colspan="1">
214                                     <separator string="Payment Options" colspan="2"/>
215                                     <field name="writeoff_amount"/>
216                                     <field name="payment_option" required="1"/>
217                                     <field name="writeoff_acc_id"
218                                            attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
219                                            domain="[('type','=','other')]"/>
220                                     <field name="comment"
221                                            attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
222                                     <field name="analytic_id"
223                                            groups="analytic.group_analytic_accounting"/>
224                                 </group>
225                             </group>
226                         </page>
227                         <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
228                             <group col="6" colspan="4">
229                                 <field name="period_id"/>
230                                 <field name="audit"/>
231                             </group>
232                             <field name="number" colspan="4"/>
233                             <field name="move_ids" colspan="4" nolabel="1" readonly="1">
234                                <tree string="Journal Items">
235                                    <field name="move_id"/>
236                                    <field name="ref"/>
237                                    <field name="date"/>
238                                    <field name="statement_id"/>
239                                    <field name="partner_id"/>
240                                    <field name="account_id"/>
241                                    <field name="name"/>
242                                    <field name="debit"/>
243                                    <field name="credit"/>
244                                    <field name="state"/>
245                                    <field name="reconcile_id"/>
246                                    <field name="amount_currency"/>
247                                    <field name="currency_id"/>
248                                </tree>
249                             </field>
250                         </page>
251                     </notebook>
252                     <group col="10" colspan="4">
253                         <field name="state" widget="statusbar" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
254                         <button name="cancel_voucher" string="Cancel" states="draft,proforma"  icon="gtk-cancel" invisible="context.get('line_type', False)"/>
255                         <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" icon="terp-stock_effects-object-colorize" invisible="context.get('line_type', False)" confirm="Are you sure to unreconcile and cancel this record ?"/>
256                         <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize" invisible="context.get('line_type', False)"/>
257                         <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward" invisible="context.get('line_type', False)"/>
258                     </group>
259                 </form>
260             </field>
261         </record>
262
263         <record id="action_vendor_payment" model="ir.actions.act_window">
264             <field name="name">Supplier Payment</field>
265             <field name="res_model">account.voucher</field>
266             <field name="view_type">form</field>
267             <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','payment')]</field>
268             <field name="context">{'type':'payment'}</field>
269             <field name="view_id" eval="False"/>
270             <field name="search_view_id" ref="view_voucher_filter_vendor_pay"/>
271             <field name="target">current</field>
272             <field name="help">The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills.</field>
273         </record>
274         <record id="action_vendor_payment_tree" model="ir.actions.act_window.view">
275             <field eval="1" name="sequence"/>
276             <field name="view_mode">tree</field>
277             <field name="act_window_id" ref="action_vendor_payment"/>
278         </record>
279         <record id="action_vendor_payment_form" model="ir.actions.act_window.view">
280             <field eval="2" name="sequence"/>
281             <field name="view_mode">form</field>
282             <field name="view_id" ref="view_vendor_payment_form"/>
283             <field name="act_window_id" ref="action_vendor_payment"/>
284         </record>
285
286
287         <menuitem action="action_vendor_payment" icon="STOCK_JUSTIFY_FILL" sequence="12"
288             id="menu_action_vendor_payment"  parent="account.menu_finance_payables"/>
289
290         <record model="ir.ui.view" id="view_vendor_receipt_form">
291             <field name="name">account.voucher.receipt.form</field>
292             <field name="model">account.voucher</field>
293             <field name="type">form</field>
294             <field name="arch" type="xml">
295                 <form string="Customer Payment">
296                     <group col="6" colspan="4">
297                         <field name="partner_id" required="1" invisible="context.get('line_type', False)" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/>
298                         <field name="currency_id" invisible="1"/>
299                         <field name="amount"
300                             invisible="context.get('line_type', False)"
301                             string="Paid Amount"
302                             on_change="onchange_amount(amount, payment_rate, partner_id, journal_id, currency_id, type, date, payment_rate_currency_id, company_id, context)"/>
303                         <field name="journal_id"
304                             domain="[('type','in',['bank', 'cash'])]"
305                             invisible="context.get('line_type', False)"
306                             widget="selection" select="1"
307                             on_change="onchange_journal(journal_id, line_cr_ids, False, partner_id, date, amount, type, company_id, context)"
308                             string="Payment Method"/>
309                         <field name="date" select="1" invisible="context.get('line_type', False)" on_change="onchange_date(date, currency_id, payment_rate_currency_id, amount, company_id, context)"/>
310                         <field name="reference" select="1" invisible="context.get('line_type', False)" string="Payment Ref"/>
311                         <field name="name" colspan="2" invisible="context.get('line_type', False)"/>
312                         <field name="company_id" widget="selection" groups="base.group_multi_company"/>
313                         <field name="account_id"
314                             widget="selection"
315                             invisible="True"/>
316                         <field name="pre_line" invisible="1"/>
317                         <field name="type" invisible="True"/>
318                     </group>
319                     <notebook colspan="4">
320                         <page string="Payment Information">
321                             <field name="line_cr_ids" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
322                                 <tree string="Invoices and outstanding transactions" editable="bottom" colors="gray:amount==0">
323                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
324                                         on_change="onchange_move_line_id(move_line_id)"
325                                         domain="[('account_id.type','in',('receivable','payable')), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
326                                         required="1"
327                                         />
328                                     <field name="account_id"  groups="base.group_no_one" domain="[('type','=','receivable')]"/>
329                                     <field name="date_original" readonly="1"/>
330                                     <field name="date_due" readonly="1"/>
331                                     <field name="amount_original" readonly="1"/>
332                                     <field name="amount_unreconciled" readonly="1"/>
333                                     <field name="reconcile" on_change="onchange_reconcile(reconcile, amount, amount_unreconciled, context)"/>
334                                     <field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)" string="Allocation"/>
335                                 </tree>
336                             </field>
337                             <field name="line_dr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" context="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
338                                 <tree string="Credits" editable="bottom" colors="gray:amount==0">
339                                     <field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
340                                         on_change="onchange_move_line_id(move_line_id)"
341                                         domain="[('account_id.type','in',('receivable','payable')), ('reconcile_id','=', False), ('partner_id','=',parent.partner_id)]"
342                                         required="1"
343                                         />
344                                     <field name="account_id"  groups="base.group_no_one" domain="[('type','=','receivable')]"/>
345                                     <field name="date_original" readonly="1"/>
346                                     <field name="date_due" readonly="1"/>
347                                     <field name="amount_original" readonly="1"/>
348                                     <field name="amount_unreconciled" readonly="1"/>
349                                     <field name="reconcile" on_change="onchange_reconcile(reconcile, amount, amount_unreconciled, context)"/>
350                                     <field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)" string="Allocation"/>
351                                 </tree>
352                             </field>
353                             <group col="2" colspan="3">
354                                 <separator string="Internal Notes" colspan="2"/>
355                                 <field name="narration" colspan="2" nolabel="1"/>
356                             </group>
357                             <group col="2" colspan="1">
358                                 <group col="4" colspan="1" attrs="{'invisible':[('currency_id','=',False),('is_multi_currency','=',False)]}">
359                                     <separator string="Currency Options" colspan="4"/>
360                                     <field name="is_multi_currency" invisible="1"/>
361                                     <field name="payment_rate" required="1" on_change="onchange_rate(payment_rate, amount, currency_id, payment_rate_currency_id, company_id, context)" groups='base.group_extended' colspan="3"/>
362                                     <field name="payment_rate_currency_id" groups='base.group_extended' colspan="1" nolabel="1" on_change="onchange_payment_rate_currency(currency_id, payment_rate, payment_rate_currency_id, date, amount, company_id, context)"/>
363                                     <field name="paid_amount_in_company_currency" groups='base.group_extended' colspan="4" invisible="1"/>
364                                 </group>
365                                 <group col="2" colspan="1">
366                                     <separator string="Payment Options" colspan="2"/>
367                                     <field name="writeoff_amount"/>
368                                     <field name="payment_option" required="1"/>
369                                     <field name="writeoff_acc_id"
370                                            attrs="{'invisible':[('payment_option','!=','with_writeoff')], 'required':[('payment_option','=','with_writeoff')]}"
371                                            domain="[('type','=','other')]"/>
372                                     <field name="comment"
373                                            attrs="{'invisible':[('payment_option','!=','with_writeoff')]}"/>
374                                     <field name="analytic_id"
375                                            groups="analytic.group_analytic_accounting"/>
376                                 </group>
377                             </group>
378                         </page>
379                         <page string="Journal Items" groups="base.group_extended" attrs="{'invisible': [('state','!=','posted')]}">
380                             <group col="6" colspan="4">
381                                 <field name="period_id"/>
382                                 <field name="audit"/>
383                             </group>
384                             <field name="number" colspan="4"/>
385                             <field name="move_ids" colspan="4" nolabel="1" readonly="1">
386                                <tree string="Journal Items">
387                                    <field name="move_id"/>
388                                    <field name="ref"/>
389                                    <field name="date"/>
390                                    <field name="statement_id"/>
391                                    <field name="partner_id"/>
392                                    <field name="account_id"/>
393                                    <field name="name"/>
394                                    <field name="debit"/>
395                                    <field name="credit"/>
396                                    <field name="state"/>
397                                    <field name="reconcile_id"/>
398                                    <field name="amount_currency"/>
399                                    <field name="currency_id"/>
400                                </tree>
401                             </field>
402                         </page>
403                     </notebook>
404                     <group col="10" colspan="4">
405                         <field name="state" widget="statusbar" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
406                         <button name="cancel_voucher" string="Cancel" states="draft,proforma"  icon="gtk-cancel" invisible="context.get('line_type', False)"/>
407                         <button name="cancel_voucher" string="Unreconcile" type="object" states="posted" invisible="context.get('line_type', False)" icon="terp-stock_effects-object-colorize" confirm="Are you sure to unreconcile and cancel this record ?"/>
408                         <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft" icon="terp-stock_effects-object-colorize" invisible="context.get('line_type', False)"/>
409                         <button name="proforma_voucher" string="Validate" states="draft" icon="gtk-go-forward" invisible="context.get('line_type', False)"/>
410                     </group>
411                 </form>
412             </field>
413         </record>
414
415         <record id="action_vendor_receipt" model="ir.actions.act_window">
416             <field name="name">Customer Payment</field>
417             <field name="res_model">account.voucher</field>
418             <field name="view_type">form</field>
419             <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','receipt')]</field>
420             <field name="context">{'type':'receipt'}</field>
421             <field name="search_view_id" ref="view_voucher_filter_customer_pay"/>
422             <field name="view_id" eval="False"/>
423             <field name="target">current</field>
424             <field name="help">Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts.</field>
425         </record>
426         <record id="action_vendor_receipt_tree" model="ir.actions.act_window.view">
427             <field eval="1" name="sequence"/>
428             <field name="view_mode">tree</field>
429             <field name="act_window_id" ref="action_vendor_receipt"/>
430         </record>
431         <record id="action_vendor_receipt_form" model="ir.actions.act_window.view">
432             <field eval="2" name="sequence"/>
433             <field name="view_mode">form</field>
434             <field name="view_id" ref="view_vendor_receipt_form"/>
435             <field name="act_window_id" ref="action_vendor_receipt"/>
436         </record>
437
438         <menuitem action="action_vendor_receipt" icon="STOCK_JUSTIFY_FILL" sequence="12"
439             id="menu_action_vendor_receipt"  parent="account.menu_finance_receivables"/>
440     </data>
441 </openerp>