Browse Source

fix: order surplus issue

Tokumeikoi 4 years ago
parent
commit
644aedb999
1 changed files with 1 additions and 4 deletions
  1. 1 4
      app/Services/OrderService.php

+ 1 - 4
app/Services/OrderService.php

@@ -136,10 +136,7 @@ class OrderService
         foreach ($orders as $k => $item) {
             // 兼容历史余留问题
             if ($item->cycle === 'onetime_price') continue;
-            if ($this->orderIsUsed($item)) {
-                unset($orders[$k]);
-                continue;
-            }
+            if ($this->orderIsUsed($item)) continue;
             $orderSurplusMonth = $orderSurplusMonth + self::STRTOTIME[$item->cycle];
             $orderSurplusAmount = $orderSurplusAmount + ($item['total_amount'] + $item['balance_amount']);
         }