12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\jobs\activity;
- use app\services\activity\lottery\LuckLotteryRecordServices;
- use crmeb\basic\BaseJobs;
- use crmeb\traits\QueueTrait;
- use think\facade\Log;
- /**
- * 营销:抽奖活动
- * Class LuckLotteryJob
- * @package app\jobs\activity
- */
- class LuckLotteryJob extends BaseJobs
- {
- use QueueTrait;
- /**
- * @param $oid
- * @param $orderInfo
- * @return bool|void
- */
- public function updateLotteryRecord($oid, $orderInfo)
- {
- if (!$oid) {
- return true;
- }
- try {
- /** @var LuckLotteryRecordServices $lotteryRecordServices */
- $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;
- }
- }
|