Skip to content

Commit

Permalink
Merge pull request #1005 from mollie/PIPRES-495/multishop-order-state
Browse files Browse the repository at this point in the history
PIPRES-495 fixed multi shop order state
  • Loading branch information
GytisZum authored Dec 10, 2024
2 parents 3a1627c + d59c161 commit c00a2ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Install/OrderStateInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private function updateStateConfiguration(string $key, OrderState $orderState):
{
$shops = \Shop::getShops();
foreach ($shops as $shop) {
$this->configurationAdapter->updateValue($key, (int) $orderState->id, false, null, (int) $shop['id_shop']);
$this->configurationAdapter->updateValue($key, (int) $orderState->id, (int) $shop['id_shop']);
}
}
}

0 comments on commit c00a2ec

Please sign in to comment.