songdb 5 년 전
부모
커밋
b087baaf39
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Modules/Trade/Pay/PaySuccessAbstract.php

+ 1 - 1
app/Modules/Trade/Pay/PaySuccessAbstract.php

@@ -72,7 +72,7 @@ abstract class PaySuccessAbstract
    {
       $bid = ReadRecordService::getSimpleFirstReadRecord($this->order->uid);
       $book_id = book_hash_encode($bid);
-      $book = BookConfig::where('bid', $bid)->select('$book_name')->first();
+      $book = BookConfig::where('bid', $bid)->select('book_name')->first();
       $book_name = $book ? $book->book_name : '';
       $job = new QappTikTokUserCharge($this->order->uid, $this->order->price, $this->order->created_at, QappTikTokUserCharge::CURRENT_DAY_REGISTER, $book_id, $book_name);
       dispatch($job->onConnection('rabbitmq')->onQueue('qapp_tiktok_user_charge_queue'));