We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[HLD] Inconsistent saving of Stock Data
Currently, the product form sends data to the server in two keys:
The best way is to keep the data consistent with Magento WebAPI:
[ ProductInterface::EXTENSION_ATTRIBUTES_KEY => [ 'stock_item' => [ StockItemInterface::QTY => 1000, StockItemInterface::IS_IN_STOCK => true, ... ], ]
You will also need to update:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Full context in documentation
[HLD] Inconsistent saving of Stock Data
Description
Currently, the product form sends data to the server in two keys:
After refactoring, the form should send data in a single field.
The best way is to keep the data consistent with Magento WebAPI:
You will also need to update:
The text was updated successfully, but these errors were encountered: