周总批发商场
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dianshang/crmeb/app/jobs/ProductStockJob.php

56 lines
1.8 KiB

<?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\product\product\OutStoreProductServices;
use crmeb\basic\BaseJobs;
use crmeb\traits\QueueTrait;
use think\facade\Log;
class ProductStockJob extends BaseJobs
{
use QueueTrait;
/**
* 拆分计算
* @param array $data
* @return bool
*/
public function distribute(array $data): bool
{
try {
foreach ($data as $key => $item) {
ProductStockJob::dispatch('calcValueStock', [$key]);
}
} catch (\Exception $e) {
Log::error(['msg' => '拆分计算失败,错误原因:' . $e->getMessage(), 'data' => $data]);
}
return true;
}
/**
* 计算库存
* @param int $id
* @return bool
*/
public function calcValueStock(int $id): bool
{
try {
/** @var OutStoreProductServices $services */
$services = app()->make(OutStoreProductServices::class);
$services->calcStockByAttrValue($id);
} catch (\Exception $e) {
Log::error(['msg' => '计算商品库存失败,错误原因:' . $e->getMessage(), 'data' => $id]);
}
return true;
}
}