From 5e766ce325022202670ff168ee997ccdd17d6149 Mon Sep 17 00:00:00 2001 From: Aungkokolin1997 Date: Mon, 13 Nov 2023 14:58:24 +0630 Subject: [PATCH] [ADD] crm_exception --- crm_exception/README.rst | 86 ++++ crm_exception/__init__.py | 1 + crm_exception/__manifest__.py | 13 + crm_exception/models/__init__.py | 2 + crm_exception/models/crm_lead.py | 36 ++ crm_exception/models/exception_rule.py | 17 + crm_exception/readme/CONTRIBUTORS.rst | 3 + crm_exception/readme/DESCRIPTION.rst | 1 + crm_exception/readme/USAGE.rst | 4 + crm_exception/static/description/index.html | 431 ++++++++++++++++++ crm_exception/views/base_exception_views.xml | 18 + crm_exception/views/crm_lead_views.xml | 16 + setup/crm_exception/odoo/addons/crm_exception | 1 + setup/crm_exception/setup.py | 6 + 14 files changed, 635 insertions(+) create mode 100644 crm_exception/README.rst create mode 100644 crm_exception/__init__.py create mode 100644 crm_exception/__manifest__.py create mode 100644 crm_exception/models/__init__.py create mode 100644 crm_exception/models/crm_lead.py create mode 100644 crm_exception/models/exception_rule.py create mode 100644 crm_exception/readme/CONTRIBUTORS.rst create mode 100644 crm_exception/readme/DESCRIPTION.rst create mode 100644 crm_exception/readme/USAGE.rst create mode 100644 crm_exception/static/description/index.html create mode 100644 crm_exception/views/base_exception_views.xml create mode 100644 crm_exception/views/crm_lead_views.xml create mode 120000 setup/crm_exception/odoo/addons/crm_exception create mode 100644 setup/crm_exception/setup.py diff --git a/crm_exception/README.rst b/crm_exception/README.rst new file mode 100644 index 000000000000..6d441c53909e --- /dev/null +++ b/crm_exception/README.rst @@ -0,0 +1,86 @@ +============= +CRM Exception +============= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:76377ec7e459d8d4651ec84b0f4b312ca9a963c7c0ac3cf3efa042a60a3aa2d3 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fcrm-lightgray.png?logo=github + :target: https://github.com/OCA/crm/tree/16.0/crm_exception + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-16-0/crm-16-0-crm_exception + :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/crm&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows you to attach several customizable exceptions to your opportunities. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this module: + +Define the stage_ids in the exception rule if you want to check the exception only for a specific CRM stage. +If you don't define them, the rule will be checked for every stage. + +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 +~~~~~~~ + +* Quartile Limited + +Contributors +~~~~~~~~~~~~ + +* `Quartile `__: + + * Aung Ko Ko Lin + +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. + +This module is part of the `OCA/crm `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/crm_exception/__init__.py b/crm_exception/__init__.py new file mode 100644 index 000000000000..0650744f6bc6 --- /dev/null +++ b/crm_exception/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/crm_exception/__manifest__.py b/crm_exception/__manifest__.py new file mode 100644 index 000000000000..631108fce1c4 --- /dev/null +++ b/crm_exception/__manifest__.py @@ -0,0 +1,13 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "CRM Exception", + "version": "16.0.1.0.0", + "category": "Customer Relationship Management", + "author": "Quartile Limited, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/crm", + "depends": ["crm", "base_exception"], + "license": "AGPL-3", + "data": ["views/crm_lead_views.xml", "views/base_exception_views.xml"], + "installable": True, +} diff --git a/crm_exception/models/__init__.py b/crm_exception/models/__init__.py new file mode 100644 index 000000000000..8b074c0132eb --- /dev/null +++ b/crm_exception/models/__init__.py @@ -0,0 +1,2 @@ +from . import exception_rule +from . import crm_lead diff --git a/crm_exception/models/crm_lead.py b/crm_exception/models/crm_lead.py new file mode 100644 index 000000000000..3575f7419c2e --- /dev/null +++ b/crm_exception/models/crm_lead.py @@ -0,0 +1,36 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, models +from odoo.osv import expression + + +class CrmLead(models.Model): + _inherit = ["crm.lead", "base.exception"] + _name = "crm.lead" + _order = "main_exception_id asc, name desc" + + @api.model + def _reverse_field(self): + return "crm_lead_ids" + + def _rule_domain(self): + base_rule_domain = super()._rule_domain() + if self.stage_id: + rule_domain = expression.AND( + [ + base_rule_domain, + [ + "|", + ("stage_ids", "in", self.stage_id.ids), + ("stage_ids", "=", False), + ], + ] + ) + return rule_domain + return base_rule_domain + + @api.constrains("ignore_exception", "stage_id") + def _check_quantity_positive(self): + for record in self: + record._check_exception() diff --git a/crm_exception/models/exception_rule.py b/crm_exception/models/exception_rule.py new file mode 100644 index 000000000000..a7ab6d9e9cde --- /dev/null +++ b/crm_exception/models/exception_rule.py @@ -0,0 +1,17 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ExceptionRule(models.Model): + _inherit = "exception.rule" + + crm_lead_ids = fields.Many2many(comodel_name="crm.lead", string="Opportunities") + model = fields.Selection( + selection_add=[ + ("crm.lead", "Lead"), + ], + ondelete={"crm.lead": "cascade"}, + ) + stage_ids = fields.Many2many(comodel_name="crm.stage") diff --git a/crm_exception/readme/CONTRIBUTORS.rst b/crm_exception/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000000..cd4e44ca98b5 --- /dev/null +++ b/crm_exception/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Quartile `__: + + * Aung Ko Ko Lin diff --git a/crm_exception/readme/DESCRIPTION.rst b/crm_exception/readme/DESCRIPTION.rst new file mode 100644 index 000000000000..e485c624d1bd --- /dev/null +++ b/crm_exception/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module allows you to attach several customizable exceptions to your opportunities. diff --git a/crm_exception/readme/USAGE.rst b/crm_exception/readme/USAGE.rst new file mode 100644 index 000000000000..36c19d86a0db --- /dev/null +++ b/crm_exception/readme/USAGE.rst @@ -0,0 +1,4 @@ +To use this module: + +Define the stage_ids in the exception rule if you want to check the exception only for a specific CRM stage. +If you don't define them, the rule will be checked for every stage. diff --git a/crm_exception/static/description/index.html b/crm_exception/static/description/index.html new file mode 100644 index 000000000000..f46f920e1e6a --- /dev/null +++ b/crm_exception/static/description/index.html @@ -0,0 +1,431 @@ + + + + + + +CRM Exception + + + +
+

CRM Exception

+ + +

Beta License: AGPL-3 OCA/crm Translate me on Weblate Try me on Runboat

+

This module allows you to attach several customizable exceptions to your opportunities.

+

Table of contents

+ +
+

Usage

+

To use this module:

+

Define the stage_ids in the exception rule if you want to check the exception only for a specific CRM stage. +If you don’t define them, the rule will be checked for every stage.

+
+
+

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

+
    +
  • Quartile Limited
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/crm project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/crm_exception/views/base_exception_views.xml b/crm_exception/views/base_exception_views.xml new file mode 100644 index 000000000000..ff44e5ac1122 --- /dev/null +++ b/crm_exception/views/base_exception_views.xml @@ -0,0 +1,18 @@ + + + + exception.rule.form + exception.rule + + + + + + + + diff --git a/crm_exception/views/crm_lead_views.xml b/crm_exception/views/crm_lead_views.xml new file mode 100644 index 000000000000..95dc6486621e --- /dev/null +++ b/crm_exception/views/crm_lead_views.xml @@ -0,0 +1,16 @@ + + + + crm.lead.form.inherit + crm.lead + + + + + + + + diff --git a/setup/crm_exception/odoo/addons/crm_exception b/setup/crm_exception/odoo/addons/crm_exception new file mode 120000 index 000000000000..7b08c5ec35b3 --- /dev/null +++ b/setup/crm_exception/odoo/addons/crm_exception @@ -0,0 +1 @@ +../../../../crm_exception \ No newline at end of file diff --git a/setup/crm_exception/setup.py b/setup/crm_exception/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/crm_exception/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)