[Merge] Merge with main addons.
[odoo/odoo.git] / addons / account_voucher / voucher_sales_purchase_view.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <openerp>
3     <data>
4         <record id="view_voucher_filter_vendor" model="ir.ui.view">
5             <field name="name">account.voucher.purchase.select</field>
6             <field name="model">account.voucher</field>
7             <field name="type">search</field>
8             <field name="arch" type="xml">
9                 <search string="Search Vouchers">
10                     <group>
11                         <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
12                         <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
13                         <separator orientation="vertical"/>
14                         <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" help="To Review"/>
15                         <separator orientation="vertical"/>
16                         <field name="date"/>
17                         <field name="number"/>
18                         <field name="partner_id" string="Supplier"/>
19                     </group>
20                     <newline/>
21                     <group>
22                         <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('purchase','purchase_refund'))]"/>
23                         <field name="period_id"/>
24                     </group>
25                    <newline/>
26                     <group expand="0" string="Group By...">
27                         <filter string="Supplier" icon="terp-personal" domain="[]" context="{'group_by':'partner_id'}"/>
28                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
29                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
30                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
31                     </group>
32                 </search>
33             </field>
34         </record>
35
36         <record id="view_voucher_filter_sale" model="ir.ui.view">
37             <field name="name">account.voucher.sale.select</field>
38             <field name="model">account.voucher</field>
39             <field name="type">search</field>
40             <field name="arch" type="xml">
41                 <search string="Search Vouchers">
42                     <group>
43                         <filter icon="terp-document-new" string="Draft" domain="[('state','=','draft')]" help="Draft Vouchers"/>
44                         <filter icon="terp-camera_test" string="Posted" domain="[('state','=','posted')]" help="Posted Vouchers"/>
45                         <separator orientation="vertical"/>
46                         <filter icon="terp-gtk-jump-to-ltr" string="To Review" domain="[('state','=','posted')]" help="To Review"/>
47                         <separator orientation="vertical"/>
48                         <field name="date"/>
49                         <field name="number"/>
50                         <field name="partner_id" string="Customer"/>
51                     </group>
52                     <newline/>
53                     <group>
54                         <field name="journal_id" widget="selection" context="{'journal_id': self, 'set_visible':False}" domain="[('type','in',('sale','sale_refund'))]"/>
55                         <field name="period_id"/>
56                     </group>
57                    <newline/>
58                     <group expand="0" string="Group By...">
59                         <filter string="Customer" icon="terp-personal" domain="[]" context="{'group_by':'partner_id'}"/>
60                         <filter string="Journal" icon="terp-folder-orange" domain="[]" context="{'group_by':'journal_id'}"/>
61                         <filter string="Period" icon="terp-go-month" domain="[]" context="{'group_by':'period_id','visible':True}"/>
62                         <filter string="Status" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
63                     </group>
64                 </search>
65             </field>
66         </record>
67
68         <record id="act_pay_voucher" model="ir.actions.act_window">
69             <field name="name">Customer Payment</field>
70             <field name="res_model">account.voucher</field>
71             <field name="view_type">form</field>
72             <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','receipt'), ('partner_id','=',partner_id)]</field>
73             <field name="context">{'type':'receipt', 'partner_id': partner_id, 'default_reference':reference}</field>
74             <field name="view_id" ref="view_vendor_receipt_form"/>
75             <field name="target">current</field>
76         </record>
77
78         <record model="ir.ui.view" id="view_sale_receipt_form">
79             <field name="name">account.voucher.sale.form</field>
80             <field name="model">account.voucher</field>
81             <field name="type">form</field>
82             <field name="arch" type="xml">
83                 <form layout="manual">
84                 <header>
85                     <button name="proforma_voucher" string="Validate" states="draft" class="oe_form_button_hi"/>
86                     <button name="%(act_pay_voucher)d" context="{'narration':narration, 'title':'Customer Payment', 'type':'receipt', 'partner_id':partner_id, 'reference':reference, 'amount':amount}" type="action" string="Pay" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}" class="oe_form_button_hi"/>
87                     <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
88                     <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/>
89                     <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
90                     <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
91                 </header>
92                 <sheet string="Sales Receipt" layout="auto">
93                     <group col="6" colspan="4" class="oe_form_header">
94                         <field name="partner_id" domain="[('customer','=',True)]" required="1" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" string="Customer" context="{'search_default_customer': 1}"/>
95                         <field name="date" on_change="onchange_date(date, currency_id, currency_id, amount, company_id, context)"/>
96                         <field name="journal_id" domain="[('type','in',['sale','sale_refund'])]" widget="selection" on_change="onchange_journal(journal_id, line_cr_ids, tax_id, partner_id, date, amount, type, company_id, context)" groups="account.group_account_user"/>
97                         <field name="number"/>
98                         <field name="name" colspan="2"/>
99                         <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
100                         <field name="type" invisible="True"/>
101                         <field name="currency_id"/>
102                     </group>
103                     <notebook colspan="4">
104                         <page string="Sales Information">
105                             <field name="line_cr_ids" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
106                                 <tree string="Sales Lines" editable="bottom">
107                                     <field name="account_id" domain="[('user_type.report_type','=','income'),('type','!=','view')]" widget="selection" groups="account.group_account_user"/>
108                                     <field name="name"/>
109                                     <field name="amount" sum="Total"/>
110                                     <field name="account_analytic_id" groups="analytic.group_analytic_accounting"/>
111                                 </tree>
112                             </field>
113                             <group col="2" colspan="3">
114                                 <separator string="Internal Notes" colspan="2"/>
115                                 <field name="narration" colspan="2" nolabel="1"/>
116                             </group>
117                             <group col="2" colspan="1">
118                                 <group col="2" colspan="1">
119                                     <separator string="Payment Options" colspan="2"/>
120                                     <field name="pay_now" on_change="onchange_payment(pay_now, journal_id, partner_id)" required="1"/>
121                                     <field name="account_id"
122                                          attrs="{'invisible':[('pay_now','!=','pay_now')]}"
123                                           domain="[('type','=','liquidity')]"/>
124                                          <!-- should select income accounts only. Or use the journal for this ? -->
125                                     <field name="reference"
126                                          attrs="{'invisible':[('pay_now','!=','pay_now')]}"
127                                     />
128                                     <field name="date_due" attrs="{'invisible':[('pay_now','=','pay_now')]}"/>
129                                     <field name="paid" invisible="1"/>
130                                 </group>
131                                 <group col="4" colspan="1">
132                                     <separator string="Total" colspan="4"/>
133                                     <field name="tax_id" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" widget="selection" domain="[('type_tax_use','in',('sale','all')), ('parent_id', '=', False)]"/><field name="tax_amount" nolabel="1"/><button type="object" icon="terp-stock_format-scientific" name="compute_tax" string="Compute Tax" attrs="{'invisible': [('state','!=','draft')]}"/>
134                                     <label string="" colspan="1"/><field name="amount" string="Total"/>
135                                 </group>
136                             </group>
137                         </page>
138                         <page string="Journal Items" attrs="{'invisible': [('state','!=','posted')]}">
139                             <group col="6" colspan="4">
140                                 <field name="period_id"/>
141                                 <field name="audit"/>
142                             </group>
143                             <field name="move_ids" colspan="4" nolabel="1" readonly="1">
144                                <tree string="Journal Items">
145                                    <field name="move_id"/>
146                                    <field name="ref"/>
147                                    <field name="date"/>
148                                    <field name="statement_id"/>
149                                    <field name="partner_id"/>
150                                    <field name="account_id"/>
151                                    <field name="name"/>
152                                    <field name="debit"/>
153                                    <field name="credit"/>
154                                    <field name="state"/>
155                                    <field name="reconcile_id"/>
156                                </tree>
157                             </field>
158                         </page>
159                     </notebook>
160                     </sheet>
161                     <div class="oe_form_sheet_width">
162                         <field name="message_ids" colspan="4" widget="ThreadView" nolabel="1"/>
163                     </div>
164                 </form>
165             </field>
166         </record>
167
168         <!-- Sales Voucher -->
169         <record id="action_sale_receipt" model="ir.actions.act_window">
170             <field name="name">Sales Receipt</field>
171             <field name="res_model">account.voucher</field>
172             <field name="view_type">form</field>
173             <field name="domain">[('journal_id.type','in',['sale','sale_refund']), ('type','=','sale')]</field>
174             <field name="context">{'default_type': 'sale', 'type': 'sale'}</field>
175             <field name="view_id" eval="False"/>
176             <field name="search_view_id" ref="view_voucher_filter_sale"/>
177             <field name="target">current</field>
178             <field name="help">
179                 Click here to create a sale receipt.
180                 &lt;p&gt;
181                 When the sales receipt is confirmed, you can record the customer payment related to this sales receipt.
182             </field>
183         </record>
184         <record id="action_sale_receipt_tree" model="ir.actions.act_window.view">
185             <field eval="1" name="sequence"/>
186             <field name="view_mode">tree</field>
187             <field name="act_window_id" ref="action_sale_receipt"/>
188         </record>
189         <record id="action_sale_receipt_form" model="ir.actions.act_window.view">
190             <field eval="2" name="sequence"/>
191             <field name="view_mode">form</field>
192             <field name="view_id" ref="view_sale_receipt_form"/>
193             <field name="act_window_id" ref="action_sale_receipt"/>
194         </record>
195
196         <menuitem id="menu_action_sale_receipt" icon="STOCK_JUSTIFY_FILL"
197             action="action_sale_receipt"
198             parent="account.menu_finance_receivables"
199             sequence="10"/>
200
201         <!--  Purchase Vouchers -->
202         <record id="act_pay_bills" model="ir.actions.act_window">
203             <field name="name">Bill Payment</field>
204             <field name="res_model">account.voucher</field>
205             <field name="view_type">form</field>
206             <field name="domain">[('journal_id.type', 'in', ['bank', 'cash']), ('type','=','payment'), ('partner_id','=',partner_id)]</field>
207             <field name="context">{'default_type':'payment', 'type':'payment', 'default_partner_id': partner_id, 'partner_id': partner_id, 'default_reference':reference}</field>
208             <field name="view_id" ref="view_vendor_payment_form"/>
209             <field name="target">current</field>
210         </record>
211         <record model="ir.ui.view" id="view_purchase_receipt_form">
212             <field name="name">account.voucher.purchase.form</field>
213             <field name="model">account.voucher</field>
214             <field name="type">form</field>
215             <field name="arch" type="xml">
216                 <form layout="manual">
217                 <header>
218                     <button name="proforma_voucher" string="Validate" states="draft"/>
219                     <button name="%(act_pay_bills)d" context="{'narration':narration, 'title':'Bill Payment', 'type':'payment', 'partner_id': partner_id, 'reference':reference}" type="action" string="Pay Bill" attrs="{'invisible':['|',('pay_now','=','pay_now'),'|',('state','=','draft'), ('paid','=',True)]}"/>
220                     <button name="cancel_voucher" string="Cancel" states="draft,proforma" />
221                     <button name="cancel_voucher" string="Cancel" type="object" states="posted" confirm="Are you sure to confirm this record ?"/>
222                     <button name="action_cancel_draft" type="object" states="cancel" string="Set to Draft"/>
223                     <field name="state" widget="statusbar" nolabel="1" statusbar_visible="draft,posted" statusbar_colors='{"proforma":"blue"}'/>
224                 </header>
225                 <sheet string="Supplier Voucher" layout="auto">
226                     <field name="pay_now" invisible="1"/>
227                     <group col="6" colspan="4" class="oe_form_header">
228                         <field name="partner_id" domain="[('supplier','=',True)]" required="1" string="Supplier" on_change="onchange_partner_id(partner_id, journal_id, amount, currency_id, type, date, context)" context="{'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}" />
229                         <field name="date" string="Bill Date" select="1" on_change="onchange_date(date, currency_id, currency_id, amount, company_id, context)"/>
230                         <field name="journal_id" domain="[('type','in',['purchase','purchase_refund'])]" widget="selection" select="1" on_change="onchange_journal(journal_id, line_dr_ids, tax_id, partner_id, date, amount, type, company_id, context)"/>
231                         <field name="number"/>
232                         <field name="name" colspan="2"/>
233                         <field name="reference" select="1"/>
234                         <field name="company_id" select="1" widget="selection" groups="base.group_multi_company"/>
235                         <field name="account_id" domain="[('type','=','other')]"  invisible="True"/>
236                         <field name="type" invisible="True"/>
237                         <field name="currency_id"/>
238                     </group>
239                     <notebook colspan="4">
240                         <page string="Bill Information">
241                             <field name="line_dr_ids" on_change="onchange_price(line_dr_ids, tax_id, partner_id)" context="{'journal_id':journal_id,'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
242                                 <tree string="Expense Lines" editable="bottom">
243                                     <field name="account_id" widget="selection" domain="[('user_type.report_type','=','expense'), ('type','!=','view')]"/>
244                                     <field name="name"/>
245                                     <field name="amount"/>
246                                     <field name="account_analytic_id" groups="analytic.group_analytic_accounting"/>
247                                 </tree>
248                             </field>
249                             <group col="2" colspan="3">
250                                 <separator string="Internal Notes" colspan="2"/>
251                                 <field name="narration" colspan="2" nolabel="1"/>
252                             </group>
253                             <group col="2" colspan="1">
254                                 <group col="2" colspan="1">
255                                     <separator string="Payment Terms" colspan="2"/>
256                                     <field name="date_due"/>
257                                     <field name="paid" invisible="1"/>
258                                 </group>
259                                 <group col="4" colspan="1">
260                                     <separator string="Total" colspan="4"/>
261                                     <field name="tax_id" on_change="onchange_price(line_dr_ids, tax_id, partner_id)" widget="selection" domain="[('type_tax_use','in',('purchase','all')), ('parent_id', '=', False)]"/><field name="tax_amount" nolabel="1"/><button type="object" icon="terp-stock_format-scientific" name="compute_tax" string="Compute Tax" attrs="{'invisible': [('state','!=','draft')]}"/>
262                                     <label string="" colspan="1"/><field name="amount" string="Total"/>
263                                 </group>
264                             </group>
265                         </page>
266                         <page string="Journal Items" attrs="{'invisible': [('state','!=','posted')]}">
267                             <group col="6" colspan="4">
268                                 <field name="period_id"/>
269                                 <field name="audit"/>
270                             </group>
271                             <field name="move_ids" colspan="4" nolabel="1" readonly="1">
272                                <tree string="Journal Items">
273                                    <field name="move_id"/>
274                                    <field name="ref"/>
275                                    <field name="date"/>
276                                    <field name="statement_id"/>
277                                    <field name="partner_id"/>
278                                    <field name="account_id"/>
279                                    <field name="name"/>
280                                    <field name="debit"/>
281                                    <field name="credit"/>
282                                    <field name="state"/>
283                                    <field name="reconcile_id"/>
284                                </tree>
285                             </field>
286                         </page>
287                     </notebook>
288                     </sheet>
289                     <div class="oe_form_sheet_width">
290                         <field name="message_ids" colspan="4" widget="ThreadView" nolabel="1"/>
291                     </div>
292                 </form>
293             </field>
294         </record>
295         <record id="action_purchase_receipt" model="ir.actions.act_window">
296             <field name="name">Purchase Receipt</field>
297             <field name="res_model">account.voucher</field>
298             <field name="view_type">form</field>
299             <field name="domain">[('journal_id.type','in',['purchase','purchase_refund']), ('type','=','purchase')]</field>
300             <field name="context">{'default_type': 'purchase', 'type': 'purchase'}</field>
301             <field name="view_id" eval="False"/>
302             <field name="search_view_id" eval="view_voucher_filter_vendor"/>
303             <field name="target">current</field>
304         </record>
305         <record id="action_purchase_receipt_tree" model="ir.actions.act_window.view">
306             <field eval="1" name="sequence"/>
307             <field name="view_mode">tree</field>
308             <field name="act_window_id" ref="action_purchase_receipt"/>
309         </record>
310         <record id="action_purchase_receipt_form" model="ir.actions.act_window.view">
311             <field eval="2" name="sequence"/>
312             <field name="view_mode">form</field>
313             <field name="view_id" ref="view_purchase_receipt_form"/>
314             <field name="act_window_id" ref="action_purchase_receipt"/>
315         </record>
316
317         <menuitem id="menu_action_purchase_receipt" icon="STOCK_JUSTIFY_FILL"
318             action="action_purchase_receipt" parent="account.menu_finance_payables" sequence="10"/>
319
320     </data>
321 </openerp>