-
Notifications
You must be signed in to change notification settings - Fork 321
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
Add logs when we found isFee
from Avalara response
#1638
Conversation
🦋 Changeset detectedLatest commit: 9b0e801 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
5 Skipped Deployments
|
const hasFee = shippingLine.details?.some((details) => details.isFee); | ||
|
||
if (hasFee) { | ||
logger.warn("Shipping line has a fee. App will report this fee as shipping_tax_rate", { |
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.
why warning?
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.
I'm open to change but we are wrongly reporting rate to Saleor - maybe for Colorado Tax it will be fine (as this is different product - at least if client uses our recommended integration guide) but for other cases we may not be lucky 🤔
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.
If this is wrong, maybe this should be error?
Scope of the PR
Added warning logs when Avalara returns
isFee
in product or shipping line details.Related issues
Checklist