Deepshikha Varma
Deepshikha Varma

Reputation: 103

How to redirect to invoice menu from Odoo website?

I am working on odoo11. I want to redirect to Invoicing menu from Odoo website on button click. How can I achieve it through code?

Upvotes: 0

Views: 332

Answers (2)

Mustufa Rangwala
Mustufa Rangwala

Reputation: 49

You can use controller to redirect website page to backend but make sure on your controller you use auth=user for security reason so public user can not go to backend.

Upvotes: 0

rak3sh
rak3sh

Reputation: 134

Assuming you are using HTML for your website, You can use anchor tag:

<a href="http://www.your_invoice_menu_url">Invoice!</a>

Upvotes: 1

Related Questions