Browse Source

[MIG] partner_phonecall_schedule: Migration to 11.0

pull/675/head
David 6 years ago
committed by Anand Kansagra
parent
commit
6801a90600
  1. 76
      partner_phonecall_schedule/README.rst
  2. 1
      partner_phonecall_schedule/__init__.py
  3. 3
      partner_phonecall_schedule/__manifest__.py
  4. 1
      partner_phonecall_schedule/models/__init__.py
  5. 1
      partner_phonecall_schedule/models/res_partner.py
  6. 4
      partner_phonecall_schedule/readme/CONTRIBUTORS.rst
  7. 2
      partner_phonecall_schedule/readme/DESCRIPTION.rst
  8. 12
      partner_phonecall_schedule/readme/USAGE.rst
  9. 1
      partner_phonecall_schedule/tests/__init__.py
  10. 1
      partner_phonecall_schedule/tests/test_schedule.py

76
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
<https://github.com/OCA/crm/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 <https://github.com/OCA/partner-contact/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 <https://github.com/OCA/partner-contact/issues/new?body=module:%20partner_phonecall_schedule%0Aversion:%2011.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
=======
Images
------
Authors
~~~~~~~
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
* Tecnativa
Contributors
------------
~~~~~~~~~~~~
* Jairo Llopis <jairo.llopis@tecnativa.com>
* `Tecnativa <https://www.tecnativa.com>`_:
Do not contact contributors directly about support or help with technical issues.
Funders
-------
* Jairo Llopis <jairo.llopis@tecnativa.com>
* David Vidal <david.vidal@tecnativa.com>
The development of this module has been financially supported by:
Maintainers
~~~~~~~~~~~
* `Tecnativa <https://www.tecnativa.com>`_
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 <https://github.com/OCA/partner-contact/tree/11.0/partner_phonecall_schedule>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

1
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

3
partner_phonecall_schedule/__openerp__.py → partner_phonecall_schedule/__manifest__.py

@ -1,10 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# 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)",

1
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

1
partner_phonecall_schedule/models/res_partner.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

4
partner_phonecall_schedule/readme/CONTRIBUTORS.rst

@ -0,0 +1,4 @@
* `Tecnativa <https://www.tecnativa.com>`_:
* Jairo Llopis <jairo.llopis@tecnativa.com>
* David Vidal <david.vidal@tecnativa.com>

2
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.

12
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*

1
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

1
partner_phonecall_schedule/tests/test_schedule.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Jairo Llopis <jairo.llopis@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

Loading…
Cancel
Save