no commit message

This commit is contained in:
annnj-company
2026-04-27 10:10:35 +08:00
parent 68a0b1ab22
commit 6fc3e6b64f
19 changed files with 1058 additions and 64 deletions

View File

@@ -47,6 +47,15 @@ class Property_cert_info extends Base
if ($result['code'] == -1) {
return $this->buildFailed($result['msg']);
}
// 发起查勘成功后,推送查勘跟进中数量更新
error_log("=== reqApplySurvey 推送调试 ===");
error_log("用户ID: " . $this->userInfo['user_id']);
error_log("是否管理员: " . ($this->isAdmin() ? 'true' : 'false'));
$pushResult = fetchAndPushSurveyFollowCount($this->userInfo['user_id'], $this->isAdmin());
error_log("推送结果: " . ($pushResult ? '成功' : '失败'));
return $this->buildSuccess('发起查勘成功');
}