2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, models, fields
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class IrAttachment(models.Model):
|
|
|
|
|
|
|
|
_inherit = "ir.attachment"
|
|
|
|
|
|
|
|
local_url = fields.Char("Attachment URL", compute='_compute_local_url')
|
|
|
|
|
|
|
|
@api.one
|
|
|
|
def _compute_local_url(self):
|
|
|
|
if self.url:
|
|
|
|
self.local_url = self.url
|
|
|
|
else:
|
|
|
|
self.local_url = '/web/image/%s?unique=%s' % (self.id, self.checksum)
|