Merge pull request #3899 from devansh-webkul/order_state_issue

Number Of Invoiced Added #3895
This commit is contained in:
Jitendra Singh 2020-09-07 10:57:13 +05:30 committed by GitHub
commit f132db5deb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}