Browse Source

线上修复售后条件限制bug

longyi 6 months ago
parent
commit
0c28b92db0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/CoreApp/controllers/Returngoods.php

+ 1 - 1
core/CoreApp/controllers/Returngoods.php

@@ -1111,7 +1111,7 @@ class Returngoods extends Start_Controller {
             if(empty($r_info)){
                 return json_encode(['msg'=>'未查询到退货登记单,不允许审核','success'=>false]);
             }
-            if($r_info['stime']*1 >0){
+            if($r_info['stime']*1 <= 0){
                 return json_encode(['msg'=>'退货登记单不是已收到状态,不允许审核','success'=>false]);
             }
         }