This commit is contained in:
mkm 2024-01-21 19:21:38 +08:00
parent fff61c55ab
commit f0322b61a0
3 changed files with 41 additions and 2 deletions
app/controller/api
crmeb/jobs

@ -410,6 +410,7 @@ class Auth extends BaseController
}else{ }else{
$data['show_controller_applet']=false; $data['show_controller_applet']=false;
} }
$data['red_pack_balance']=Db::name('store_consumption_user')->where('uid',$data['uid'])->where('status',0)->sum('balance');
return app('json')->success($data); return app('json')->success($data);
} }

@ -19,7 +19,8 @@ use think\facade\Db;
use crmeb\services\UploadService; use crmeb\services\UploadService;
use Exception; use Exception;
use ZipArchive; use ZipArchive;
use think\facade\Queue;
use crmeb\jobs\ProductCopyJob;
/** /**
* Class Auth * Class Auth
* @package app\controller\api * @package app\controller\api
@ -30,7 +31,8 @@ class Demo extends BaseController
{ {
public function index() public function index()
{ {
// Queue::push(ProductCopyJob::class, ['product_id' => 0, 'mer_id' =>0]);//短信通知
halt(1); halt(1);
$mer_id = 104; $mer_id = 104;
$file = request()->file('file'); $file = request()->file('file');

@ -0,0 +1,36 @@
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\jobs;
use crmeb\interfaces\JobInterface;
use app\controller\admin\store\StoreProduct;
class ProductCopyJob implements JobInterface
{
public function fire($job, $data)
{
$make = app()->make(StoreProduct::class);
$make->copyProduct($data['id'],$data['copy_id']);
$job->delete();
}
public function failed($data)
{
// TODO: Implement failed() method.
}
}