forked from OCA/purchase-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchase_make_invoice_advance_views.xml
70 lines (70 loc) · 3.01 KB
/
purchase_make_invoice_advance_views.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_purchase_advance_payment_inv" model="ir.ui.view">
<field name="name">Invoice Orders</field>
<field name="model">purchase.advance.payment.inv</field>
<field name="arch" type="xml">
<form string="Invoice Purchases Order">
<p class="oe_grey">
Invoices will be created in draft so that you can review them before validation.
</p>
<group>
<field
name="advance_payment_method"
class="oe_inline"
widget="radio"
/>
<field
name="purchase_deposit_product_id"
invisible="1"
class="oe_inline"
context="{'search_default_services': 1, 'default_type': 'service', 'default_invoice_policy': 'order'}"
/>
<label for="amount" />
<div>
<field name="amount" class="oe_inline" widget="monetary" />
<span
attrs="{'invisible': [('advance_payment_method', '!=', 'percentage')]}"
class="oe_inline"
>%</span>
</div>
<field
name="deposit_account_id"
class="oe_inline"
attrs="{'invisible': [('purchase_deposit_product_id', '!=', False)]}"
/>
<field
name="deposit_taxes_id"
class="oe_inline"
widget="many2many_tags"
domain="[('type_tax_use','=','purchase')]"
attrs="{'invisible': [('purchase_deposit_product_id', '!=', False)]}"
/>
</group>
<footer>
<button
name="create_invoices"
string="Create and View bills"
type="object"
context="{'open_bills': True}"
class="btn-primary"
/>
<button
name="create_invoices"
string="Create Bill"
type="object"
class="btn-primary"
/>
<button string="Cancel" class="btn-default" special="cancel" />
</footer>
</form>
</field>
</record>
<record id="action_view_purchase_advance_payment_inv" model="ir.actions.act_window">
<field name="name">Invoice Order</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">purchase.advance.payment.inv</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
</odoo>