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.
 
 
 
 
 

26 lines
1.0 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--Form view of import task-->
<record id="import_task_view_form" model="ir.ui.view">
<field name="name">import.task.view.form</field>
<field name="model">import.task</field>
<field name="arch" type="xml">
<form>
<group>
<group>
<field name="file_type" widget="radio"/>
<field name="file_upload" nolabel="1" required="1"/>
</group>
<group>
<field name="user_id" widget="many2one_avatar_user"/>
</group>
</group>
<footer>
<button string="Import" class="oe_highlight" type="object"
name="action_task_import" data-hotkey="i"/>
<button string="Cancel" special="cancel" data-hotkey="z"/>
</footer>
</form>
</field>
</record>
</odoo>