Browse Source
Port crm_phone to v9
Port crm_phone to v9
Code cleanup, fixes, small enhancements The code to extract the calling party number from the list of channels is now inheritablepull/88/head
Alexis de Lattre
9 years ago
20 changed files with 137 additions and 342 deletions
-
54asterisk_click2dial/asterisk_click2dial.py
-
5asterisk_click2dial/asterisk_server_view.xml
-
4asterisk_click2dial/res_users_view.xml
-
4asterisk_click2dial/static/src/js/asterisk_click2dial.js
-
21asterisk_click2dial_crm/__init__.py
-
48asterisk_click2dial_crm/__openerp__.py
-
9base_phone/res_company_view.xml
-
11base_phone/res_partner_view.xml
-
9base_phone/res_users_view.xml
-
9base_phone/web_phone.xml
-
12base_phone/wizard/number_not_found.py
-
11base_phone/wizard/number_not_found_view.xml
-
30crm_phone/__openerp__.py
-
38crm_phone/crm_phone.py
-
39crm_phone/crm_view.xml
-
9crm_phone/res_users_view.xml
-
19crm_phone/wizard/__init__.py
-
32crm_phone/wizard/create_crm_phonecall.py
-
101crm_phone/wizard/number_not_found.py
-
14crm_phone/wizard/number_not_found_view.xml
@ -1,21 +0,0 @@ |
|||||
# -*- encoding: utf-8 -*- |
|
||||
############################################################################## |
|
||||
# |
|
||||
# Asterisk click2dial CRM module for OpenERP |
|
||||
# Copyright (c) 2012-2014 Akretion (http://www.akretion.com) |
|
||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com> |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as published |
|
||||
# by the Free Software Foundation, either version 3 of the License, or |
|
||||
# (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
@ -1,48 +0,0 @@ |
|||||
# -*- encoding: utf-8 -*- |
|
||||
############################################################################## |
|
||||
# |
|
||||
# Asterisk click2dial CRM module for OpenERP |
|
||||
# Copyright (c) 2012-2014 Akretion (http://www.akretion.com) |
|
||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com> |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as published |
|
||||
# by the Free Software Foundation, either version 3 of the License, or |
|
||||
# (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
|
|
||||
{ |
|
||||
"name": "Asterisk Click2dial CRM", |
|
||||
"version": "8.0.0.1.0", |
|
||||
"author": "Akretion,Odoo Community Association (OCA)", |
|
||||
"website": "http://www.akretion.com", |
|
||||
"license": "AGPL-3", |
|
||||
"category": "Phone", |
|
||||
"description": """ |
|
||||
Asterisk Click2dial CRM |
|
||||
======================= |
|
||||
|
|
||||
This module is *EMPTY* ; so you should uninstall it now. |
|
||||
The code that used to be in this module has been moved to the module |
|
||||
*crm_phone* that is available in the same GitHub repository |
|
||||
https://github.com/OCA/connector-telephony |
|
||||
|
|
||||
This module will be removed from the repository in the near future. |
|
||||
""", |
|
||||
"depends": [ |
|
||||
'asterisk_click2dial', |
|
||||
'crm_phone', |
|
||||
], |
|
||||
"data": [], |
|
||||
'installable': False, |
|
||||
"application": False, |
|
||||
} |
|
@ -1,23 +1,4 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||
############################################################################## |
|
||||
# |
|
||||
# CRM Phone module for OpenERP |
|
||||
# Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr> |
|
||||
# |
|
||||
# This program is free software: you can redistribute it and/or modify |
|
||||
# it under the terms of the GNU Affero General Public License as |
|
||||
# published by the Free Software Foundation, either version 3 of the |
|
||||
# License, or (at your option) any later version. |
|
||||
# |
|
||||
# This program is distributed in the hope that it will be useful, |
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
# GNU Affero General Public License for more details. |
|
||||
# |
|
||||
# You should have received a copy of the GNU Affero General Public License |
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
# |
|
||||
############################################################################## |
|
||||
|
|
||||
from . import number_not_found |
from . import number_not_found |
||||
from . import create_crm_phonecall |
from . import create_crm_phonecall |
Write
Preview
Loading…
Cancel
Save
Reference in new issue