Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Here is the error: py-Asterisk action failed: Extension does not exist

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
asteriskodooV8Click2Dial
3 Odpowiedzi
14237 Widoki
Awatar
Milan Thakkar

I had installed the Asterisk server in my local and installed all asterisk modules. When I press the 'Test connection to Asterisk' button in asterisk server record under Telephony menu under settings shows '

Connection Test Successfull!

Odoo can successfully login to the Asterisk Manager Interface.

Then I move to customer record and Dial a phone, It shows the warning

Error:
Click to dial with Asterisk failed.
Here is the error: 'py-Asterisk action failed: Extension does not exist.'             


Is anybody know the exact configuration of asterisk odoo connector

1
Awatar
Odrzuć
Awatar
Kamil Gałdzicki
Najlepsza odpowiedź

Hi, 

I had the same problem using our provider - the configuration that worked for me in extension is as follows: 

[provider-in]
exten => account_nb,1, Dial(SIP/101)                       ;

[provider-out]
exten => _XXX,1,Dial(SIP/${EXTEN}) ;
exten => _XXX.,1,Dial(SIP/${EXTEN}@account_nb)             ; 
exten => _+XX.,1,Dial(SIP/${EXTEN}@account_nb)             ; 
​

so this last extension _+XX. actually worked for us,

Best Regards

0
Awatar
Odrzuć
Awatar
Tuxane
Najlepsza odpowiedź

I don't agree on this. "From-internal"  is very likely the right context for originating calls .

If you compare with /etc/asterisk/extensions.conf it is clearly stated, that "from trunk" is for calls entering the dialplan from the outside world .

; from-trunk:
;
; Context is really just an aliax of from-pstn
;
[from-trunk]
include => from-pstn
;-------------------------------------------------------------------------------

;-------------------------------------------------------------------------------
; from-pstn:
;
; Entry context for calls from the outside world to hit FreePBX


Of course you need to make sure that the extension in the odoo users setting is the same internal extention number as the phone  to send the call to e.g. if the  odoo users Internal Number   is 160 , the extension 160 has to be the users internal desk phone number  (The phone which is supposed to ring after you click dial in Odoo)


The problem in newer versions of Asterisk ( from v12 on I guess) is that the AMI interface had been restricted and there a new security things in place which stop the CTD funtionality in Odoo from working like before.

For me the solution is to change the Asterisk Channel Type from SIP to LOCAL

 At least in freepbx thing started to work again without problems .

https://issues.asterisk.org/jira/browse/ASTERISK-22905

0
Awatar
Odrzuć
Awatar
Pravitha
Najlepsza odpowiedź

Hello Milan Thakkar,


Error:
Click to dial with Asterisk failed.
Here is the error: 'py-Asterisk action failed: Extension does not exist.'   

From the above error I think the problem is with the Dialplan Parameters  under settings-->Telephony--> Asterisk servers -->create a server --> Dialplan Parameters.

Under Dialplan parameters you can see Dialplan Context . You can enter 3 types of dialplan contexts.

1. from-internal : Originate an internal call

2. from-trunk  : Originate an external call via trunk

3. ext-local

From the above three I prefer you to try the "from-trunk" option in the dialplan context  and give Extension Priority =1 and then test it.



-1
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Click to dial with Asterisk failed.
asterisk odooV8 Click2Dial
Awatar
Awatar
Awatar
4
maj 17
8177
Odoo V8 Click2Dial with Asterisk
asterisk odooV8 Click2Dial
Awatar
0
sie 16
4568
Problem in the request from OpenERP to Asterisk. Here is the error message: [Errno 111] Connection refused
asterisk odooV8 Click2Dial
Awatar
Awatar
1
lis 15
6031
Odoo Asterisk_Click2Dial Module related Issue
asterisk odooV8 Click2Dial
Awatar
0
sie 24
4686
Installing Click2Dial Modul Failure
asterisk odooV8 Click2Dial
Awatar
0
mar 15
4590
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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