| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\jobs\pospal;
- use yii\base\BaseObject;
- use yii\queue\JobInterface;
- use app\modules\admin\models\pospal\PospalForm;
- /**
- * 银豹同步商品图片
- */
- class ImportProductImgJob extends BaseObject implements JobInterface
- {
- public $store_id;
- public $in_action;
- public $hostInfo;
- public $pageNo = 0;
- public $okCount = 0;
- public function execute($queue)
- {
- $_GET['md_id'] = 0;
- 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);
- }
- }
|