17.0_dev-target #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "17.0_dev-target"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
[IMP] pos styling: Einheitliche Scrollbar-Größe im POS-Bereich
Setzt eine globale CSS-Regel für alle Scrollbars innerhalb des POS-Interfaces
(
.pos *::-webkit-scrollbar) auf 8px Breite und Höhe. Dadurch erhalten allescrollbaren Elemente eine konsistente und bedienfreundliche Scrollbar-Darstellung,
insbesondere für Touchscreen- und Terminal-Geräte.
[FIX] open_workshop: ensure ProductScreen context for new POS orders
When adding a new order via the customer sidebar, the ProductScreen
was not explicitly activated. As a result, the screen_data context
expected by pos_time_based_products was missing, and no play button
was shown for time-based products.
This patch explicitly calls
this.pos.showScreen("ProductScreen")after creating a new order to restore compatibility with third-party
POS components that rely on the current screen state.
When adding a new order via the customer sidebar, the ProductScreen was not explicitly activated. As a result, the screen_data context expected by pos_time_based_products was missing, and no play button was shown for time-based products. This patch explicitly calls `this.pos.showScreen("ProductScreen")` after creating a new order to restore compatibility with third-party POS components that rely on the current screen state.