Monday, February 10, 2025
3 changes · saas-17.4
Resolved issues and error corrections
The product configurator now hides quantity change buttons when an online store does not allow customers to change quantities. This prevents shoppers from seeing controls that should not be available and keeps the buying experience aligned with store settings.
Original PR description
Before this fix, the quantity buttons were always visible in eCommerce, even if the website didn't allow changing the quantity.
Users can now drag and drop pivot dimensions even when the side panel contains many items. The panel scrolls correctly during the action, making spreadsheet pivot configuration smoother and less frustrating.
Original PR description
The pivot side panel did not scroll during drag-and-drop of dimensions when multiple dimensions were present. This occurred because the dimensions container lacked a specific height. Adding a height to fill the available space would only enable scrolling within the dimensions list, not the entire side panel. This fix resolves the issue by passing the pivot side panel's reference as the container to drag and drop hook for it's calculations, leveraging its `100vh` height. This approach ensures that scrolling affects the entire side panel, allowing drag-and-drop to function correctly. Task: 3817565
Fixes a receipt printing issue in the Chilean point of sale flow where the required document number was missing from the receipt header. This helps businesses provide complete receipts and reduces confusion during sales.
Original PR description
Currently, when printing receipt, the number in the header is not printed. Steps to reproduce: ------------------- * Install Chilean localization and switch company to `CL Company` * Create a shop and open a session * Make an order * Pay the order > Observation: On the receipt, the header shows ** N°: ** but no number printed beside Why the fix: ------------ `order.account_number` is not an object, just the id of the account move. opw-4494756