We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c6045 commit ae19b0dCopy full SHA for ae19b0d
app/code/Magento/Multishipping/Block/Checkout/Overview.php
@@ -431,8 +431,11 @@ public function getBillingAddressTotals()
431
*/
432
public function renderTotals($totals, $colspan = null)
433
{
434
- //check if the shipment is multi shipment
435
- $totals = $this->sortTotals($this->getMultishippingTotals($totals));
+ // check if the shipment is multi shipment
+ $totals = $this->getMultishippingTotals($totals);
436
+
437
+ // sort totals by configuration settings
438
+ $totals = $this->sortTotals($totals);
439
440
if ($colspan === null) {
441
$colspan = 3;
0 commit comments