Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

text field value to Link in message to redirect to form

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
odoo16featuresv17
1 Svar
4560 Visninger
Avatar
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
Avatar
Kassér
SmithJohn45
Forfatter

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

Avatar
Maciej Burzymowski
Bedste svar

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
Avatar
Kassér
SmithJohn45
Forfatter

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
Forfatter

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
Forfatter

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
Forfatter

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.

Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
odoo 16 & odoo 17: change default message?
odoo16features v17
Avatar
Avatar
1
apr. 25
3827
Payroll UK
odoo16features v17
Avatar
Avatar
1
mar. 25
3225
Twilio Voip with odoo 16
odoo16features v17
Avatar
Avatar
Avatar
Avatar
Avatar
4
aug. 24
4740
Created incorrect Record Rule and cannot access Odoo Løst
odoo16features v17
Avatar
Avatar
1
jan. 24
2440
Override create method from specific form view
odoo16features v17
Avatar
Avatar
1
dec. 23
3655
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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