Merge branch 'master' into social_login_cart_merging

Merged With Master
This commit is contained in:
Devansh 2020-09-07 11:32:18 +05:30
commit 78805bfcec
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ class OrderRepository extends Repository
$totalQtyInvoiced += $item->qty_invoiced;
if (! $item->isStockable()) {
$totalQtyShipped += $item->qty_ordered;
$totalQtyShipped += $item->qty_invoiced;
} else {
$totalQtyShipped += $item->qty_shipped;
}