I upload the image in this i need to allow only the png image others will not be allowed?How to do that
Cette question a été signalée
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
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire| Publications associées | Réponses | Vues | Activité | |
|---|---|---|---|---|
|
|
1
avr. 26
|
4598 | ||
|
|
0
août 19
|
4137 | ||
|
|
2
juil. 25
|
2141 | ||
|
|
0
janv. 25
|
2114 | ||
|
|
2
août 24
|
7433 |
Hope this idea will solve your problem: http://learnopenerp.blogspot.com/2020/07/how-to-resize-image-on-saving-records-in-odoo.html