采购协议
This commit is contained in:
21
sf_sale/wizard/upload_file_upload_view.xml
Normal file
21
sf_sale/wizard/upload_file_upload_view.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_upload_file_upload_form" model="ir.ui.view">
|
||||
<field name="name">ir.attachment.upload.form</field>
|
||||
<field name="model">ir.attachment.upload</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="上传文件">
|
||||
<group>
|
||||
<field name="attachment" widget="binary" filename="filename" options="{'accepted_file_extensions': '.pdf,.doc,.docx,.jpg,.jpeg,.png'}"/>
|
||||
<field name="filename" invisible="1"/>
|
||||
<field name="res_model" invisible="1"/>
|
||||
<field name="res_id" invisible="1"/>
|
||||
</group>
|
||||
<footer>
|
||||
<button name="action_upload_file" string="确认上传" type="object" class="btn-primary"/>
|
||||
<button string="取消" class="btn-secondary" special="cancel"/>
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user