diff --git a/crm_lead_search_archive/README.rst b/crm_lead_search_archive/README.rst new file mode 100644 index 00000000000..529f3f845d7 --- /dev/null +++ b/crm_lead_search_archive/README.rst @@ -0,0 +1,90 @@ +========================== +Crm Lead Search in Archive +========================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:649af1285e3542367500fda470df3619a612444f80d96cc5af7d1e042e0d8ae1 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/17.0/crm_lead_search_archive + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-17-0/crm-17-0-crm_lead_search_archive + :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=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Add a filter to search both in active/archive lead + +**Table of contents** + +.. contents:: + :local: + +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 +------- + +* Akretion + +Contributors +------------ + +- Akretion + + - David Béal + +- [APSL-Nagarro](https://apsl.tech): + + - Patryk Pyczko + +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-bealdav| image:: https://github.com/bealdav.png?size=40px + :target: https://github.com/bealdav + :alt: bealdav + +Current `maintainer `__: + +|maintainer-bealdav| + +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_lead_search_archive/__init__.py b/crm_lead_search_archive/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/crm_lead_search_archive/__manifest__.py b/crm_lead_search_archive/__manifest__.py new file mode 100644 index 00000000000..841a77fa63b --- /dev/null +++ b/crm_lead_search_archive/__manifest__.py @@ -0,0 +1,19 @@ +{ + "name": "Crm Lead Search in Archive", + "summary": "Add a filter to search both in active/archive lead", + "version": "17.0.1.0.0", + "category": "Customer Relationship Management", + "author": "Akretion, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/crm", + "license": "AGPL-3", + "maintainers": [ + "bealdav", + ], + "depends": [ + "crm", + ], + "data": [ + "views/crm_lead_view.xml", + ], + "installable": True, +} diff --git a/crm_lead_search_archive/i18n/crm_lead_search_archive.pot b/crm_lead_search_archive/i18n/crm_lead_search_archive.pot new file mode 100644 index 00000000000..3358ab02bed --- /dev/null +++ b/crm_lead_search_archive/i18n/crm_lead_search_archive.pot @@ -0,0 +1,19 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_search_archive +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: crm_lead_search_archive +#: model_terms:ir.ui.view,arch_db:crm_lead_search_archive.view_crm_case_opportunities_filter +msgid "Archived or Not" +msgstr "" diff --git a/crm_lead_search_archive/i18n/es.po b/crm_lead_search_archive/i18n/es.po new file mode 100644 index 00000000000..3bff60fd344 --- /dev/null +++ b/crm_lead_search_archive/i18n/es.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_search_archive +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-06-06 14:10+0000\n" +"Last-Translator: luis-ron \n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: crm_lead_search_archive +#: model_terms:ir.ui.view,arch_db:crm_lead_search_archive.view_crm_case_opportunities_filter +msgid "Archived or Not" +msgstr "Archivado o no" diff --git a/crm_lead_search_archive/i18n/fr.po b/crm_lead_search_archive/i18n/fr.po new file mode 100644 index 00000000000..77fdf149a04 --- /dev/null +++ b/crm_lead_search_archive/i18n/fr.po @@ -0,0 +1,23 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_search_archive +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#. module: crm_lead_search_archive +#: model_terms:ir.ui.view,arch_db:crm_lead_search_archive.view_crm_case_opportunities_filter +msgid "Archived or Not" +msgstr "Archivé ou Pas" diff --git a/crm_lead_search_archive/i18n/it.po b/crm_lead_search_archive/i18n/it.po new file mode 100644 index 00000000000..c17dbe3abad --- /dev/null +++ b/crm_lead_search_archive/i18n/it.po @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_lead_search_archive +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2023-06-12 16:10+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: crm_lead_search_archive +#: model_terms:ir.ui.view,arch_db:crm_lead_search_archive.view_crm_case_opportunities_filter +msgid "Archived or Not" +msgstr "Archiviato o meno" diff --git a/crm_lead_search_archive/pyproject.toml b/crm_lead_search_archive/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/crm_lead_search_archive/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/crm_lead_search_archive/readme/CONTRIBUTORS.md b/crm_lead_search_archive/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..a05342cf728 --- /dev/null +++ b/crm_lead_search_archive/readme/CONTRIBUTORS.md @@ -0,0 +1,4 @@ +- Akretion + - David Béal \<\> +- \[APSL-Nagarro\](): + - Patryk Pyczko \<\> diff --git a/crm_lead_search_archive/readme/DESCRIPTION.md b/crm_lead_search_archive/readme/DESCRIPTION.md new file mode 100644 index 00000000000..0fac5b71769 --- /dev/null +++ b/crm_lead_search_archive/readme/DESCRIPTION.md @@ -0,0 +1 @@ +Add a filter to search both in active/archive lead diff --git a/crm_lead_search_archive/static/description/icon.png b/crm_lead_search_archive/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/crm_lead_search_archive/static/description/icon.png differ diff --git a/crm_lead_search_archive/static/description/index.html b/crm_lead_search_archive/static/description/index.html new file mode 100644 index 00000000000..6f7b96ac2ab --- /dev/null +++ b/crm_lead_search_archive/static/description/index.html @@ -0,0 +1,432 @@ + + + + + +Crm Lead Search in Archive + + + +
+

Crm Lead Search in Archive

+ + +

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

+

Add a filter to search both in active/archive lead

+

Table of contents

+ +
+

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

+
    +
  • Akretion
  • +
+
+
+

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.

+

Current maintainer:

+

bealdav

+

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_lead_search_archive/views/crm_lead_view.xml b/crm_lead_search_archive/views/crm_lead_view.xml new file mode 100644 index 00000000000..900c28b4da4 --- /dev/null +++ b/crm_lead_search_archive/views/crm_lead_view.xml @@ -0,0 +1,17 @@ + + + + crm.lead + + + + + + + + +