Skip to content

Commit

Permalink
[FIX] stock_batch_pickink_ux: reserved_qty duplicated iin view
Browse files Browse the repository at this point in the history
X-original-commit: a44574d
  • Loading branch information
mav-adhoc committed Apr 19, 2024
1 parent 9234298 commit c57e7c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion stock_batch_picking_ux/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
'name': 'Stock Usability with Batch Picking and stock vouchers',
'version': "16.0.1.0.0",
'version': "16.0.1.3.0",
'category': 'Warehouse Management',
'sequence': 14,
'summary': '',
Expand Down
3 changes: 0 additions & 3 deletions stock_batch_picking_ux/views/stock_move_line_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
<field name="product_uom_qty_location" position="attributes">
<attribute name="invisible">context.get('from_batch')</attribute>
</field>
<field name="qty_done" position="before">
<field name="reserved_uom_qty" readonly="1"/>
</field>
</field>
</record>

Expand Down
4 changes: 2 additions & 2 deletions stock_ux/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
'name': 'Stock UX',
'version': "17.0.1.0.0",
'version': "17.0.1.1.0",
'category': 'Warehouse Management',
'sequence': 14,
'summary': '',
Expand All @@ -32,8 +32,8 @@
'sale_stock',
'report_aeroo',
'stock_voucher',
'product_expiry',
'stock_barcode',
'mail',
],
'data': [
'security/stock_ux_security.xml',
Expand Down
8 changes: 1 addition & 7 deletions stock_ux/views/stock_move_line_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<field name="product_uom_category_id" column_invisible="True"/>
<field name="product_uom_id" string="Unit of Measure" groups="uom.group_uom" readonly="1"/>
<field name="lots_visible" column_invisible="True"/>
<field name="owner_id" readonly="1"/>
<field name="owner_id" readonly="1" optional="hide"/>
</field>
<field name="lot_id" position="attributes">
<attribute name="invisible">not lots_visible</attribute>
Expand All @@ -106,12 +106,6 @@
<field name="quantity" position="after">
<button name="set_all_done" title="Set all Done" type="object" icon="fa-check" invisible="state not in ('confirmed', 'assigned', 'waiting', 'partially_available')"/>
</field>
<field name="lot_id" position="after">
<field name="expiration_date" readonly="0"/>
</field>
<field name="expiration_date" position="attributes">
<attribute name="invisible">not lots_visible</attribute>
</field>
</field>
</record>

Expand Down

0 comments on commit c57e7c9

Please sign in to comment.