Its possible to show the website-link of a contact (as functionable link) in the kanban-view ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
1798
Views
Hello,
You can inherit a kanban view using this method
<record id="barcode_scanner_button_add" model="ir.ui.view">
<field name="name">name.view</field>
<field name="model">model.name</field>
<field name="inherit_id" ref="stock.stock_picking_type_kanban"/>
<field name="arch" type="xml">
<xpath expr='//div[@name="stock_picking"]/div/div[2]/div/div' position="after">
<div class="oe_right">
<a type="button">
<button name="button_name" type="button_type" class="oe_highlight">
<span>Submit</span>
</button>
</a>
</div>
</xpath>
</field>
</record>
From action of button you can return to any link you need
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up