-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Order editing] Non-default currency order edit notice #14345
[Order editing] Non-default currency order edit notice #14345
Conversation
As a workaround, we disable editing orders with a non-default currency. If we allowed this, items on these orders would be shown in the wrong currency. See peaMlT-XF-p2 for context. Multi-currency is not supported in the app at present, but when we add support properly, this workaround should be removed and the edit screen fixed.
Generated by 🚫 Danger |
|
…g-non-default-currency
👋 Sorry I saw the PR late, I will review it within a few hours. |
Version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Works as expected

Note that I also see issues when creating an order – the order creation flow shows my site's default currency (GBP), but the order is then created in USD. I'm not really sure why that is, and it seems more drastic to disable order creation than order editing... so I've treated it as out of scope for this ticket, but will find out why and create another issue if needed.
Is this happening with some multi-currency plugin or setting? I was testing with a typical store with previous orders created with a different currency and I can't reproduce this.
@@ -654,6 +654,10 @@ extension WooAnalyticsEvent { | |||
]) | |||
} | |||
|
|||
static func orderEditButtonTappedWhileDisabledForCurrencyConflict() -> WooAnalyticsEvent { | |||
WooAnalyticsEvent(statName: .orderEditButtonTappedWhileDisabledForCurrencyConflict, properties: [:]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding a Tracks event to see how many merchants are encountering this to have a better idea about the priority 👍
No, it happens because order creation uses the logged in user's default currency as the one for the order when it's not specified in the request. To change that from the site default, you have to go to I'm just checking whether there are implications on that for editing as well; this PR may need to change or be followed up if it does. It's been bumped to 21.2 now anyway so it's fine. |
Oh and thanks for the review @jaclync 😄 |
Actually yes... I doubt the user-level currency setting is available without a plugin. My test site uses the multi-currency features built in to WooPayments. |
…g-non-default-currency
Closes: #14304
Description
This PR disables order editing for orders with a different currency compared to the site's default.
This is a workaround. If we allowed this, items on these orders would be shown in the wrong currency. See peaMlT-XF-p2 for context.
Multi-currency is not supported in the app at present, but when we add support properly, this workaround should be removed and the edit screen fixed.
Steps to reproduce
Repeat for an order in your store's default currency – observe that you can edit it as normal.
Testing information
I added some unit tests for this, but the reliance on whether the order is synced or not was tricky. I effectively exposed that property to be mockable in tests, which is a little strange but it would have made for very brittle tests to actually allow the
syncEverything
function to work via lots of mocking.I tested on an iPhone running iOS 18.1, and an iPad running iOS 17.7
Tracks event registered.
Note that I also see issues when creating an order – the order creation flow shows my site's default currency (GBP), but the order is then created in USD. I'm not really sure why that is, and it seems more drastic to disable order creation than order editing... so I've treated it as out of scope for this ticket, but will find out why and create another issue if needed.
Screenshots
edit-order-notice.mp4
RELEASE-NOTES.txt
if necessary.Reviewer (or Author, in the case of optional code reviews):
Please make sure these conditions are met before approving the PR, or request changes if the PR needs improvement: