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.
19 lines
783 B
19 lines
783 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--This XML file defines a view form for handling file attachments
|
|
associated with the 'mail.attachment' model in Odoo. Users can upload
|
|
files through this form.-->
|
|
<record id="mail_attachment_view_form" model="ir.ui.view">
|
|
<field name="name">mail.attachment.view.form</field>
|
|
<field name="model">mail.attachment</field>
|
|
<field name="arch" type="xml">
|
|
<form string="upload file wizard">
|
|
<group class="oe_title">
|
|
<field name="mail_attachment" string=""
|
|
filename="file_name"/>
|
|
<field name="file_name" invisible="1"/>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|