[IMP] stock_picking_batch_custom: add full-screen operator view for batch picking

Add a "Vista Operarios" button in the batch form header (visible when
in_progress) that opens a full-screen list of stock.move.line filtered
by the current batch. The view shows only the fields operators need
(category, product, partner, home_delivery, consumer_group, collected,
quantity) with larger rows and touch-friendly quantity input via CSS.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
GitHub Copilot 2026-05-29 18:30:46 +02:00
parent c8e0461120
commit a9a14e7db5
3 changed files with 76 additions and 0 deletions

View file

@ -18,3 +18,30 @@ table.o_batch_move_line_list td[name="quantity"] .o_field_widget input {
min-height: 44px;
font-size: 1.1rem;
}
/* ── Operator view: full-screen, touch-optimised list ── */
table.o_batch_operator_list tbody tr.o_data_row td {
padding-top: 10px;
padding-bottom: 10px;
font-size: 1.05rem;
}
table.o_batch_operator_list th[data-name="quantity"],
table.o_batch_operator_list td[name="quantity"] {
min-width: 130px;
}
table.o_batch_operator_list td[name="quantity"] .o_field_widget input {
min-height: 48px;
font-size: 1.2rem;
text-align: center;
}
table.o_batch_operator_list td[name="is_collected"] {
min-width: 80px;
text-align: center;
}
table.o_batch_operator_list td[name="is_collected"] .o_field_widget {
transform: scale(1.4);
}