浏览代码

20220926 不開放同一議程重複報名(用 company email 判斷, 不用 phone number 判斷)

LuluFJ.Ho 2 年前
父节点
当前提交
7e58b029bb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      app/Http/Services/Api/SeminarSignUpService.php

+ 1
- 1
app/Http/Services/Api/SeminarSignUpService.php 查看文件

@@ -78,7 +78,7 @@ class SeminarSignUpService
78 78
         $cnt = $this->signupDb
79 79
             ->where('trackNo', '=', $trackNo)
80 80
             ->where('companyEmail', '=', $companyEmail)
81
-            ->where('phoneNumber', '=', $phoneNumber)
81
+            // ->where('phoneNumber', '=', $phoneNumber)
82 82
             ->count();
83 83
         
84 84
         \Log::info($cnt);