shop-php/crmeb/jobs/ProductImportJob.php
2024-01-26 09:39:36 +08:00

28 lines
644 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace crmeb\jobs;
use app\common\repositories\store\product\ProductRepository;
use crmeb\interfaces\JobInterface;
use think\facade\Log;
class ProductImportJob implements JobInterface
{
public function fire($job, $data)
{
try{
$make = app()->make(ProductRepository::class);
$make->create($data['data'],$data['product_type']);
}catch (\Exception $e){
Log::error('商户ID'.$data['mer_id'].' 导入文件 error : ' . $e->getMessage());
}
$job->delete();
}
public function failed($data)
{
// TODO: Implement failed() method.
}
}