summaryrefslogtreecommitdiff
path: root/fixco_custom/views/purchase_order_line_wizard.xml
blob: 7ae76bcfe4e0ff1d189a9e46d87ff85da577b75f (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
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>

        <record id="view_po_line_wizard_form" model="ir.ui.view">
            <field name="name">purchase.order.line.wizard.form</field>
            <field name="model">purchase.order.line.wizard</field>
            <field name="arch" type="xml">
                <form string="Select PO Items">
                    <group>
                        <field name="line_ids"
                               widget="many2many_tags"
                               options="{'no_create': True}"/>
                    </group>
                    <footer>
                        <button string="Add"
                                type="object"
                                name="action_add_lines"
                                class="btn-primary"/>
                        <button string="Cancel"
                                class="btn-secondary"
                                special="cancel"/>
                    </footer>
                </form>
            </field>
        </record>

    </data>
</odoo>