You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="risk_incident_form_view" model="ir.ui.view">
|
|
<field name="name">risk.incident.form</field>
|
|
<field name="model">risk.incident.wiz</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Create Incident">
|
|
<group>
|
|
<group>
|
|
<field name="risk_incident"/>
|
|
<field name="note"/>
|
|
</group>
|
|
<group>
|
|
<field name="user_id"/>
|
|
<field name="project_id"/>
|
|
<field name="image" widget='image' class="oe_avatar"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="create_incident" type="object"
|
|
string="Create Incident"
|
|
class="oe_highlight"/>
|
|
<button special="cancel" string="Cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|