[FIX] Views review fixes

This commit is contained in:
Sylvain GARANCHER
2017-10-04 15:17:08 +02:00
parent ab8a687c0b
commit 470c25a777
2 changed files with 7 additions and 7 deletions

View File

@@ -7,9 +7,9 @@
<field name="arch" type="xml">
<form string="Report Printing Actions">
<group col="2">
<field name="user_id"/>
<field name="user_id" options="{'no_create': True}"/>
<field name="action"/>
<field name="printer_id" select="1"/>
<field name="printer_id" options="{'no_create': True}"/>
</group>
</form>
</field>
@@ -18,10 +18,10 @@
<field name="name">printing.report.xml.action.tree</field>
<field name="model">printing.report.xml.action</field>
<field name="arch" type="xml">
<tree string="Report Printing Actions">
<field name="user_id"/>
<tree string="Report Printing Actions" editable="bottom">
<field name="user_id" options="{'no_create': True}"/>
<field name="action" />
<field name="printer_id" />
<field name="printer_id" options="{'no_create': True}"/>
</tree>
</field>
</record>

View File

@@ -9,7 +9,7 @@
<xpath expr="//group[@name='preferences']/ancestor::page" position="inside">
<group string="Printing" name="printing">
<field name="printing_action"/>
<field name="printing_printer_id"/>
<field name="printing_printer_id" options="{'no_create': True}"/>
</group>
</xpath>
</field>
@@ -23,7 +23,7 @@
<footer position="before">
<group string="Printing" name="printing">
<field name="printing_action"/>
<field name="printing_printer_id"/>
<field name="printing_printer_id" options="{'no_create': True}"/>
</group>
</footer>
</field>