Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5942 Tampilan

I upload the image in this i need to allow only the png image others will not be allowed?How to do that

Avatar
Buang
Jawaban Terbai

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

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
0
Jun 25
2616
0
Agu 19
2519
2
Jul 25
286
0
Jan 25
682
2
Agu 24
5358