mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 08:31:59 +02:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
# Copyright 2022 CreuBlanca
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class DmsFile(models.Model):
|
|
_inherit = "dms.file"
|
|
|
|
storage_path = fields.Char(invisible=True, readonly=True)
|
|
storage_backend_id = fields.Many2one("fs.storage")
|
|
|
|
def _update_content_vals(self, vals, binary):
|
|
result = super(DmsFile, self)._update_content_vals(vals, binary)
|
|
result.update(
|
|
{
|
|
"storage_path": False,
|
|
"storage_backend_id": False,
|
|
}
|
|
)
|
|
if self.storage_id.save_type == "storage":
|
|
storage_path = self.path_names
|
|
if self.storage_path:
|
|
self.storage_id.storage_backend_id.delete(self.storage_path)
|
|
self.storage_id.storage_backend_id.add(storage_path, binary)
|
|
result["storage_path"] = storage_path
|
|
result["storage_backend_id"] = self.storage_id.storage_backend_id.id
|
|
return result
|
|
|
|
@api.depends("storage_path")
|
|
def _compute_content(self):
|
|
res = super(DmsFile, self)._compute_content()
|
|
for record in self.filtered(lambda r: r.storage_path):
|
|
record.content = self.storage_backend_id.get(
|
|
record.storage_path, binary=False
|
|
)
|
|
return res
|