Skip to content

Commit

Permalink
[ADD] module dms_version 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yweng8111 committed Nov 21, 2023
1 parent 7c7ef31 commit 3e587aa
Show file tree
Hide file tree
Showing 26 changed files with 1,416 additions and 0 deletions.
101 changes: 101 additions & 0 deletions dms_version/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
==================================
Document Management System Version
==================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:39946e391a475497d7ae597769f6afbd59096ac771cd4518b7a6c433995828cf
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github
:target: https://github.com/OCA/dms/tree/14.0/dms_version
:alt: OCA/dms
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/dms-14-0/dms-14-0-dms_version
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/dms&target_branch=14.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Documents Versioning enables version control for the document management system.

**Table of contents**

.. contents::
:local:

Usage
=====

Go to any file form and if the file has an older version its possible to revert it.

Known issues / Roadmap
======================

Creating an addon to compress attachments could be useful.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/dms/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/dms/issues/new?body=module:%20dms_version%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* MuK IT
* Tecnativa
* elego Software Solutions Gmbh

Contributors
~~~~~~~~~~~~

* Mathias Markl <[email protected]>
* `Tecnativa <https://www.tecnativa.com>`_:",

* Víctor Martínez
* Maria Sparenberg <[email protected]>
* Yu Weng <[email protected]>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px
:target: https://github.com/victoralmau
:alt: victoralmau

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-victoralmau|

This module is part of the `OCA/dms <https://github.com/OCA/dms/tree/14.0/dms_version>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
5 changes: 5 additions & 0 deletions dms_version/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2017-2020 MuK IT GmbH
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import models
from . import wizard
27 changes: 27 additions & 0 deletions dms_version/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2017-2020 MuK IT GmbH
# Copyright 2021 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Document Management System Version",
"summary": """Version Control for Documents""",
"version": "14.0.1.0.0",
"category": "Document Management",
"license": "AGPL-3",
"website": "https://github.com/OCA/dms",
"author": """MuK IT,
Tecnativa,
elego Software Solutions Gmbh,
Odoo Community Association (OCA)""",
"depends": ["dms", "base_revision"],
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"wizard/restore_old_revision_view.xml",
"views/dms_file_view.xml",
"views/dms_directory_view.xml",
"views/dms_storage_view.xml",
],
"maintainers": ["victoralmau"],
"application": False,
}
6 changes: 6 additions & 0 deletions dms_version/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Copyright 2017-2020 MuK IT GmbH
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import dms_file
from . import dms_directory
from . import dms_storage
26 changes: 26 additions & 0 deletions dms_version/models/dms_directory.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2017-2020 MuK IT GmbH
# Copyright 2021 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import api, fields, models


class DmsDirectory(models.Model):
_inherit = "dms.directory"

has_versioning = fields.Boolean(
default=False,
help="Indicates if files have an active version control.",
)

@api.onchange("storage_id")
def _onchange_storage_id(self):
for record in self:
if record.storage_id.save_type != "attachment" and record.is_root_directory:
record.has_versioning = record.storage_id.has_versioning

@api.onchange("parent_id")
def _onchange_parent_id(self):
for record in self:
if record.parent_id:
record.has_versioning = record.parent_id.has_versioning
Loading

0 comments on commit 3e587aa

Please sign in to comment.