root 5 年之前
父节点
当前提交
de0f0be04d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      app/Console/Commands/CheckOrder.php

+ 2 - 2
app/Console/Commands/CheckOrder.php

@@ -85,8 +85,8 @@ class CheckOrder extends Command
         switch ($str) {
             case 'month_price': return strtotime('+1 month', $timestamp);
             case 'quarter_price': return  strtotime('+3 month', $timestamp);
-            case 'quarter_price': return  strtotime('+6 month', $timestamp);
-            case 'quarter_price': return  strtotime('+12 month', $timestamp);
+            case 'half_year_price': return  strtotime('+6 month', $timestamp);
+            case 'year_price': return  strtotime('+12 month', $timestamp);
         }
     }
 }