跳至内容
菜单
此问题已终结
2 回复
2025 查看

User how to restrict specific file extension to upload on the odoo online ticketing system attachement form ?

* we are using odoo online.

形象
丢弃
编写者 最佳答案

please show me on how i can do it with the below code.

形象
丢弃
最佳答案

To restrict specific file extensions as attachment on the helpdesk.ticket model, you can override the create and write methods of this object. 


class HelpdeskTicket(models.Model):
    _inherit = 'helpdesk.ticket'

    @api.model
    def create(self, values):
        attachments = values.get('attachment_ids', [])
        for attachment in attachments:
            datas_fname = attachment[2].get('datas_fname', '')
            if datas_fname.endswith(('.exe', '.bat')):
                raise ValidationError('You cannot upload files with .exe or .bat extensions.')
        return super(HelpdeskTicket, self).create(values)

I've used '.exe' and '.bat' as an example, you can add the extensions you want and then in the same manner define a write method and I hope this should solve your problem. 




形象
丢弃

I think that this is not possible with Odoo Online

相关帖文 回复 查看 活动
0
4月 17
3691
0
3月 25
1405
0
10月 24
1377
1
9月 24
1530
1
8月 24
1627