Skip to content

Commit f5bdc45

Browse files
committed
8601: Can bypass Minimum Order Amount Logic
1 parent afafc3c commit f5bdc45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ private function validateMinimumAmountForAddressItems()
10661066

10671067
$baseTotal = 0;
10681068
foreach ($addresses as $address) {
1069-
$taxes = ($taxInclude) ? $address->getBaseTaxAmount() : 0;
1069+
$taxes = $taxInclude ? $address->getBaseTaxAmount() : 0;
10701070
$baseTotal += $address->getBaseSubtotalWithDiscount() + $taxes;
10711071
}
10721072

0 commit comments

Comments
 (0)