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
982 B
26 lines
982 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
|
|
<record id="view_attachment_queue_form" model="ir.ui.view">
|
|
<field name="model">attachment.queue</field>
|
|
<field name="inherit_id" ref="attachment_queue.view_attachment_queue_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="url" position="after">
|
|
<field name="task_id" attrs="{'required': [('file_type', '=', 'export')]}"/>
|
|
<field name="storage_backend_id"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_attachment_queue_tree" model="ir.ui.view">
|
|
<field name="model">attachment.queue</field>
|
|
<field name="inherit_id" ref="attachment_queue.view_attachment_queue_tree" />
|
|
<field name="arch" type="xml">
|
|
<field name="file_type" position="after">
|
|
<field name="task_id"/>
|
|
<field name="storage_backend_id"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|