cqpCow 10 달 전
부모
커밋
52a0222f68
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Service/RangeService.php

+ 1 - 1
app/Service/RangeService.php

@@ -522,7 +522,7 @@ class RangeService extends Service
     public function customerBasicTypeSearch($customer_type, $type){
         $result = BasicType::where('del_time',0)
             ->whereIn('type',$type)
-            ->where('title', 'LIKE', '%'.$customer_type.'%')
+            ->where('title', $customer_type)
             ->select('id')->get()->toArray();
         return array_column($result,'id');
     }