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
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_voucher_form" model="ir.ui.view">
<field name="name">Voucher form: enable writeoff on sale/purchase vouchers</field>
<field name="model">account.voucher</field>
<field name="type">form</field>
<field name="inherit_id" ref="account_voucher.view_voucher_form"/>
<field name="priority" eval="100"/>
<field name="arch" type="xml">
<xpath expr="//group/field[@name='currency_id']/.." position="inside">
<group col="2" colspan="2">
<separator string="Write-Off" colspan="2"/>
<field name="payment_option" required="1"/>
<field name="writeoff_acc_id"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')], 'required': [('payment_option', '=', 'with_writeoff')]}"
domain="[('type', '=', 'other')]"/>
<field name="comment"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')]}"/>
</group>
</xpath>
</field>
</record>
<record model="ir.ui.view" id="view_sale_receipt_form">
<field name="name">Voucher form: enable writeoff on sale receipt vouchers</field>
<field name="model">account.voucher</field>
<field name="type">form</field>
<field name="inherit_id" ref="account_voucher.view_sale_receipt_form"/>
<field name="arch" type="xml">
<xpath expr="//group/field[@name='paid']/.." position="inside">
<group col="2" colspan="2">
<separator string="Write-Off" colspan="2"/>
<field name="payment_option" required="1"/>
<field name="writeoff_acc_id"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')], 'required': [('payment_option', '=', 'with_writeoff')]}"
domain="[('type', '=', 'other')]"/>
<field name="comment"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')]}"/>
</group>
</xpath>
</field>
</record>
<record model="ir.ui.view" id="view_purchase_receipt_form">
<field name="name">Voucher form: enable writeoff on purchase receipt vouchers</field>
<field name="model">account.voucher</field>
<field name="type">form</field>
<field name="inherit_id" ref="account_voucher.view_purchase_receipt_form"/>
<field name="arch" type="xml">
<xpath expr="//group/field[@name='paid']/.." position="inside">
<group col="2" colspan="2">
<separator string="Write-Off" colspan="2"/>
<field name="payment_option" required="1"/>
<field name="writeoff_acc_id"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')], 'required': [('payment_option', '=', 'with_writeoff')]}"
domain="[('type', '=', 'other')]"/>
<field name="comment"
attrs="{'invisible': [('payment_option', '!=', 'with_writeoff')]}"/>
</group>
</xpath>
</field>
</record>
</data>
</openerp>