summaryrefslogtreecommitdiff
path: root/indoteknik_custom/views/purchasing_job_state.xml
blob: ca08e44c7097330e84ce3130bff68dac72559249 (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="purchasing_job_state_form" model="ir.ui.view">
        <field name="name">purchasing.job.state.form</field>
        <field name="model">purchasing.job.state</field>
        <field name="arch" type="xml">
            <form>
                <sheet>
                    <group>
                        <field name="status_apo" readonly="1"/>
                        <field name="note" invisible="1"/>
                        <field name="note_detail"/>
                    </group>
                </sheet>
            </form>
        </field>
    </record>
</odoo>