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

text field value to Link in message to redirect to form

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
odoo16featuresv17
1 Odpowiedz
4587 Widoki
Awatar
SmithJohn45

i have below code to send message in Automated Action and want to convert into link to open corresponding form view:

record.message_post(body="Internal Transfer created successfully... "+str(record.x_stock_picking_id)+' '+new_stock_picking.name)

it is working correctly to show the stock.picking id and name both. how i can convert new_stock_picking.name into a Link to open Internal Transfer form view with record.x_stock_picking_id (many2one) which contains value of stock.picking id field.

please help.

note: my previous topic has been Deleted without information " why and what was the wrong  " so i cannot repeat the mistake. i am struggling to achieve something and as per my knowledge, i can made mistakes too, so please be humble and inform us.

regards



0
Awatar
Odrzuć
SmithJohn45
Autor

i tried as below, it is generating related link but it appears as text how i can convert this into actual clickable link?

record.message_post(body=f'{base_url}/web#id={record.x_stock_picking_id.id}&view_type=form&model=stock.picking')

regards

Awatar
Maciej Burzymowski
Najlepsza odpowiedź

The URL of a form view in Odoo typically follows this format: https:///web#id=&model=&view_type=form. You can replace , , and with your Odoo instance’s URL, the ID of the record you want to open, and the name of the model, respectively.


Here’s how you can modify your code to include a link to the form view of the new_stock_picking record:


https://pastebin.com/xVs2sk6r


In this code, replace with the URL of your Odoo instance. This code creates a link with the text of new_stock_picking.name that opens the form view of the new_stock_picking record when clicked.

Please note that this code assumes that the user who clicks the link has the necessary access rights to view the new_stock_picking record. If the user does not have the necessary access rights, they will see an access error when they click the link.

1
Awatar
Odrzuć
SmithJohn45
Autor

thank you for reply but i have to enter my odoo instance which is localhost? how i can make it dynamic so it can be access from any instance which make sense.

regards

SmithJohn45
Autor

also tried your given code but its showing in Text not as clickable Link ... what i am missing or doing wrong?

using my code i can copy / paste the link text and can access the currently created new record in Internal Transfer form view.

please help.

regards

SmithJohn45
Autor

thank you @Maciej Burzymowski for your help.

i have implemented Smart Button because after all struggle i just have text of generated link but not a clickable link.

kind regards

SmithJohn45
Autor

problem has resolved, found solution for link when asked on stackoverflow. now the Clickable Link appear in chatter message ... many thanks to CZoellner who help as it should be.

@Admin please, now you can close this topic.

regards.

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ść
odoo 16 & odoo 17: change default message?
odoo16features v17
Awatar
Awatar
1
kwi 25
3856
Payroll UK
odoo16features v17
Awatar
Awatar
1
mar 25
3247
Twilio Voip with odoo 16
odoo16features v17
Awatar
Awatar
Awatar
Awatar
Awatar
4
sie 24
4758
Created incorrect Record Rule and cannot access Odoo Rozwiązane
odoo16features v17
Awatar
Awatar
1
sty 24
2462
Override create method from specific form view
odoo16features v17
Awatar
Awatar
1
gru 23
3673
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