Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][MIG] crm_phone_cdr #312

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions crm_phone_cdr/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg
:alt: License LGPL-3

=============
CRM Phone CDR
=============

This module will add menu in CRM for Phone Records.


Credits
=======

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

* Chanakya Soni <[email protected]>
* Daniel Reis <[email protected]>

Empty file added crm_phone_cdr/__init__.py
Empty file.
11 changes: 11 additions & 0 deletions crm_phone_cdr/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Base Phone CDR CRM",
"category": "CRM",
"author": "Serpent Consulting Services Pvt. Ltd., Odoo Community Association (OCA)",
"website": "https://github.com/OCA/connector-telephony",
"summary": " This module will add menu in CRM | Reports Menu",
"version": "17.0.1.0.0",
"depends": ["base_phone_cdr", "crm"],
"data": ["view/crm_view.xml"],
"license": "AGPL-3",
}
3 changes: 3 additions & 0 deletions crm_phone_cdr/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
9 changes: 9 additions & 0 deletions crm_phone_cdr/view/crm_view.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<menuitem
id="phone_cdr_"
name="Phone Records"
parent="crm.crm_menu_report"
action="base_phone_cdr.phone_cdr_view_action"
/>
</odoo>
Loading