Initial commit: queue workspace

Made-with: Cursor
This commit is contained in:
apple
2026-03-21 02:55:24 +08:00
commit 78de918c37
12388 changed files with 1840126 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\jobs\activity\pink;
use app\services\activity\combination\StorePinkServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
/**
* 分页处理拼团
* Class AuthPinkFail
* @package app\jobs\pink
*/
class AuthPinkFail extends BaseJobs
{
use QueueTrait;
/**
* @return string
*/
protected static function queueName()
{
return 'CRMEB_PRO_TASK';
}
/**
* @param $page
* @param $limit
* @return bool
* @throws DataNotFoundException
* @throws ModelNotFoundException
*/
public function doJob($page, $limit)
{
/** @var StorePinkServices $service */
$service = app()->make(StorePinkServices::class);
return $service->statusPink((int)$page, (int)$limit);
}
}

View File

@@ -0,0 +1,81 @@
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\jobs\activity\pink;
use app\services\activity\combination\StorePinkServices;
use app\services\order\StoreOrderRefundServices;
use app\services\order\StoreOrderServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
/**
* 拼团失败
* Class PinkJob
* @package app\jobs
*/
class PinkJob extends BaseJobs
{
use QueueTrait;
public function doJob($pinkId)
{
try {
/** @var StorePinkServices $pinkService */
$pinkService = app()->make(StorePinkServices::class);
$info = $pinkService->get((int)$pinkId);
if (!$info) {
return true;
}
//已经成功 || 失败处理
if (in_array($info['status'], [2, 3])) {
return true;
}
[$pinkAll, $pinkT, $count, $idAll, $uidAll] = $pinkService->getPinkMemberAndPinkK($info);
$pinkService->pinkFail($pinkAll, $pinkT, 0);
} catch (\Throwable $e) {
response_log_write([
'message' => '拼团超时处理失败,原因:' . $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]);
}
return true;
}
/**
* 创建拼团
* @param $orderInfo
* @return bool
*/
public function createPink($orderInfo)
{
if (!$orderInfo) {
return true;
}
try {
/** @var StorePinkServices $pinkServices */
$pinkServices = app()->make(StorePinkServices::class);
/** @var StoreOrderServices $orderServices */
$orderServices = app()->make(StoreOrderServices::class);
$pinkServices->createPink($orderServices->tidyOrder($orderInfo, true));//创建拼团
} catch (\Throwable $e) {
response_log_write([
'message' => '创建拼团失败失败,原因:' . $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]);
}
return true;
}
}