Skip to content

Commit 5a677a8

Browse files
ENGCOM-5071: Checkout totals order in specific store #22387
- Merge Pull Request #22387 from krnshah/magento2:Checkout-totals-order-in-specific-store-#22380 - Merged commits: 1. d43eeb8
2 parents 6a9860f + d43eeb8 commit 5a677a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct(
4040
*/
4141
public function sortTotals($totals)
4242
{
43-
$configData = $this->scopeConfig->getValue('sales/totals_sort');
43+
$configData = $this->scopeConfig->getValue('sales/totals_sort', \Magento\Store\Model\ScopeInterface::SCOPE_STORES);
4444
foreach ($totals as $code => &$total) {
4545
//convert JS naming style to config naming style
4646
$code = str_replace('-', '_', $code);

0 commit comments

Comments
 (0)