From de0f0be04d205ecc91f7d6aa171aa3c5d7a4b434 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 5 Nov 2019 11:20:52 +0800 Subject: [PATCH] update --- app/Console/Commands/CheckOrder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/CheckOrder.php b/app/Console/Commands/CheckOrder.php index 547ce4e0..5f828bce 100755 --- a/app/Console/Commands/CheckOrder.php +++ b/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); } } }