[IMP] stock_picking_batch_custom: allow deleting operator lines, show picking reference

Allow removing stock.move.line records from the Basket Assembly operator
view (select + Delete action) instead of forcing quantity to zero, which
caused issues for operators. Also expose the picking reference field
(hidden by default) before the contact column.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
GitHub Copilot 2026-07-15 15:27:02 +02:00
parent aba22fd230
commit 07b0e546c4
2 changed files with 3 additions and 2 deletions

View file

@ -239,7 +239,7 @@ class StockPickingBatch(models.Model):
"domain": [("batch_id", "=", self.id)],
"context": {
"create": False,
"delete": False,
"delete": True,
},
}