Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Click2dial module installation

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
moduleinstall
3 Răspunsuri
13078 Vizualizări
Imagine profil
Dries Coeman

Hi, i just installed openerp on a windows 7 machine for testing. I would like to install the click2dial module but there is no import button.

How do i import this module?

0
Imagine profil
Abandonează
Imagine profil
Yaroslav
Cel mai bun răspuns

On the site of the module author you have detailed step-by-step instructions on how to install it.

You can download the module from the OpenERP Apps site. Then install it using bazaar.

In case the link is broken here is a copy/paste from the site:

The OpenERP-Asterisk connector is made of 2 modules :

  • asterisk_click2dial : this is the main module, that everybody should install. This module has been fully developped by Akretion.

  • asteriskclick2dialcrm : an additionnal module that you should install only if you are interested in the additionnal CRM-specific features. This module has initially been developped by the Spanish company Zikzakmedia and later enhanced by Akretion.

These modules should be installed on OpenERP just like any OpenERP module. The source code of the module is available on the dedicated project OpenERP-Asterisk connector on Launchpad :

  • for OpenERP v5/v6 (same code for these 2 versions of OpenERP) : https://code.launchpad.net/~openerp-asterisk-team/openerp-asterisk-connector/6.0

  • for OpenERP v6.1 : https://code.launchpad.net/~openerp-asterisk-team/openerp-asterisk-connector/6.1

The version of OpenERP 6.1 is currently the main focus of development ; some features are only available in this version.

These modules require two additional Python libraries : phonenumbers and py-Asterisk. To install the library phonenumbers, run:

% sudo pip install phonenumbers

The pip command is the successor of easy_install and is the official tool to install Python libraries. If you don't have this tool on your system, install the corresponding package (package python-pip on Debian/Ubuntu systems).

To install the library py-Asterisk, you can't use the pip install command because you need a very recent version which is not yet in Pypi. In fact, you need to have this commit which is dated November 20th, 2012. So you should get the source from the project py-asterisk on Google code :

% hg clone https://code.google.com/p/py-asterisk/
% cd py-asterisk
% sudo python ./setup.py install

The hg command is part of the Mercurial version control system. If you don't have this tool on your system, install the corresponding package (package mercurial on Debian/Ubuntu systems).

Note : the module named asterisk in the extra-addons repository is not related to this connector. The asterisk_click2dial module doesn’t depend on it.

1
Imagine profil
Abandonează
Imagine profil
Mikael Bellina
Cel mai bun răspuns

Hello,

Could someone please explain step by step how to install theses two libraries on Windows.

Please !!!! I found how to install the module with bazaar but I'm stuck with the libraries !

Thanks

0
Imagine profil
Abandonează

hi Mickael, Where are you stuck exactly ?

Mikael Bellina

Hello Nicolas, I have two problems.

First : I don’t know if I install a new version of Python, how to use it in OpenErp. Because there is some tuto (not a lot) on how to install librairies with python.

Second : I don’t khow to install theses two libraries with the existing python environment of OpenErp. I’m on windows 64. Thanks

Imagine profil
John Antasouras
Cel mai bun răspuns

Hi,

you can use ActiveState ActivePython for windows, to install py-asterisk. Download and install ActivePython2.7 community edition.

Run PyPM as administrator. In the command prompt, execute:

pip install phonenumbers

and

pip install py-asterisk

to install phonenumbers and Asterisk

Then, go to ActivePython installation directory, in /Lib/site-packages, and copy Asterisk and phonenumbers folders to OpenERP directory under /Server/server/

From the OpenERP install the 3 phonenumbers modules and then install Click2dial and click2dailCRM.

They should install without issues.

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
odoo-14: I get an error when I try to install a module in Digital Ocean Rezolvat
module install
Imagine profil
Imagine profil
1
apr. 21
6635
Unable to install module Rezolvat
module install
Imagine profil
Imagine profil
2
apr. 15
5436
how to install a module in openerp 7.0 windows?
module install
Imagine profil
Imagine profil
1
mar. 15
4921
[Odoo.sh 17] Installing error: Invalid Operation: The module cannot be downloaded Rezolvat
module install odoosh
Imagine profil
Imagine profil
1
mar. 24
6953
Error installing Project module Rezolvat
project module install
Imagine profil
1
dec. 20
5154
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now