-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] crm_phone_call: Migrated to 10.0 (OCA#138)
* 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
Showing
21 changed files
with
1,966 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |
Oops, something went wrong.