|
@@ -19,8 +19,9 @@ class QappUchcReport extends BaseReport
|
|
|
|
|
|
public function getRegisterQueryParams(ReportUserBindRecord $user): array
|
|
|
{
|
|
|
+ $this->report_url = $user->callback;
|
|
|
+
|
|
|
return [
|
|
|
- 'callback' => $user->callback,
|
|
|
'type' => $this->register_event_type,
|
|
|
'event_time' => time() * 100,
|
|
|
'source' => $user->source,
|
|
@@ -30,8 +31,10 @@ class QappUchcReport extends BaseReport
|
|
|
|
|
|
public function getChargeQueryParams(ReportUserBindRecord $user, float $amount): array
|
|
|
{
|
|
|
+ // uc回传用的地址是callback的
|
|
|
+ $this->report_url = $user->callback;
|
|
|
+
|
|
|
return [
|
|
|
- 'callback' => $user->callback,
|
|
|
'type' => $this->charge_event_type,
|
|
|
'event_time' => time() * 100,
|
|
|
'source' => $user->source,
|