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
|
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="form_base_product" model="ir.ui.view">
<field name="name">Form - Product</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="koi_product_manager.form_base_product"/>
<field eval="1" name="priority"/>
<field name="arch" type="xml">
<data>
<xpath expr="//label[@for='sale_ok']" position="after">
<field name="purchase_ok"/>
<label for="purchase_ok"/>
</xpath>
<xpath expr="//notebook" position="inside">
<page string="Accounting Configuration">
<group name="group_1" colspan="4" col="2">
<field name="property_account_income"
options="{'create' : false, 'create_edit':false, 'm2o_dialog':false, 'no_open':true}"
/>
<field name="property_account_expense"
options="{'create' : false, 'create_edit':false, 'm2o_dialog':false, 'no_open':true}"
/>
<field name="taxes_id"
widget="many2many_tags"
/>
<field name="supplier_taxes_id"
widget="many2many_tags"
/>
</group>
</page>
</xpath>
</data>
</field>
</record>
</data>
</openerp>
|