mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 19:12:05 +02:00
14 lines
371 B
Python
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',
|
|
}
|