diff --git a/partner_phonecall_schedule/README.rst b/partner_phonecall_schedule/README.rst index 7fb1e3c3e..99c95daee 100644 --- a/partner_phonecall_schedule/README.rst +++ b/partner_phonecall_schedule/README.rst @@ -1,14 +1,38 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl - :alt: License: AGPL-3 - =========================== Partner phonecalls schedule =========================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fpartner--contact-lightgray.png?logo=github + :target: https://github.com/OCA/partner-contact/tree/11.0/partner_phonecall_schedule + :alt: OCA/partner-contact +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/partner-contact-11-0/partner-contact-11-0-partner_phonecall_schedule + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/134/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + If you know the best moment to call your partners, use this addon to keep track of it and be able to filter partners that you can comfortably call now. +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -25,51 +49,45 @@ To filter partners available to call right now: #. Go to the partners view. #. Use the built-in filter *Available for phone calls now* -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/111/10.0 - 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 smash it by providing detailed and welcomed feedback. +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Tecnativa Contributors ------------- +~~~~~~~~~~~~ -* Jairo Llopis +* `Tecnativa `_: -Do not contact contributors directly about support or help with technical issues. - -Funders -------- + * Jairo Llopis + * David Vidal -The development of this module has been financially supported by: +Maintainers +~~~~~~~~~~~ -* `Tecnativa `_ - -Maintainer ----------- +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - 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. -To contribute to this module, please visit https://odoo-community.org. +This module is part of the `OCA/partner-contact `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_phonecall_schedule/__init__.py b/partner_phonecall_schedule/__init__.py index ec50cfc0f..69f7babdf 100644 --- a/partner_phonecall_schedule/__init__.py +++ b/partner_phonecall_schedule/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import models diff --git a/partner_phonecall_schedule/__openerp__.py b/partner_phonecall_schedule/__manifest__.py similarity index 92% rename from partner_phonecall_schedule/__openerp__.py rename to partner_phonecall_schedule/__manifest__.py index 0728ae592..2454b3ab4 100644 --- a/partner_phonecall_schedule/__openerp__.py +++ b/partner_phonecall_schedule/__manifest__.py @@ -1,10 +1,9 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Partner phonecalls schedule", "summary": "Track the time and days your partners expect phone calls", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "category": "Customer Relationship Management", "website": "https://github.com/OCA/crm", "author": "Tecnativa, Odoo Community Association (OCA)", diff --git a/partner_phonecall_schedule/models/__init__.py b/partner_phonecall_schedule/models/__init__.py index a9e655304..88fed2832 100644 --- a/partner_phonecall_schedule/models/__init__.py +++ b/partner_phonecall_schedule/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import res_partner diff --git a/partner_phonecall_schedule/models/res_partner.py b/partner_phonecall_schedule/models/res_partner.py index 7e2b29f98..0c53b86f5 100644 --- a/partner_phonecall_schedule/models/res_partner.py +++ b/partner_phonecall_schedule/models/res_partner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/partner_phonecall_schedule/readme/CONTRIBUTORS.rst b/partner_phonecall_schedule/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..454d20da7 --- /dev/null +++ b/partner_phonecall_schedule/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* `Tecnativa `_: + + * Jairo Llopis + * David Vidal diff --git a/partner_phonecall_schedule/readme/DESCRIPTION.rst b/partner_phonecall_schedule/readme/DESCRIPTION.rst new file mode 100644 index 000000000..f33604cfa --- /dev/null +++ b/partner_phonecall_schedule/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +If you know the best moment to call your partners, use this addon to keep +track of it and be able to filter partners that you can comfortably call now. diff --git a/partner_phonecall_schedule/readme/USAGE.rst b/partner_phonecall_schedule/readme/USAGE.rst new file mode 100644 index 000000000..4840bfbcd --- /dev/null +++ b/partner_phonecall_schedule/readme/USAGE.rst @@ -0,0 +1,12 @@ +To use the phonecall schedules, you need to: + +#. Go to any partner form. +#. Go to the *Phone calls* tab. +#. Select any of the available schedules. +#. A readonly checkbox will tell you if it is a good time to call him/her. +#. A readonly aggregated schedule is visible too. + +To filter partners available to call right now: + +#. Go to the partners view. +#. Use the built-in filter *Available for phone calls now* diff --git a/partner_phonecall_schedule/tests/__init__.py b/partner_phonecall_schedule/tests/__init__.py index 84f27859b..c16a1cddc 100644 --- a/partner_phonecall_schedule/tests/__init__.py +++ b/partner_phonecall_schedule/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import test_schedule diff --git a/partner_phonecall_schedule/tests/test_schedule.py b/partner_phonecall_schedule/tests/test_schedule.py index 8441e2fa1..d593a99a0 100644 --- a/partner_phonecall_schedule/tests/test_schedule.py +++ b/partner_phonecall_schedule/tests/test_schedule.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).