Reputation: 103
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
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
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