Files
test/quality_control/views/stock_move_views.xml
qihao.gong@jikimo.com 3c89404543 质量模块和库存扫码
2023-07-24 11:42:15 +08:00

17 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_stock_move_line_detailed_operation_tree_inherit_quality" model="ir.ui.view">
<field name="name">stock.move.line.operations.tree.inherit</field>
<field name="model">stock.move.line</field>
<field name="inherit_id" ref="stock.view_stock_move_line_detailed_operation_tree"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='product_uom_id']" position="after">
<field name="check_state" invisible="1"/>
<button type="object" class="btn-info" name="action_open_quality_check_wizard" icon="fa-check" attrs="{'invisible': [('check_state', '!=', 'in_progress')]}" title="Quality Check"/>
<button type="object" class="btn-danger" name="action_open_quality_check_wizard" icon="fa-check" attrs="{'invisible': [('check_state', '!=', 'fail')]}" title="Quality Check"/>
<button type="object" class="btn-success" name="action_open_quality_check_wizard" icon="fa-check" attrs="{'invisible': [('check_state', '!=', 'pass')]}" title="Quality Check"/>
</xpath>
</field>
</record>
</odoo>