From f0322b61a0ffe2929b65a7fd8664a86b3cc31d99 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sun, 21 Jan 2024 19:21:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Auth.php | 1 + app/controller/api/Demo.php | 6 ++++-- crmeb/jobs/ProductCopyJob.php | 36 +++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 crmeb/jobs/ProductCopyJob.php diff --git a/app/controller/api/Auth.php b/app/controller/api/Auth.php index 0048b4e2..dfe0b51e 100644 --- a/app/controller/api/Auth.php +++ b/app/controller/api/Auth.php @@ -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); } diff --git a/app/controller/api/Demo.php b/app/controller/api/Demo.php index d433392d..965bb767 100644 --- a/app/controller/api/Demo.php +++ b/app/controller/api/Demo.php @@ -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'); diff --git a/crmeb/jobs/ProductCopyJob.php b/crmeb/jobs/ProductCopyJob.php new file mode 100644 index 00000000..0c253122 --- /dev/null +++ b/crmeb/jobs/ProductCopyJob.php @@ -0,0 +1,36 @@ + +// +---------------------------------------------------------------------- + + +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. + } +}