更新
This commit is contained in:
parent
fff61c55ab
commit
f0322b61a0
@ -410,6 +410,7 @@ class Auth extends BaseController
|
||||
}else{
|
||||
$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);
|
||||
}
|
||||
|
||||
|
@ -19,7 +19,8 @@ use think\facade\Db;
|
||||
use crmeb\services\UploadService;
|
||||
use Exception;
|
||||
use ZipArchive;
|
||||
|
||||
use think\facade\Queue;
|
||||
use crmeb\jobs\ProductCopyJob;
|
||||
/**
|
||||
* Class Auth
|
||||
* @package app\controller\api
|
||||
@ -30,7 +31,8 @@ class Demo extends BaseController
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
|
||||
// Queue::push(ProductCopyJob::class, ['product_id' => 0, 'mer_id' =>0]);//短信通知
|
||||
|
||||
halt(1);
|
||||
$mer_id = 104;
|
||||
$file = request()->file('file');
|
||||
|
36
crmeb/jobs/ProductCopyJob.php
Normal file
36
crmeb/jobs/ProductCopyJob.php
Normal 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.
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user