new_naweigete/crmeb/app/jobs/TakeOrderJob.php
2025-03-13 09:24:48 +08:00

73 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\jobs;
use app\services\order\StoreOrderServices;
use app\services\order\StoreOrderStatusServices;
use app\services\order\StoreOrderTakeServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
use think\facade\Log;
/**
* 自动收货消息队列
* Class TakeOrderJob
* @package crmeb\jobs
*/
class TakeOrderJob extends BaseJobs
{
use QueueTrait;
/**
* @param $id
* @return bool
*/
public function doJob($id)
{
/** @var StoreOrderTakeServices $services */
$services = app()->make(StoreOrderTakeServices::class);
$orderInfo = $services->get($id);
if (!$orderInfo) {
return true;
}
if (!$orderInfo->paid) {
return true;
}
if ($orderInfo->refund_status == 2) {
return true;
}
/** @var StoreOrderServices $orderServices */
$orderServices = app()->make(StoreOrderServices::class);
$order = $orderServices->tidyOrder($orderInfo);
if ($order['_status']['_type'] != 2) {
return true;
}
$orderInfo->status = 2;
/** @var StoreOrderStatusServices $statusService */
$statusService = app()->make(StoreOrderStatusServices::class);
$res = $orderInfo->save() && $statusService->save([
'oid' => $orderInfo['id'],
'change_type' => 'take_delivery',
'change_message' => '已收货[自动收货]',
'change_time' => time()
]);
try {
$services->storeProductOrderUserTakeDelivery($order);
} catch (\Throwable $e) {
Log::error('自动收货消息队列执行成功,收货后置动作失败,失败原因:' . $e->getMessage());
}
return $res;
}
}