diff --git a/account_dms_field/README.rst b/account_dms_field/README.rst new file mode 100644 index 000000000..4b302aa52 --- /dev/null +++ b/account_dms_field/README.rst @@ -0,0 +1,101 @@ +========================= +Add dms field for account +========================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:b7f18580a215d7c509b59f1e27607ad97ff06df4cc445bd45e838ead8c9e5164 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. |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/16.0/account_dms_field + :alt: OCA/dms +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/dms-16-0/dms-16-0-account_dms_field + :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=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add the Documents tab with the files in the account move form view. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +#. *Go to Documents > Configuration > File templates* and create a new record. +#. Set a storage, a model (account.move) and the access groups you want. +#. Click on the "Documents" tab icon and a folder hierarchy will be created. +#. You can set here the hierarchy of directories, subdirectories and files you need, this hierarchy will be used as a base when creating a new record (res.partner for example). + +Usage +===== + +#. Go to the form view of an existing account move and click on the "Documents" tab icon, a hierarchy of +folders and files linked to that record will be created. +#. Create a new account.move. A hierarchy of folders and files linked to that record will be created. + + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Agenterp + +Contributors +~~~~~~~~~~~~ + +* `Agenterp `_: + + * Georg Notter + +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 `__: + +|maintainer-victoralmau| + +This module is part of the `OCA/dms `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_dms_field/__init__.py b/account_dms_field/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/account_dms_field/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_dms_field/__manifest__.py b/account_dms_field/__manifest__.py new file mode 100644 index 000000000..f70992a40 --- /dev/null +++ b/account_dms_field/__manifest__.py @@ -0,0 +1,12 @@ +{ + "name": "Add dms field for account", + "version": "16.0.1.0.0", + "category": "Accounting/Accounting", + "website": "https://github.com/OCA/dms", + "author": "Agent ERP GmbH, Odoo Community Association (OCA)", + "depends": ["account", "dms_field"], + "data": ["views/account_move_view.xml"], + "demo": ["demo/account_dms_data.xml"], + "installable": True, + "license": "LGPL-3", +} diff --git a/account_dms_field/demo/account_dms_data.xml b/account_dms_field/demo/account_dms_data.xml new file mode 100644 index 000000000..b522472a8 --- /dev/null +++ b/account_dms_field/demo/account_dms_data.xml @@ -0,0 +1,18 @@ + + + + Everyone for Account DMS + + + + + + + + Account + + + + + + diff --git a/account_dms_field/models/__init__.py b/account_dms_field/models/__init__.py new file mode 100644 index 000000000..8c025c182 --- /dev/null +++ b/account_dms_field/models/__init__.py @@ -0,0 +1,2 @@ +from . import account_move +from . import dms_field_template diff --git a/account_dms_field/models/account_move.py b/account_dms_field/models/account_move.py new file mode 100644 index 000000000..751e4a51a --- /dev/null +++ b/account_dms_field/models/account_move.py @@ -0,0 +1,6 @@ +from odoo import models + + +class AccountMove(models.Model): + _name = "account.move" + _inherit = ["account.move", "dms.field.mixin"] diff --git a/account_dms_field/models/dms_field_template.py b/account_dms_field/models/dms_field_template.py new file mode 100644 index 000000000..7b96d8ce6 --- /dev/null +++ b/account_dms_field/models/dms_field_template.py @@ -0,0 +1,12 @@ +from odoo import models + + +class DmsFieldTemplate(models.Model): + _inherit = "dms.field.template" + + def _prepare_directory_vals(self, directory, record): + vals = super()._prepare_directory_vals(directory, record) + if "/" not in vals["name"]: + return vals + vals["name"] = vals["name"].replace("/", "-") + return vals diff --git a/account_dms_field/tests/__init__.py b/account_dms_field/tests/__init__.py new file mode 100644 index 000000000..deac12019 --- /dev/null +++ b/account_dms_field/tests/__init__.py @@ -0,0 +1 @@ +from . import test_account_dms_field diff --git a/account_dms_field/tests/test_account_dms_field.py b/account_dms_field/tests/test_account_dms_field.py new file mode 100644 index 000000000..a3c019d6f --- /dev/null +++ b/account_dms_field/tests/test_account_dms_field.py @@ -0,0 +1,52 @@ +from odoo.addons.base.tests.common import TransactionCase + + +class TestAccountDmsField(TransactionCase): + def setUp(self): + super(TestAccountDmsField, self).setUp() + self.template = self.env.ref("account_dms_field.field_template_account") + self.storage = self.template.storage_id + self.access_group = self.template.group_ids + self.account_model = self.env["account.move"] + self.partner = self.env.ref("base.res_partner_12") + self.test_directory = self.env["dms.directory"].create( + { + "name": "Test Directory", + "parent_id": self.template.dms_directory_ids[0].id, + "storage_id": self.template.storage_id.id, + } + ) + + def test_01_account_document_directory(self): + account_move = self.account_model.create( + { + "partner_id": self.partner.id, + } + ) + account_move.invalidate_model() + directory = account_move.dms_directory_ids + # Assert that only one directory is created for the account move. + self.assertEqual(len(directory), 1, "Directory length must be 1.") + # Assert that the storage associated with the directory is the same as the + # template's storage. + self.assertEqual( + directory.storage_id, + self.storage, + "Account move directory storage is different from the template storage.", + ) + # Assert that the custom access group is present in the directory's group + # list. + self.assertIn( + self.access_group, + directory.group_ids, + "Account move directory groups are different from the template groups.", + ) + # Map the names of child directories related to the account move directory. + child_directory_names = directory.mapped("child_directory_ids.name") + # Assert that a specific child directory, "Test Directory", exists. + self.assertIn( + "Test Directory", + child_directory_names, + "Test Directory is not in the child directory of the account move " + "directory.", + ) diff --git a/account_dms_field/views/account_move_view.xml b/account_dms_field/views/account_move_view.xml new file mode 100644 index 000000000..316dd8349 --- /dev/null +++ b/account_dms_field/views/account_move_view.xml @@ -0,0 +1,19 @@ + + + + view.move.form.inherit.account.dms.field + account.move + + + + + + + + + + diff --git a/setup/account_dms_field/odoo/addons/account_dms_field b/setup/account_dms_field/odoo/addons/account_dms_field new file mode 120000 index 000000000..f76d21348 --- /dev/null +++ b/setup/account_dms_field/odoo/addons/account_dms_field @@ -0,0 +1 @@ +../../../../account_dms_field \ No newline at end of file diff --git a/setup/account_dms_field/setup.py b/setup/account_dms_field/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_dms_field/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)