oca-ocb-hr/odoo-bringout-oca-ocb-hr_fleet/hr_fleet/models/ir_attachment.py
Ernad Husremovic e1d89e11e3 19.0 vanilla
2026-03-09 09:31:00 +01:00

14 lines
371 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class IrAttachment(models.Model):
_inherit = 'ir.attachment'
def action_preview_attachment(self):
return {
'type': 'ir.actions.act_url',
'url': '/web/content/%s/%s' % (self.id, self.name),
'target': 'new',
}