Skip to content
Snippets Groups Projects
Commit 8ca4126f authored by Hardik Patel's avatar Hardik Patel Committed by amoyaux
Browse files

[FIX]stock: while picking is done, red line shown in detailed operations -->...

[FIX]stock: while picking is done, red line shown in detailed operations --> Adding state!=done in that condition.
parent a7883df9
No related branches found
No related tags found
No related merge requests found
......@@ -256,7 +256,7 @@
<notebook>
<page string="Detailed Operations" attrs="{'invisible': [('show_operations', '=', False)]}">
<field name="move_line_ids" context="{'default_picking_id': id, 'default_location_id': location_id, 'default_location_dest_id': location_dest_id}">
<tree editable="bottom" decoration-muted="result_package_id" decoration-danger="qty_done&gt;product_uom_qty" decoration-success="qty_done==product_uom_qty and state!='done' and not result_package_id">
<tree editable="bottom" decoration-muted="result_package_id" decoration-danger="qty_done&gt;product_uom_qty and state!='done'" decoration-success="qty_done==product_uom_qty and state!='done' and not result_package_id">
<field name="product_id" required="1"/>
<field name="product_uom_id" attrs="{'readonly': [('state', '!=', 'draft')]}" groups="product.group_uom"/>
<field name="package_id" groups="stock.group_tracking_lot"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment