order process fix

This commit is contained in:
Tokumeikoi 2020-05-04 17:04:21 +08:00
parent aaad8a7f7e
commit 25d4c5b31d

View File

@ -131,7 +131,7 @@ class OrderService
$totalValue = 0;
$totalMonth = 0;
foreach ($orderModel->get() as $item) {
$surplusMonth = strtotime("+ {$strToMonth[$item->cycle]}month", $item['updated_at']);
$surplusMonth = strtotime("+ {$strToMonth[$item->cycle]}month", $item->updated_at->format('U'));
$surplusMonth = ($surplusMonth - time()) / 2678400;
if ($surplusMonth) {
$totalMonth = $totalMonth + $surplusMonth;