You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
881 B
21 lines
881 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Record for inherit Product form to add sequence and generate qr button -->
|
|
<record id="product_form_inherit" model="ir.ui.view">
|
|
<field name="name">product.product.form.qr.inherit</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button name="generate_qr" type="object" class="btn-box"
|
|
icon="fa-qrcode">
|
|
<field name="sequence" invisible="1"/>
|
|
Generate QR
|
|
</button>
|
|
</div>
|
|
<field name="categ_id" position="after">
|
|
<field name="sequence"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|