Browse Source

报价文件下载条件增加

yuanrf 3 days ago
parent
commit
f70a7be342
1 changed files with 2 additions and 2 deletions
  1. 2 2
      OASystem/OASystem.Api/Controllers/GroupsController.cs

+ 2 - 2
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -17979,7 +17979,7 @@ ORDER by  gctggrc.id DESC
             }
 
             var mainPrice = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
-            if (mainPrice == null)
+            if (mainPrice == null || mainPrice.IsShare == 0)
             {
                 return Ok(JsonView(false, "团组成本不存在!"));
             }
@@ -18284,7 +18284,7 @@ AirHotelPrice
             }
 
             var mainPrice = _GroupCostParameterRepository.GetGroupCostParameterMainByDiid(dto.Diid);
-            if (mainPrice == null)
+            if (mainPrice == null || mainPrice.IsShare == 0)
             {
                 return Ok(JsonView(false, "团组成本不存在!"));
             }