I upload the image in this i need to allow only the png image others will not be allowed?How to do that
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ờ
if attachment_line.file_name and attachment_line.file_name.lower (). endswith (('. png' )):
self.env ['ir.attachment']. create ({
'name': attachment_line.file_name,
'attachment_type': attachment_line.type,
'datas': attachment_line.attachment,
'status': 'to_approve',
'datas_fname': attachment_line.file_name,
'res_id': active_rec.sale_line_id.id,
'res_model': 'sale.order.line'
})
else:
raise UserError (_ ("Sorry! Only .png is the Supported Format.") )
accept and upvote if useful
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 | |
---|---|---|---|---|
|
0
thg 6 25
|
2590 | ||
|
0
thg 8 19
|
2495 | ||
|
0
thg 1 25
|
662 | ||
|
2
thg 8 24
|
5320 | ||
|
0
thg 4 24
|
1290 |
Hope this idea will solve your problem: http://learnopenerp.blogspot.com/2020/07/how-to-resize-image-on-saving-records-in-odoo.html