Workarea 3.1.6
Adds MongoDB Index to Support Order Reminder Emails
Adds a MongoDB index to the Workarea::Order
model. The new index supports the order reminder email.
To benefit from this change, you must create this index in any existing MongoDB instances. Mongoid provides several tasks for managing indexes.
$ bin/rails -T indexes
rails db:mongoid:create_indexes # Create the indexes defined on your mongoid models
rails db:mongoid:remove_indexes # Remove the indexes defined on your mongoid models without questions
rails db:mongoid:remove_undefined_indexes # Remove indexes that exist in the database but aren't specified on the models
Issues
Commits
Fixes Using Canceled Payment Transactions
Excludes canceled transactions from consideration when calculating payment amounts and operations. Canceled transactions were being included in some places due to oversight.
Issues
Pull Requests
Commits
- f5fab8cdc9ce5a187c7996af5fb2790a82baabe0
- d05532aa82a596952e5cb02b19b603c33d43fd50
- eb7eb1d8a7ec3ad806a3f8f23816218a173786c6
Fixes Checkout Autocomplete
Fixes the checkout autocomplete feature, which "fast forwards" a customer to the final step of checkout when checkout information can be autocompleted. A regression has prevented this feature from working properly since Workarea 3.0.
Issues
Pull Requests
Commits
- a527a1ed89963156535db3dea6467a120a3ce268
- 05de84d4c8707ba89f2d3b3291cae1d5d5ce7b3c
- eb7eb1d8a7ec3ad806a3f8f23816218a173786c6
Fixes Admin Insights Charts Not Rendering
Fixes an issue preventing some insights charts from rendering in the Admin.
Issues
Pull Requests
Commits
Fixes Display of Storefront Cart Adjustment Message
Removes brackets from the flash message shown in the Storefront when the cart is adjusted.
Issues
Pull Requests
Commits
- 5a609745b209838721560b07ad96bc7ac8b44d63
- 8a0c4c780345eb770e6806907b823da0eec92fb6
- eb7eb1d8a7ec3ad806a3f8f23816218a173786c6
Standardizes Category Summary Content Block View Model
Updates the Storefront CategorySummaryViewModel
to provide a view_model
local variable to the view. Other content block view models in the Storefront consistently provide this interface.