Skip to content

Commit 0c51e9e

Browse files
committed
[FIX] stock: make reception report srollable
To Reproduce ============ - on settings enable Reception Reports - for a storable product, create multiple sale orders (something above 10 depending on screen size) - from purchase app make quotation for same product with quantity that covers these sale orders - on deliver > allocation, the list is not scrollable Problem ======= The `div` containing the data doesn't have a style that makes it scrollable Solution ======== add `overflow-y: auto;` to `.o_report_reception` opw-3199037 closes odoo#114423 Signed-off-by: William Henrotin (whe) <whe@odoo.com>
1 parent ddb7574 commit 0c51e9e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

addons/stock/static/src/scss/stock_traceability_report.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,6 @@
8484
}
8585
}
8686
}
87+
.o_report_reception {
88+
overflow-y: auto;
89+
}

0 commit comments

Comments
 (0)