| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\jobs;
- use yii\base\BaseObject;
- use yii\queue\JobInterface;
- use app\modules\admin\models\pospal\PospalForm;
- /**
- * 银豹同步商品图片
- */
- class PospalJob extends BaseObject implements JobInterface
- {
- public $store_id;
- public $in_action;
- public $hostInfo;
- public $pageNo = 0;
- public $okCount = 0;
- public function execute($queue)
- {
- debug_log(__METHOD__ . '~~~~~~~~已弃用~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
- throw new \Exception(__METHOD__ . '~~~~~~~~已弃用~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
- return;
- $_GET['md_id'] = 0;
- if($this->in_action){
- $action = $this->in_action;
- $this->$action();
- }
- }
- public function executeImportProductImg() {
- echo '----executeImportProductImg----' . $this->store_id;
- $form = new PospalForm(['store_id' => $this->store_id, 'hostInfo' => $this->hostInfo]);
- $res = $form->importProductImg($this->pageNo, $this->okCount);
- echo '----executeImportProductImg--end--' . $this->store_id;
- echo json_encode($res);
- }
- }
|