33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<odoo>
|
|
<record id="pdforientation_form" model="ir.ui.view">
|
|
<field name="name">pdforientation.form</field>
|
|
<field name="model">pdforientation</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group invisible="understand" style="border-top: 3px dashed red; border-bottom: 3px dashed red">
|
|
<field name="caution_html" readonly="1"/>
|
|
</group>
|
|
|
|
<group invisible="understand">
|
|
<field name="understand" widget="boolean_toggle" style="color: blue"/>
|
|
</group>
|
|
|
|
<group>
|
|
<field name="query_id" invisible="1"/>
|
|
<field name="name" invisible="0" readonly="1"/>
|
|
<field name="orientation" widget="radio" options="{'horizontal': true}"/>
|
|
</group>
|
|
</sheet>
|
|
|
|
<footer>
|
|
<button string="Print" name="print_pdf" type="object" class="oe_highlight"/>
|
|
<button string="Cancel" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|