Hi, I want to know how can I choose many file in my PC to my application, like the field binary but I don't want one file, I would like to add many file. Thank you for answer...
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
You can see it on message module:
<field name="attachment_ids" widget="many2many_binary"/>
You can find it here: /mail/wizard/mail_compose_message_view.xml
It handles that with qweb, but it's a little bit complex.
Anyways you can look this as an example to do this.
Ok thanks Grover, it's run
Did you made it run? Awesome, i'll try later
I put this inmy class.py 'attachment_ids': fields.many2many('ir.attachment',
'class_ir_attachments_rel',
'class_id', 'attachment_id', 'Attachments'),
and this in my class_view.xml <field name="attachment_ids" widget="many2many_binary"/>
Thank you @ Malle.
+1
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 7 18
|
4519 | ||
Read content of Binary fields
Đã xử lý
|
|
6
thg 12 23
|
17851 | |
|
1
thg 6 23
|
3270 | ||
Binary field as attachment in mail
Đã xử lý
|
|
5
thg 1 23
|
16470 | |
|
2
thg 2 20
|
14801 |
I think we can't save multiple file in single field. So use 2 classes with one2many relation. In child class we add binary field for multiple file should be chosen.