mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
21 lines
794 B
XML
21 lines
794 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="stock_request_order_form">
|
|
<field name="name">stock.request.order.form</field>
|
|
<field name="model">stock.request.order</field>
|
|
<field name="inherit_id" ref="stock_request.stock_request_order_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@name='button_box']" position="inside">
|
|
<button
|
|
name="%(stock_request_kanban.wizard_stock_request_order_kanban_action)d"
|
|
type="action"
|
|
icon="fa-barcode"
|
|
string="Scan"
|
|
states="draft"
|
|
class="oe_read_only"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|