summaryrefslogtreecommitdiff
path: root/addons/l10n_latam_invoice_document/views/account_move_line_view.xml
blob: 5410c569f6001217b42d581138e0ad41d2d6c5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<odoo>

    <record id="view_account_move_line_filter" model="ir.ui.view">
        <field name="name">account.move.line.filter</field>
        <field name="model">account.move.line</field>
        <field name="inherit_id" ref="account.view_account_move_line_filter"/>
        <field name="arch" type="xml">
            <separator position="before">
                <field name="l10n_latam_document_type_id"/>
            </separator>
            <group>
                <filter string="Document Type" name="l10n_latam_document_type" domain="" context="{'group_by':'l10n_latam_document_type_id'}"/>
            </group>
        </field>
    </record>

</odoo>