12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace app\jobs\activity;
- use app\services\activity\lottery\LuckLotteryRecordServices;
- use crmeb\basic\BaseJobs;
- use crmeb\traits\QueueTrait;
- use think\facade\Log;
- class LuckLotteryJob extends BaseJobs
- {
- use QueueTrait;
-
- public function updateLotteryRecord($oid, $orderInfo)
- {
- if (!$oid) {
- return true;
- }
- try {
-
- $lotteryRecordServices = app()->make(LuckLotteryRecordServices::class);
- $data['oid'] = $orderInfo['id'];
- $data['is_receive'] = 1;
- $data['receive_time'] = time();
- $receive_info['name'] = $orderInfo['real_name'];
- $receive_info['phone'] = $orderInfo['user_phone'];
- if ($orderInfo['shipping_type'] == 2) {
- $receive_info['address'] = '';
- } else {
- $receive_info['address'] = $orderInfo['user_address'];
- }
- $data['receive_info'] = $receive_info;
- $lotteryRecordServices->update($orderInfo['activity_id'], $data, 'id');
- } catch (\Throwable $e) {
- Log::error('抽奖订单处理中奖记录失败,失败原因:' . $e->getMessage());
- }
- return true;
- }
- }
|