Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
4440 Vizualizări

my button doesnt redirect to desired url

this is my pthon code
 @api.one   
 def btn_view_google_map(self):       
    return {           
        'type': 'ir.actions.act_url',           
        'name':'btn_view_google_map',           
        'url': "https://maps.google.com/?ll=0,0",            
         'target': 'new'       
      }


this is my xml view 
button name="btn_view_google_map" type="object" string="View On Google Maps" class="btn_primary" icon="fa-map"/


Imagine profil
Abandonează
Cel mai bun răspuns

Hello Muhammad Zulfi Rusdani,

Hope you are doing well.

In your code, you write the @api.one above the function but the ir.action.act_url doesn't work with @api.one and it works with @api.multi If your Odoo version is less than 13 and If you use Odoo Version Greater than or Equal to 13 then don't write @api.multi so please rewrite the code like below.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Imagine profil
Abandonează

@api.multi
def btn_view_google_map(self):
return {
'type': 'ir.actions.act_url',
'name':'btn_view_google_map',
'url': "https://maps.google.com/?ll=0,0",
'target': 'new'
}

Related Posts Răspunsuri Vizualizări Activitate
2
aug. 25
129
1
aug. 25
269
1
aug. 25
213
0
aug. 25
208
1
aug. 25
364