Skip to Content
Menu
This question has been flagged
1 Reply
1798 Views

Its possible to show the website-link of a contact (as functionable link) in the kanban-view ?

Avatar
Discard
Best Answer

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

Avatar
Discard