summaryrefslogtreecommitdiff
path: root/addons/account/views/account_cash_rounding_view.xml
blob: 273246d90b7390d2b0290508e2980d53f3eebc71 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
        <!-- Action -->
        <record id="rounding_list_action" model="ir.actions.act_window">
            <field name="name">Cash Roundings</field>
            <field name="res_model">account.cash.rounding</field>
            <field name="view_mode">tree,form</field>
            <field name="help" type="html">
                <p class="o_view_nocontent_smiling_face">Create the first cash rounding</p>
            </field>
        </record>

        <!-- Views -->
        <record id="rounding_form_view" model="ir.ui.view">
            <field name="name">account.cash.rounding.form</field>
            <field name="model">account.cash.rounding</field>
            <field name="arch" type="xml">
                <form string="Rounding Form">
                    <sheet>
                        <div class="oe_title">
                            <label for="name" class="oe_edit_only"/>
                            <h1><field name="name" class="oe_inline"/></h1>
                        </div>
                        <group>
                            <field name="rounding"/>
                            <field name="strategy"/>
                            <field name="profit_account_id" options="{'no_create': True}" attrs="{'invisible': [('strategy', '!=', 'add_invoice_line')], 'required': [('strategy', '=', 'add_invoice_line')]}"
                                groups="account.group_account_invoice,account.group_account_readonly" domain="[('user_type_id.type', 'not in', ('receivable', 'payable'))]"/>
                            <field name="loss_account_id" options="{'no_create': True}" attrs="{'invisible': [('strategy', '!=', 'add_invoice_line')], 'required': [('strategy', '=', 'add_invoice_line')]}"
                                groups="account.group_account_invoice,account.group_account_readonly" domain="[('user_type_id.type', 'not in', ('receivable', 'payable'))]"/>
                            <field name="rounding_method"/>
                        </group>
                    </sheet>
                </form>
            </field>
        </record>

        <record id="rounding_search_view" model="ir.ui.view">
            <field name="name">account.cash.rounding.search</field>
            <field name="model">account.cash.rounding</field>
            <field name="arch" type="xml">
                <search>
                    <field name="name"/>
                </search>
            </field>
        </record>

        <record id="rounding_tree_view" model="ir.ui.view">
            <field name="name">account.cash.rounding.tree</field>
            <field name="model">account.cash.rounding</field>
            <field name="arch" type="xml">
                <tree string="Rounding Tree">
                    <field name="name"/>
                    <field name="rounding"/>
                    <field name="rounding_method"/>
                </tree>
            </field>
        </record>

    </data>
</odoo>