تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
6070 أدوات العرض

Does anyone know how to make a one2many tree to add attachments?

الصورة الرمزية
إهمال
أفضل إجابة

ODOO 13

Model:

class MrpBomLine (models.Model):
    _inherit = 'mrp.bom' 
    bom_file_ids = fields.One2many ("ir.attachment", "res_id")
View:
<field name = "bom_file_ids" widget = "one2many" nolabel = "1" mode = "tree">
	<tree string = "BOMFiles" editable = "bottom">
		<field name = "create_date" />
		<field name = "name" />
	</tree>
</field>
This will give you a basic list view ... To attach files I am using a button like this:

 < widget  name = "attach_document"  string = "Attach BOM Excel File"  action = "message_post"  />




الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
مارس 15
3278
0
مارس 15
3514
3
يوليو 25
8742
1
مايو 25
1033
0
يناير 24
1719