mirror of
https://github.com/v2board/v2board.git
synced 2025-02-10 23:49:12 +08:00
fix: order surplus issue
This commit is contained in:
parent
c8f1a23358
commit
644aedb999
@ -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']);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user