Tokumeikoi 4 년 전
부모
커밋
f667f5ee41
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Services/OrderService.php

+ 1 - 1
app/Services/OrderService.php

@@ -127,7 +127,7 @@ class OrderService
             ->where('status', 3);
         $surplusAmount = 0;
         foreach ($orderModel->get() as $item) {
-            $surplusMonth = strtotime("+ {$strToMonth[$item->cycle]}month", $item->updated_at->format('U'));
+            $surplusMonth = strtotime("+ {$strToMonth[$item->cycle]}month", $item->created_at->format('U'));
             if (!$surplusMonth) continue;
             $surplusMonth = ($surplusMonth - time()) / 2678400 / $strToMonth[$item->cycle];
             if ($surplusMonth > 0) {