-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Magento 2.4.7 minAllowed missing product order qty #39142
Comments
Hi @Jilco. Thank you for your report.
Join Magento Community Engineering Slack and ask your questions in #github channel. |
@magento give me 2.4-develop instance |
Hi @Jilco. Thank you for your request. I'm working on Magento instance for you. |
Hi @Jilco, here is your Magento Instance: https://d8a96bfd3237dc003ff6dc5d2fd15f3c.instances-prod.magento-community.engineering |
input type="number" | name="qty" |
Hi @engcom-Bravo. Thank you for working on this issue.
|
@magento give me 2.4-develop instance |
Hi @engcom-Bravo. Thank you for your request. I'm working on Magento instance for you. |
Hi @engcom-Bravo, here is your Magento Instance: https://d8a96bfd3237dc003ff6dc5d2fd15f3c.instances-prod.magento-community.engineering |
Hi @Jilco, Thanks for your reporting and collaboration. We have verified the issue in Latest 2.4-develop instance and the issue is reproducible.Kindly refer the screenshots. The min qty is still 0. Hence confirming the issue. Thanks. |
✅ Jira issue https://jira.corp.adobe.com/browse/AC-12909 is successfully created for this GitHub issue. |
✅ Confirmed by @engcom-Bravo. Thank you for verifying the issue. |
@magento give me 2.4-develop instance |
Hi @chrom. Thank you for your request. I'm working on Magento instance for you. |
Hi @chrom, unfortunately there is no ability to deploy Magento instance at the moment. Please try again later. |
Anny updates? |
I discoverd it is in vendor/magento/module-catalog-inventory/Block/Plugin/Productview.php The minsales parameter was missing there, so i added it and problem was solved public function afterGetQuantityValidators(
|
Preconditions and environment
Steps to reproduce
Expected result
input type="number" name="qty" id="qty" maxlength="12" value="0.5" title="Aantal" class="input-text qty" data-validate="{"required-number":true,"validate-item-quantity":{"minAllowed":0.5,"maxAllowed":10000}}" /
Actual result
input type="number" name="qty" id="qty" min="0" value="0.6" title="Aantal" class="input-text qty" data-validate="{"required-number":true,"validate-item-quantity":{"maxAllowed":999}}" /
Additional information
min="0" is present, but not correct (min order qty is 0.6 for this product)
Release note
No response
Triage and priority
The text was updated successfully, but these errors were encountered: