Magento 2.3 : How to set qty for multiple sources (Multi source inventory) programmatically
I have a site with 3 inventory sources. I want to add and update product inventory to each source by product sku.
Please help me
product save magento2.3 qty multi-source-inventory
add a comment |
I have a site with 3 inventory sources. I want to add and update product inventory to each source by product sku.
Please help me
product save magento2.3 qty multi-source-inventory
add a comment |
I have a site with 3 inventory sources. I want to add and update product inventory to each source by product sku.
Please help me
product save magento2.3 qty multi-source-inventory
I have a site with 3 inventory sources. I want to add and update product inventory to each source by product sku.
Please help me
product save magento2.3 qty multi-source-inventory
product save magento2.3 qty multi-source-inventory
edited yesterday
Jancy Abraham
asked yesterday
Jancy AbrahamJancy Abraham
1,00911436
1,00911436
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use SourceItemsSaveInterface interface for these purposes: https://github.com/magento-engcom/msi/blob/2.3-develop/app/code/Magento/InventoryApi/Api/SourceItemsSaveInterface.php
interface SourceItemsSaveInterface
{
/**
* Save Multiple Source item data
*
* @param MagentoInventoryApiApiDataSourceItemInterface $sourceItems
* @return void
* @throws MagentoFrameworkExceptionInputException
* @throws MagentoFrameworkValidationValidationException
* @throws MagentoFrameworkExceptionCouldNotSaveException
*/
public function execute(array $sourceItems): void;
}
And pass an array of MagentoInventoryApiApiDataSourceItemInterface as a parameter, each source item represents inventory of specific product on specific source.
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256931%2fmagento-2-3-how-to-set-qty-for-multiple-sources-multi-source-inventory-progr%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use SourceItemsSaveInterface interface for these purposes: https://github.com/magento-engcom/msi/blob/2.3-develop/app/code/Magento/InventoryApi/Api/SourceItemsSaveInterface.php
interface SourceItemsSaveInterface
{
/**
* Save Multiple Source item data
*
* @param MagentoInventoryApiApiDataSourceItemInterface $sourceItems
* @return void
* @throws MagentoFrameworkExceptionInputException
* @throws MagentoFrameworkValidationValidationException
* @throws MagentoFrameworkExceptionCouldNotSaveException
*/
public function execute(array $sourceItems): void;
}
And pass an array of MagentoInventoryApiApiDataSourceItemInterface as a parameter, each source item represents inventory of specific product on specific source.
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
add a comment |
You can use SourceItemsSaveInterface interface for these purposes: https://github.com/magento-engcom/msi/blob/2.3-develop/app/code/Magento/InventoryApi/Api/SourceItemsSaveInterface.php
interface SourceItemsSaveInterface
{
/**
* Save Multiple Source item data
*
* @param MagentoInventoryApiApiDataSourceItemInterface $sourceItems
* @return void
* @throws MagentoFrameworkExceptionInputException
* @throws MagentoFrameworkValidationValidationException
* @throws MagentoFrameworkExceptionCouldNotSaveException
*/
public function execute(array $sourceItems): void;
}
And pass an array of MagentoInventoryApiApiDataSourceItemInterface as a parameter, each source item represents inventory of specific product on specific source.
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
add a comment |
You can use SourceItemsSaveInterface interface for these purposes: https://github.com/magento-engcom/msi/blob/2.3-develop/app/code/Magento/InventoryApi/Api/SourceItemsSaveInterface.php
interface SourceItemsSaveInterface
{
/**
* Save Multiple Source item data
*
* @param MagentoInventoryApiApiDataSourceItemInterface $sourceItems
* @return void
* @throws MagentoFrameworkExceptionInputException
* @throws MagentoFrameworkValidationValidationException
* @throws MagentoFrameworkExceptionCouldNotSaveException
*/
public function execute(array $sourceItems): void;
}
And pass an array of MagentoInventoryApiApiDataSourceItemInterface as a parameter, each source item represents inventory of specific product on specific source.
You can use SourceItemsSaveInterface interface for these purposes: https://github.com/magento-engcom/msi/blob/2.3-develop/app/code/Magento/InventoryApi/Api/SourceItemsSaveInterface.php
interface SourceItemsSaveInterface
{
/**
* Save Multiple Source item data
*
* @param MagentoInventoryApiApiDataSourceItemInterface $sourceItems
* @return void
* @throws MagentoFrameworkExceptionInputException
* @throws MagentoFrameworkValidationValidationException
* @throws MagentoFrameworkExceptionCouldNotSaveException
*/
public function execute(array $sourceItems): void;
}
And pass an array of MagentoInventoryApiApiDataSourceItemInterface as a parameter, each source item represents inventory of specific product on specific source.
answered yesterday
Igor MinyayloIgor Minyaylo
52626
52626
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
add a comment |
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
I have tried the following but it is not working $sourceInterface = $objectManager->get('MagentoInventoryApiApiSourceItemsSaveInterface')->create(); $sourceItems = ['sku'=>'00001','source_code'=>'source1',"quantity"=> 50,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source2',"quantity"=> 40,"status"=> 1]; $sourceItems = ['sku'=>'00001','source_code'=>'source3',"quantity"=> 20,"status"=> 1]; $sourceInterface->execute($sourceItems);
– Jancy Abraham
9 hours ago
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f256931%2fmagento-2-3-how-to-set-qty-for-multiple-sources-multi-source-inventory-progr%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown