Skip to content

Commit

Permalink
[MIG] crm_phone_call: Migrated to 10.0 (OCA#138)
Browse files Browse the repository at this point in the history
* crm_phonecall module (OCA#131)

This module is the part extracted from Odoo v8 crm module from Odoo that allows to record phone calls. As it has been stripped off from Odoo v9, we add again the feature via this module.

Migration scripts are also included to upgrade a v8 database via OpenUpgrade and don't lose your history.

* [MIG] crm_phone_call: Migrated to 10.0

 - FIX: Correct some lint errors

* [MIG] crm_phone_call: Migrated to 10.0
  • Loading branch information
cubells authored and Jonathan Oscategui Taza committed May 17, 2023
1 parent 11a25ee commit 8484c9f
Show file tree
Hide file tree
Showing 21 changed files with 1,966 additions and 0 deletions.
59 changes: 59 additions & 0 deletions crm_phonecall/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

===============
CRM phone calls
===============

* This module allows to manage phone calls in order to analyze them.

Usage
=====

To use this module, you need to:

#. Go to *Sales > Phone Calls > Logged Calls > Create*.
#. If your user has *Show Scheduled Calls Menu* permission, you will see
scheduled calls menu too.
#. In any moment you can schedule another call, schedule a meeting or convert
call contact to opportunity.
#. Calls can be categorized and you can manage categories in *Sales >
Configuration > Leads & Opportunities > Phone Calls > Categories*.
#. Calls can be analyzed in *Sales > Reports > Phone Calls Analysis*.

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/134/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.

Credits
=======

Contributors
------------

* Odoo S.A.
* Vicent Cubells <vicent.cubells@tecnativa.com>

Maintainer
----------

.. 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.
7 changes: 7 additions & 0 deletions crm_phonecall/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Tecnativa - Vicent Cubells
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import models
from . import wizard
from . import report
27 changes: 27 additions & 0 deletions crm_phonecall/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Tecnativa - Vicent Cubells
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "CRM Phone Calls",
"version": "10.0.1.0.0",
"category": "Customer Relationship Management",
"author": "Odoo S.A., "
"Tecnativa, "
"Odoo Community Association (OCA)",
"website": "http://www.tecnativa.com",
"license": "AGPL-3",
"depends": [
'crm',
'calendar',
],
"data": [
'security/crm_security.xml',
'security/ir.model.access.csv',
'wizard/crm_phonecall_to_phonecall_view.xml',
'views/crm_phonecall_view.xml',
'views/res_partner_view.xml',
'report/crm_phonecall_report_view.xml',
],
'installable': True,
}
Loading

0 comments on commit 8484c9f

Please sign in to comment.