Initial commit: OCA Technical packages (595 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:03 +02:00
commit 2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions

View file

@ -0,0 +1,2 @@
from . import dms_storage
from . import dms_file

View file

@ -0,0 +1,36 @@
# 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

View file

@ -0,0 +1,13 @@
# Copyright 2022 CreuBlanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class DmsStorage(models.Model):
_inherit = "dms.storage"
save_type = fields.Selection(
selection_add=[("storage", "Storage")], ondelete={"storage": "cascade"}
)
storage_backend_id = fields.Many2one("fs.storage")